diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 718da8cbf5e71128a37c45b7890f453312c32197..eb66d5d930d6129112eeee612069f1d8e4e8bdbb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -430,7 +430,7 @@ codec-smoke-test: - if cat smoke_test_output_hrtf.txt | grep -c "failed"; then echo "Smoke test with external hrtf files failed"; ret_val=1; fi - exit $ret_val artifacts: - name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--job-$CI_JOB_NAME--results" + name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--stage-$CI_JOB_STAGE--results" expire_in: 1 week when: always paths: @@ -512,7 +512,7 @@ pytest-compare-20ms-and-5ms-rendering: - if [ $exit_code10 -ne 0 ]; then echo "Non-bitexact cases encountered with 10ms rendering!"; exit_code=1; fi - if [ $exit_code -ne 0 ]; then exit $EXIT_CODE_FAIL; fi artifacts: - name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--job-$CI_JOB_NAME--results" + name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--stage-$CI_JOB_STAGE--results" expire_in: 1 week when: always expose_as: "pytest 5ms and 10ms vs 20ms results" @@ -554,7 +554,7 @@ renderer-smoke-test: - .rules-merge-request-to-main needs: ["build-codec-linux-cmake"] stage: test - timeout: "1 hour" + timeout: "30 minutes" artifacts: name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--job-$CI_JOB_NAME--results" expire_in: 1 week @@ -777,12 +777,6 @@ ivas-pytest-on-merge-request: stage: compare needs: ["build-codec-linux-cmake", "codec-smoke-test"] timeout: "14 minutes" - parallel: - matrix: - # note: keep in sync with list in $TESTS_DIR_CODEC_BE_ON_MR - - PYTEST_SCRIPT: - - test_param_file.py - - test_sba.py script: - bash "${CI_PROJECT_DIR}"/ivas-codec-ci/snippets/print-common-info.sh - commits_behind_count="$(bash "${CI_PROJECT_DIR}"/ivas-codec-ci/snippets/get-commits-behind-count.sh)" @@ -800,7 +794,7 @@ ivas-pytest-on-merge-request: ### prepare pytest # create references - - python3 -m pytest "$TESTS_DIR_CODEC_BE_ON_MR"/"$PYTEST_SCRIPT" -v --update_ref 1 + - python3 -m pytest $TESTS_DIR_CODEC_BE_ON_MR -v --update_ref 1 ### Run test using branch scripts and input - if [ $ref_using_main == 1 ]; then git checkout $source_branch_commit_sha; fi @@ -808,7 +802,7 @@ ivas-pytest-on-merge-request: ### run pytest - exit_code=0 - testcase_timeout=60 - - python3 -m pytest "$TESTS_DIR_CODEC_BE_ON_MR"/"$PYTEST_SCRIPT" -v --html=report.html --self-contained-html --junit-xml=report-junit.xml --testcase_timeout=$testcase_timeout || exit_code=$? + - python3 -m pytest $TESTS_DIR_CODEC_BE_ON_MR -v --html=report.html --self-contained-html --junit-xml=report-junit.xml --testcase_timeout=$testcase_timeout || exit_code=$? - zero_errors=$(cat report-junit.xml | grep -c 'errors="0"') || true - *merge-request-comparison-check @@ -817,7 +811,7 @@ ivas-pytest-on-merge-request: exit_codes: - 123 artifacts: - name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--job-$CI_JOB_NAME--results" + name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--stage-$CI_JOB_STAGE--results" expire_in: 1 week when: always paths: @@ -868,7 +862,7 @@ ivas-interop-on-merge-request: exit_codes: - 123 artifacts: - name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--job-$CI_JOB_NAME--results" + name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--stage-$CI_JOB_STAGE--results" expire_in: 1 week when: always paths: @@ -920,7 +914,7 @@ evs-pytest-on-merge-request: exit_codes: - 123 artifacts: - name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--job-$CI_JOB_NAME--results" + name: "mr-$CI_MERGE_REQUEST_IID--sha-$CI_COMMIT_SHORT_SHA--stage-$CI_JOB_STAGE--results" expire_in: 1 week when: always paths: @@ -1016,7 +1010,7 @@ check-first-frame-is-sid: expose_as: "logs-sidstart" expire_in: "5 days" -lc3plus-ensure-no-code-changes: +.lc3plus-ensure-no-code-changes: extends: - .test-job-linux - .rules-merge-request-to-main @@ -1028,7 +1022,7 @@ lc3plus-ensure-no-code-changes: - ./scripts/lc3plus_lib_setup/get_lc3plus.sh # Ensure git reports no changes - - modified_files=$(git status -su lib_lc3plus) + - modified_files=$(git status -s) - if [[ $modified_files ]]; then printf 'LC3plus codebase was modified!\n\n'"$modified_files"'\n\n'; exit $EXIT_CODE_FAIL; fi check-bitexactness-hrtf-rom-and-file: @@ -1202,7 +1196,7 @@ codec-comparison-on-main-push: exit_codes: - 123 artifacts: - name: "main-push--sha-$CI_COMMIT_SHORT_SHA--job-$CI_JOB_NAME--results" + name: "main-push--sha-$CI_COMMIT_SHORT_SHA--stage-$CI_JOB_STAGE--results" expire_in: 1 week when: always paths: diff --git a/Workspace_msvc/lib_com.vcxproj b/Workspace_msvc/lib_com.vcxproj index c28b36a1454bdb9bd3245a0ce9050d258602a13a..223f837a2e1685afeedb952a5137dab7b902b3a6 100644 --- a/Workspace_msvc/lib_com.vcxproj +++ b/Workspace_msvc/lib_com.vcxproj @@ -223,7 +223,7 @@ - + diff --git a/Workspace_msvc/lib_lc3plus.vcxproj b/Workspace_msvc/lib_lc3plus.vcxproj index 3f1527357ad6c96d8629a85f7ab3937e82fb3bb0..55a291fa9c768769f213dac4423688e2db81f8e3 100644 --- a/Workspace_msvc/lib_lc3plus.vcxproj +++ b/Workspace_msvc/lib_lc3plus.vcxproj @@ -106,6 +106,7 @@ + @@ -115,13 +116,13 @@ - - + + - + @@ -132,36 +133,35 @@ - + + - + - - - - - - + + + + @@ -169,12 +169,14 @@ + - - - - + + + + + diff --git a/Workspace_msvc/lib_rend.vcxproj b/Workspace_msvc/lib_rend.vcxproj index 854c99a979e4ae274d9c002b2ca6686a96e75870..27d4a19a693cf86f60b3ce654912c65b4a7cbaa6 100644 --- a/Workspace_msvc/lib_rend.vcxproj +++ b/Workspace_msvc/lib_rend.vcxproj @@ -175,7 +175,6 @@ - diff --git a/Workspace_msvc/lib_rend.vcxproj.filters b/Workspace_msvc/lib_rend.vcxproj.filters index 2d1d7d46c0b86e517f6f5a9a35d3c5a985a4caac..942c63712f66e57821488868f81981d3042c56b0 100644 --- a/Workspace_msvc/lib_rend.vcxproj.filters +++ b/Workspace_msvc/lib_rend.vcxproj.filters @@ -32,12 +32,30 @@ rend_c + + rend_c + + + rend_c + + + rend_c + + + rend_c + rend_c rend_c + + rend_c + + + rend_c + rend_c @@ -65,6 +83,15 @@ rend_c + + rend_c + + + rend_c + + + rend_c + rend_c @@ -86,6 +113,9 @@ rend_c + + rend_c + rend_c @@ -104,6 +134,24 @@ rend_c + + rend_c + + + rend_c + + + rend_c + + + rend_c + + + rend_c + + + rend_c + rend_c @@ -113,15 +161,30 @@ rend_c - + + rend_c + + + rend_c + + rend_c - + rend_c + + rend_h + + + rend_h + + + rend_h + rend_h @@ -140,6 +203,12 @@ rend_h + + rend_h + + + rend_h + diff --git a/apps/decoder.c b/apps/decoder.c index 4a28b4470b7c26a1673b05209a6c3d834a0882df..71379c6575451f68f2ee8c76a656db9f46fcd232 100644 --- a/apps/decoder.c +++ b/apps/decoder.c @@ -1617,18 +1617,6 @@ static bool parseCmdlIVAS_dec( return false; } -#ifdef SUPPORT_JBM_TRACEFILE - /* Validate options that depend on other options */ - if ( arg->jbmTraceFilename != NULL && arg->delayCompensationEnabled - /* This decMode check should be removed once timestamp sync issues between JBM trace and audio are fixed in EVS */ - && arg->decMode != IVAS_DEC_MODE_EVS ) - { - fprintf( stderr, "Error: Writing to a JBM trace file requires delay compensation to be disabled with -no_delay_cmp\n\n" ); - usage_dec(); - return false; - } -#endif - return true; } @@ -1665,8 +1653,7 @@ static void usage_dec( void ) fprintf( stdout, " EVS RTP Payload Format. The SDP parameter hf_only is required.\n" ); fprintf( stdout, " Reading RFC4867 AMR/AMR-WB RTP payload format is not supported.\n" ); #ifdef SUPPORT_JBM_TRACEFILE - fprintf( stdout, "-Tracefile TF : VoIP mode: Generate trace file named TF. Requires -no_delay_cmp to\n" ); - fprintf( stdout, " be enabled so that trace contents remain in sync with audio output.\n" ); + fprintf( stdout, "-Tracefile TF : VoIP mode: Generate trace file named TF\n" ); #endif #ifdef DEBUGGING #ifdef VARIABLE_SPEED_DECODING diff --git a/apps/renderer.c b/apps/renderer.c index 8ef8a988bddb356d6d3e31ce4c83210a13bf2e26..8e44fd6cc19cf316afea7a5563e67c357acdf3d6 100644 --- a/apps/renderer.c +++ b/apps/renderer.c @@ -68,8 +68,6 @@ #define IVAS_MAX16B_FLT 32767.0f #define IVAS_MIN16B_FLT ( -32768.0f ) -#define OMASA_TDREND_MATCHING_GAIN_DB ( -2.0f ) - #if !defined( DEBUGGING ) && !defined( WMOPS ) static #endif @@ -700,7 +698,6 @@ int main( SplitFileReadWrite *hSplitRendFileReadWrite; int16_t delayNumSamples_temp; int32_t delayTimeScale_temp; - bool flushRendererLastFrame = false; int16_t numSamplesRead; int16_t delayNumSamples = -1; int16_t delayNumSamples_orig = 0; @@ -745,11 +742,8 @@ int main( CmdlnArgs args = parseCmdlnArgs( argc, argv ); - if ( args.nonDiegeticPan && - !( ( args.inConfig.numAudioObjects == 0 && - args.inConfig.multiChannelBuses[0].audioConfig == IVAS_AUDIO_CONFIG_MONO ) || - ( args.inConfig.numAudioObjects > 0 && - args.inConfig.audioObjects[0].audioConfig == IVAS_AUDIO_CONFIG_OBA && args.inConfig.numAudioObjects == 1 ) ) ) + if ( args.nonDiegeticPan && !( ( args.inConfig.numAudioObjects == 0 && args.inConfig.multiChannelBuses[0].audioConfig == IVAS_AUDIO_CONFIG_MONO ) || + ( args.inConfig.numAudioObjects > 0 && args.inConfig.audioObjects[0].audioConfig == IVAS_AUDIO_CONFIG_OBA && args.inConfig.numAudioObjects == 1 ) ) ) { fprintf( stderr, "\ninvalid configuration - non-diegetic panning requires mono or ISM1 input\n" ); goto cleanup; @@ -1070,10 +1064,7 @@ int main( { /* sanity check */ - if ( ( args.outConfig.audioConfig != IVAS_AUDIO_CONFIG_BINAURAL ) && - ( args.outConfig.audioConfig != IVAS_AUDIO_CONFIG_BINAURAL_ROOM_IR ) && - ( args.outConfig.audioConfig != IVAS_AUDIO_CONFIG_BINAURAL_ROOM_REVERB ) && - !is_split_pre_rend_mode( &args ) ) + if ( ( args.outConfig.audioConfig != IVAS_AUDIO_CONFIG_BINAURAL ) && ( args.outConfig.audioConfig != IVAS_AUDIO_CONFIG_BINAURAL_ROOM_IR ) && ( args.outConfig.audioConfig != IVAS_AUDIO_CONFIG_BINAURAL_ROOM_REVERB ) && !is_split_pre_rend_mode( &args ) ) { fprintf( stderr, "\nExternal Renderer Config is supported only when binaural output configurations is used as output OR when Split pre-rendering mode is enabled. Exiting. \n" ); goto cleanup; @@ -1162,30 +1153,20 @@ int main( } } + /* Set the total number of objects */ if ( args.inConfig.numAudioObjects > 0 ) { - /* Set the total number of objects */ if ( ( error = IVAS_REND_SetTotalNumberOfObjects( hIvasRend, args.inConfig.numAudioObjects ) ) != IVAS_ERR_OK ) { fprintf( stderr, "\nError in IVAS_REND_SetTotalNumberOfObjects(): %s\n", ivas_error_to_string( error ) ); goto cleanup; } - /* Set the metadata delay for objects */ if ( ( error = IVAS_REND_SetIsmMetadataDelay( hIvasRend, args.syncMdDelay ) ) != IVAS_ERR_OK ) { fprintf( stderr, "\nError in IVAS_REND_SetIsmMetadataDelay(): %s\n", ivas_error_to_string( error ) ); goto cleanup; } - - /* For OMASA input and BINAURAL output, apply a gain to objects to match the loudness with MASA part */ - if ( args.inConfig.numMasaBuses > 0 && args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_BINAURAL ) - { - for ( i = 0; i < args.inConfig.numAudioObjects; ++i ) - { - args.inConfig.audioObjects[i].gain_dB += OMASA_TDREND_MATCHING_GAIN_DB; - } - } } IVAS_REND_LfePanMtx lfePanMatrix; @@ -1370,7 +1351,7 @@ int main( } int16_t numOutChannels; - if ( ( error = IVAS_REND_GetNumOutChannels( hIvasRend, &numOutChannels ) ) != IVAS_ERR_OK ) + if ( ( error = IVAS_REND_NumOutChannels( hIvasRend, &numOutChannels ) ) != IVAS_ERR_OK ) { fprintf( stderr, "\nError in IVAS_REND_NumOutChannels(): %s\n", ivas_error_to_string( error ) ); goto cleanup; @@ -1385,16 +1366,8 @@ int main( } } - if ( args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED || args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM ) + if ( args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED ) { - char *outFile = args.outMetadataFilePath; - - if ( args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED ) - { - outFile = args.outputFilePath; - audioWriter = NULL; - } - if ( ( error = IVAS_REND_GetSplitRendBitstreamHeader( hIvasRend, &bitsBuffer.config.codec, &bitsBuffer.config.poseCorrection, &bitsBuffer.config.codec_frame_size_ms, &bitsBuffer.config.isar_frame_size_ms ) ) != IVAS_ERR_OK ) { fprintf( stderr, "\nError in IVAS_REND_GetSplitRendBitstreamHeader()!\n" ); @@ -1407,15 +1380,36 @@ int main( goto cleanup; } - if ( ( error = split_rend_writer_open( &hSplitRendFileReadWrite, outFile, delayNumSamples_temp, delayTimeScale_temp, bitsBuffer.config.codec, bitsBuffer.config.poseCorrection, bitsBuffer.config.codec_frame_size_ms, bitsBuffer.config.isar_frame_size_ms, args.sampleRate, bitsBuffer.config.lc3plus_highres ) ) != IVAS_ERR_OK ) + if ( ( error = split_rend_writer_open( &hSplitRendFileReadWrite, args.outputFilePath, delayNumSamples_temp, delayTimeScale_temp, bitsBuffer.config.codec, bitsBuffer.config.poseCorrection, bitsBuffer.config.codec_frame_size_ms, bitsBuffer.config.isar_frame_size_ms, args.sampleRate, bitsBuffer.config.lc3plus_highres ) ) != IVAS_ERR_OK ) { - fprintf( stderr, "\nCould not open split rend metadata file %s\n", outFile ); + fprintf( stderr, "\nCould not open split rend metadata file %s\n", args.outputFilePath ); goto cleanup; } + audioWriter = NULL; } - - if ( args.outConfig.audioConfig != IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED ) + else { + if ( args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM ) + { + if ( ( error = IVAS_REND_GetSplitRendBitstreamHeader( hIvasRend, &bitsBuffer.config.codec, &bitsBuffer.config.poseCorrection, &bitsBuffer.config.codec_frame_size_ms, &bitsBuffer.config.isar_frame_size_ms ) ) != IVAS_ERR_OK ) + { + fprintf( stderr, "\nError in IVAS_REND_GetSplitRendBitstreamHeader()!\n" ); + goto cleanup; + } + + if ( IVAS_REND_GetDelay( hIvasRend, &delayNumSamples_temp, &delayTimeScale_temp ) != IVAS_ERR_OK ) + { + fprintf( stderr, "\nUnable to get delay of renderer!\n" ); + goto cleanup; + } + + if ( ( error = split_rend_writer_open( &hSplitRendFileReadWrite, args.outMetadataFilePath, delayNumSamples_temp, delayTimeScale_temp, bitsBuffer.config.codec, bitsBuffer.config.poseCorrection, bitsBuffer.config.codec_frame_size_ms, bitsBuffer.config.isar_frame_size_ms, args.sampleRate, bitsBuffer.config.lc3plus_highres ) ) != IVAS_ERR_OK ) + { + fprintf( stderr, "\nCould not open split rend metadata file %s\n", args.outMetadataFilePath ); + goto cleanup; + } + } + if ( AudioFileWriter_open( &audioWriter, args.outputFilePath, args.sampleRate, numOutChannels ) != IVAS_ERR_OK ) { fprintf( stderr, "\nFailed to open file: %s\n", args.outputFilePath ); @@ -1541,23 +1535,16 @@ int main( if ( numSamplesRead == 0 ) { /* end of input data */ - flushRendererLastFrame = true; + break; } /* Convert from int to float and from interleaved to packed */ - if ( !flushRendererLastFrame ) - { - convertInputBuffer( inpInt16Buffer, numSamplesRead, inBuffer.config.numSamplesPerChannel, num_in_channels, inFloatBuffer, inBuffer.config.is_cldfb, cldfbAna ); - } - else - { - memset( inBuffer.data, 0, inBuffer.config.numChannels * inBuffer.config.numSamplesPerChannel * sizeof( float ) ); - } + convertInputBuffer( inpInt16Buffer, numSamplesRead, inBuffer.config.numSamplesPerChannel, num_in_channels, inFloatBuffer, inBuffer.config.is_cldfb, cldfbAna ); int16_t num_subframes, sf_idx; num_subframes = (int16_t) args.render_framesize; - if ( isCurrentFrameMultipleOf20ms && !flushRendererLastFrame ) + if ( isCurrentFrameMultipleOf20ms ) { IsmPositionProvider_getNextFrame( positionProvider, &mtdBuffer ); @@ -1669,7 +1656,7 @@ int main( } IVAS_REND_ReadOnlyAudioBuffer tmpBuffer = getReadOnlySubBuffer( inBuffer, (int16_t) args.inConfig.multiChannelBuses[i].inputChannelIndex, numChannels ); - if ( ( error = IVAS_REND_FeedInputAudio( hIvasRend, mcIds[i], tmpBuffer, flushRendererLastFrame ) ) != IVAS_ERR_OK ) + if ( ( error = IVAS_REND_FeedInputAudio( hIvasRend, mcIds[i], tmpBuffer ) ) != IVAS_ERR_OK ) { fprintf( stderr, "\nIVAS_REND_FeedInputAudio failed: %s\n", ivas_error_to_string( error ) ); goto cleanup; @@ -1684,7 +1671,7 @@ int main( { IVAS_REND_ReadOnlyAudioBuffer tmpBuffer = getReadOnlySubBuffer( inBuffer, (int16_t) args.inConfig.audioObjects[i].inputChannelIndex, args.inConfig.numAudioObjects ); - if ( ( error = IVAS_REND_FeedInputAudio( hIvasRend, ismIds[i], tmpBuffer, flushRendererLastFrame ) ) != IVAS_ERR_OK ) + if ( ( error = IVAS_REND_FeedInputAudio( hIvasRend, ismIds[i], tmpBuffer ) ) != IVAS_ERR_OK ) { fprintf( stderr, "\nIVAS_REND_FeedInputAudio failed: %s\n", ivas_error_to_string( error ) ); goto cleanup; @@ -1701,7 +1688,7 @@ int main( { IVAS_REND_ReadOnlyAudioBuffer tmpBuffer = getReadOnlySubBuffer( inBuffer, (int16_t) args.inConfig.audioObjects[i].inputChannelIndex, 1 ); - if ( ( error = IVAS_REND_FeedInputAudio( hIvasRend, ismIds[i], tmpBuffer, flushRendererLastFrame ) ) != IVAS_ERR_OK ) + if ( ( error = IVAS_REND_FeedInputAudio( hIvasRend, ismIds[i], tmpBuffer ) ) != IVAS_ERR_OK ) { fprintf( stderr, "\nIVAS_REND_FeedInputAudio failed: %s\n", ivas_error_to_string( error ) ); goto cleanup; @@ -1724,7 +1711,7 @@ int main( } IVAS_REND_ReadOnlyAudioBuffer tmpBuffer = getReadOnlySubBuffer( inBuffer, (int16_t) args.inConfig.ambisonicsBuses[i].inputChannelIndex, numChannels ); - if ( ( error = IVAS_REND_FeedInputAudio( hIvasRend, sbaIds[i], tmpBuffer, flushRendererLastFrame ) ) != IVAS_ERR_OK ) + if ( ( error = IVAS_REND_FeedInputAudio( hIvasRend, sbaIds[i], tmpBuffer ) ) != IVAS_ERR_OK ) { fprintf( stderr, "\nIVAS_REND_FeedInputAudio failed: %s\n", ivas_error_to_string( error ) ); goto cleanup; @@ -1740,13 +1727,13 @@ int main( } IVAS_REND_ReadOnlyAudioBuffer tmpBuffer = getReadOnlySubBuffer( inBuffer, (int16_t) args.inConfig.masaBuses[i].inputChannelIndex, numChannels ); - if ( ( error = IVAS_REND_FeedInputAudio( hIvasRend, masaIds[i], tmpBuffer, flushRendererLastFrame ) ) != IVAS_ERR_OK ) + if ( ( error = IVAS_REND_FeedInputAudio( hIvasRend, masaIds[i], tmpBuffer ) ) != IVAS_ERR_OK ) { fprintf( stderr, "IVAS_REND_FeedInputAudio failed: %s\n", ivas_error_to_string( error ) ); goto cleanup; } - if ( isCurrentFrameMultipleOf20ms && !flushRendererLastFrame ) + if ( isCurrentFrameMultipleOf20ms ) { if ( masaReaders[i] != NULL ) { @@ -1809,7 +1796,7 @@ int main( zeroPad = delayNumSamples; } - if ( is_split_pre_rend_mode( &args ) && !flushRendererLastFrame ) + if ( is_split_pre_rend_mode( &args ) ) { if ( split_rend_write_bitstream_to_file( hSplitRendFileReadWrite, bitsBuffer.bits, &bitsBuffer.config.bitsRead, &bitsBuffer.config.bitsWritten ) != IVAS_ERR_OK ) @@ -1819,7 +1806,7 @@ int main( } } - if ( audioWriter != NULL && !flushRendererLastFrame ) + if ( audioWriter != NULL ) { if ( delayNumSamples * num_out_channels < outBufferSize ) { @@ -1840,7 +1827,7 @@ int main( bitsBuffer.config.bitsWritten = 0; /* Write MASA metadata for MASA outputs */ - if ( !flushRendererLastFrame && ( args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_MASA1 || args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_MASA2 ) ) + if ( args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_MASA1 || args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_MASA2 ) { IVAS_REND_AudioConfigType inputType1; IVAS_REND_AudioConfigType inputType2; @@ -1912,8 +1899,7 @@ int main( } } - if ( ( args.inConfig.numAmbisonicsBuses > 0 || args.inConfig.numMultiChannelBuses > 0 || args.inConfig.numMasaBuses > 0 ) && - args.inConfig.numAudioObjects > 0 ) + if ( ( args.inConfig.numAmbisonicsBuses > 0 || args.inConfig.numMultiChannelBuses > 0 || args.inConfig.numMasaBuses > 0 ) && args.inConfig.numAudioObjects > 0 ) { inputType2 = IVAS_REND_AUDIO_CONFIG_TYPE_OBJECT_BASED; if ( ( error = IVAS_REND_MergeMasaMetadata( hIvasRend, &hMetaOutput, inputType1, inputType2 ) ) != IVAS_ERR_OK ) @@ -1930,13 +1916,6 @@ int main( } } - /* no new input was actually read, only delay buffers were flushed - * therefore this is not a real frame */ - if ( flushRendererLastFrame ) - { - break; - } - frame++; if ( !args.quietModeEnabled ) { @@ -1949,13 +1928,12 @@ int main( #endif } - /* add zeros at the end to have equal length of synthesized signals - * the output buffer will contain either leftover input samples from delay aligned inputs - * or zeros for padding */ + /* add zeros at the end to have equal length of synthesized signals */ if ( audioWriter != NULL ) { for ( zeroPadToWrite = zeroPad; zeroPadToWrite > frameSize_smpls; zeroPadToWrite -= frameSize_smpls ) { + memset( outInt16Buffer, 0, outBufferSize * sizeof( int16_t ) ); if ( ( error = AudioFileWriter_write( audioWriter, outInt16Buffer, outBufferSize ) ) != IVAS_ERR_OK ) { fprintf( stderr, "\nOutput audio file writer error\n" ); @@ -1963,6 +1941,7 @@ int main( } } + memset( outInt16Buffer, 0, zeroPadToWrite * outBuffer.config.numChannels * sizeof( int16_t ) ); if ( ( error = AudioFileWriter_write( audioWriter, outInt16Buffer, zeroPadToWrite * outBuffer.config.numChannels ) ) != IVAS_ERR_OK ) { fprintf( stderr, "\nOutput audio file writer error\n" ); @@ -1971,10 +1950,9 @@ int main( zeroPadToWrite = 0; } - if ( args.inConfig.numAudioObjects != 0 && - ( args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_BINAURAL || args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_BINAURAL_ROOM_REVERB ) ) + if ( args.inConfig.numAudioObjects != 0 && ( args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_BINAURAL || args.outConfig.audioConfig == IVAS_AUDIO_CONFIG_BINAURAL_ROOM_REVERB ) ) { - fprintf( stdout, "\n\nMetadata delayed %d subframes\n\n", (int16_t) round( args.syncMdDelay / ( 1000.f / IVAS_NUM_FRAMES_PER_SEC / IVAS_MAX_PARAM_SPATIAL_SUBFRAMES ) ) ); + fprintf( stdout, "\n\nMetadata delayed %d subframes\n\n", (int16_t) round( args.syncMdDelay / ( 1000 / IVAS_NUM_FRAMES_PER_SEC / IVAS_MAX_PARAM_SPATIAL_SUBFRAMES ) ) ); } if ( !args.quietModeEnabled && args.delayCompensationEnabled ) @@ -3304,8 +3282,7 @@ static void parseObjectPosition( *positionDuration = (uint16_t) strtol( line, &endptr, 10 ); readNextMetadataChunk( line, "\n" ); - read_values = (int16_t) sscanf( line, "%f,%f,%f,%f,%f,%f,%f,%f", - &meta_prm[0], &meta_prm[1], &meta_prm[2], &meta_prm[3], &meta_prm[4], &meta_prm[5], &meta_prm[6], &meta_prm[7] ); + read_values = (int16_t) sscanf( line, "%f,%f,%f,%f,%f,%f,%f,%f", &meta_prm[0], &meta_prm[1], &meta_prm[2], &meta_prm[3], &meta_prm[4], &meta_prm[5], &meta_prm[6], &meta_prm[7] ); if ( read_values < 2 ) { @@ -3514,8 +3491,20 @@ static void parseCombinedFormatInput( inConfig->numAmbisonicsBuses = 1; inConfig->ambisonicsBuses[0].audioConfig = audioConfig; inConfig->ambisonicsBuses[0].inputChannelIndex = inConfig->numAudioObjects; +#ifdef NONBE_1352_HARMONIZE_OSBA_LOUDNESS inConfig->ambisonicsBuses[0].gain_dB = 0.f; +#else + inConfig->ambisonicsBuses[0].gain_dB = -6.f; +#endif *configString += 4; + +#ifndef NONBE_1352_HARMONIZE_OSBA_LOUDNESS + /* Modify input gain for objects too */ + for ( int16_t i = 0; i < inConfig->numAudioObjects; ++i ) + { + inConfig->audioObjects[i].gain_dB = -6.f; + } +#endif } else if ( audioConfig == IVAS_AUDIO_CONFIG_MASA1 || audioConfig == IVAS_AUDIO_CONFIG_MASA2 ) { diff --git a/ci/basop-pages/basop_index.html b/ci/basop-pages/basop_index.html index c7203a9259ca65e7b0079ad8a2a0bbda99684107..a31f3673a531c53d97092d177d00d24c0ebdf922 100644 --- a/ci/basop-pages/basop_index.html +++ b/ci/basop-pages/basop_index.html @@ -5,10 +5,6 @@

Ivas BASOP code Development

-

Regression tracking

- -
  • Long term regression
  • -

    Daily long testvector tests

      diff --git a/ci/remove_unsupported_testcases.py b/ci/remove_unsupported_testcases.py index 42cee597c7d96ae9efaab313592dae9dc283e323..66b62b04ef34c216f1ef84c269450af79c39b83d 100644 --- a/ci/remove_unsupported_testcases.py +++ b/ci/remove_unsupported_testcases.py @@ -63,8 +63,6 @@ TESTCASES = [ "OMASA 2TC 2ISM br sw techs 13.2 to 512 kbps start 48 kbps, 48kHz in, 48kHz out, BINAURAL out, object editing", ] -RENDERER_PYTEST_FILE = "tests/renderer/test_renderer.py" - def remove_testcases(cfg: Path, testcases: list): """ @@ -88,56 +86,6 @@ def remove_testcases(cfg: Path, testcases: list): f.write("".join(content_out)) -def skip_testcase( - lines: list[str], function_name: str, condition: str, reason: str -) -> int: - i = find_function(lines, function_name) - skip_lines = [ - f" if {condition}:\n", - f' pytest.skip("{reason}")\n', - ] - lines[i:i] = skip_lines - return lines - - -def find_function(lines: list[str], function_name: str) -> int: - found_function = False - for i, line in enumerate(lines): - if f"def {function_name}" in line: - found_function = True - continue - - if found_function and "run_renderer(" in line: - return i - - -def remove_testcases_renderer(): - with open(RENDERER_PYTEST_FILE) as f: - lines = f.readlines() - - lines = skip_testcase( - lines, - function_name="test_osba_binaural_static", - condition="out_fmt == 'BINAURAL_ROOM_IR' and fs == '32kHz'", - reason="Unsupported for BASOP", - ) - lines = skip_testcase( - lines, - function_name="test_osba_binaural_headrotation", - condition="out_fmt == 'BINAURAL_ROOM_IR' and fs == '32kHz'", - reason="Unsupported for BASOP", - ) - lines = skip_testcase( - lines, - function_name="test_multichannel_binaural_headrotation", - condition="out_fmt == 'BINAURAL_ROOM_IR' and fs == '32kHz' and in_fmt in ['5_1', '7_1'] and frame_size == '20ms'", - reason="Unsupported for BASOP", - ) - - with open(RENDERER_PYTEST_FILE, "w") as f: - f.writelines(lines) - - if __name__ == "__main__": parser = argparse.ArgumentParser() parser.add_argument("cfg_files", nargs="+", type=Path) @@ -147,5 +95,3 @@ if __name__ == "__main__": for f in args.cfg_files: remove_testcases(f, testcases) - - remove_testcases_renderer() diff --git a/ci/setup_pages.py b/ci/setup_pages.py index df350d856890d0a1e0b2f4ff69f676e2b7bea442..b9d0b8da8871c2065cb45655ce65244c8bbe7f6a 100755 --- a/ci/setup_pages.py +++ b/ci/setup_pages.py @@ -69,7 +69,6 @@ JOBS_BASOP_REPO = { "complexity-stereo-in-stereo-out": "Stereo in, Stereo out", # "timeless" jobs (not complexity) "coverage-test-on-main-scheduled": "Coverage", - "ivas-long-term-job-logs-overview": "Long term logs", } JOBS_FOR_PROJECT_ID = { diff --git a/lib_com/options.h b/lib_com/options.h index 0000a66f49268907a8e5fdba56873a3e85642984..edd60e4680f719806fef9ec40b0e5f974fa712d7 100644 --- a/lib_com/options.h +++ b/lib_com/options.h @@ -136,7 +136,6 @@ /*#define DEBUG_JBM_CMD_OPTION*/ /* ability for telling the decoder the frontend fetch size and to not delay compensate for bad frames at the beginning */ /*#define VARIABLE_SPEED_DECODING*/ /* variable speed decoding employing the JBM functioniality; move to DEBUGGING after build for disabled is fixed */ /*#define DISABLE_LIMITER*/ /* disable the limiter */ -/*#define DEBUG_APA_SILENCE_NON_SCALED*/ /* Switch APA into mode that replaces contents of non-scaled frames with silence. Useful for identifying scaled regions in the audio output of the decoder */ /*Split Rendering Debug switches*/ /*#define DBG_WAV_WRITER*/ /* add debugging function dbgwrite_wav() */ @@ -163,7 +162,7 @@ /*#define FIX_I4_OL_PITCH*/ /* fix open-loop pitch used for EVS core switching */ #define TMP_FIX_1119_SPLIT_RENDERING_VOIP /* FhG: Add error check for unsupported config: split rendering with VoIP mode */ -#define FIX_1348_OVERFLOW /* FhG: fix BASOP overflow in hq_lr_dec(), brings floating-point code inline with FX */ +/*#define CODE_IMPROVEMENTS*/ /* FhG: Small code improvements that do not change the functionality */ /* #################### End BE switches ################################## */ @@ -174,7 +173,9 @@ #define NONBE_1244_FIX_SWB_BWE_MEMORY /* VA: issue 1244: fix to SWB BWE memory in case of switching from FB coding - pending a review by Huawei */ #define NONBE_1122_KEEP_EVS_MODE_UNCHANGED /* FhG: Disables fix for issue 1122 in EVS mode to keep BE tests green. This switch should be removed once the 1122 fix is added to EVS via a CR. */ -#define NONBE_SVD_OPTIMIZATION +#define NONBE_FIX_TCX5_INTERLEAVING_FOR_FS_IN_UNEQUAL_FS_OUT /* FhG: apply correct TCX5 grouping/interleaving when input_fs != output_fs */ +#define NONBE_1339_FIXOSBA_EXT_LOUDNESS /* FhG: issue 1339: apply scaling with EXT output in OSBA high-BR mode */ +#define NONBE_1352_HARMONIZE_OSBA_LOUDNESS /* FhG: do not scale OSBA inputs by 0.5 any more */ /* ##################### End NON-BE switches ########################### */ diff --git a/lib_com/tools.c b/lib_com/tools.c index 6dca2331ff73320a615f120e5a1cea687704ab9f..cb1d1216294bbc815b258866a51a99d99d822298 100644 --- a/lib_com/tools.c +++ b/lib_com/tools.c @@ -1742,11 +1742,25 @@ double anint( int16_t is_numeric_float( float x ) { - int16_t retval; +#ifdef CODE_IMPROVEMENTS #define WMC_TOOL_SKIP - retval = (int16_t) ( !isnan( x ) && !isinf( x ) ); + return (int16_t) ( !isnan( x ) && !isinf( x ) ); #undef WMC_TOOL_SKIP - return retval; +#else +#ifndef BASOP_NOGLOB + union float_int +#else /* BASOP_NOGLOB */ + union float_int +#endif /* BASOP_NOGLOB */ + { + float float_val; + int32_t int_val; + } float_int; + + float_int.float_val = x; + + return ( ( float_int.int_val & 0x7f800000 ) != 0x7f800000 ); +#endif } /*-------------------------------------------------------------------* diff --git a/lib_dec/dec_tcx.c b/lib_dec/dec_tcx.c index 23dd28556d66ffad608b8405ffabbd27ca3d4bb3..0fb28ddb2d27b73558c6944576de9c1cf9112bee 100644 --- a/lib_dec/dec_tcx.c +++ b/lib_dec/dec_tcx.c @@ -1506,7 +1506,11 @@ void decoder_tcx_tns( hTcxCfg->tcx_last_overlap_mode = hTcxCfg->tcx_curr_overlap_mode; } +#ifdef NONBE_FIX_TCX5_INTERLEAVING_FOR_FS_IN_UNEQUAL_FS_OUT if ( ( hTcxCfg->fIsTNSAllowed && fUseTns != 0 && bfi != 1 && whitenedDomain ) || ( L_spec > L_frameTCX ) ) +#else + if ( ( hTcxCfg->fIsTNSAllowed && fUseTns != 0 && bfi != 1 ) || ( L_spec > L_frameTCX ) ) +#endif { L = L_spec; } @@ -1548,7 +1552,11 @@ void decoder_tcx_tns( if ( ( L_frame == st->L_frame >> 1 ) && st->tcxonly && isTCX5 ) { +#ifdef NONBE_FIX_TCX5_INTERLEAVING_FOR_FS_IN_UNEQUAL_FS_OUT if ( st->element_mode == EVS_MONO || ( L_spec < L_frameTCX && !whitenedDomain ) ) /* todo: this is temporary to maintain EVS BE, this is a bug and should be fixed also for EVS (see issue 13) */ +#else + if ( st->element_mode == EVS_MONO || L_spec < L_frameTCX ) /* todo: this is temporary to maintain EVS BE, this is a bug and should be fixed also for EVS (see issue 13) */ +#endif { tcx5TnsUngrouping( L_frameTCX >> 1, hTcxCfg->tnsConfig[0][0].iFilterBorders[0] >> 1, x, DEC ); } diff --git a/lib_dec/hq_lr_dec.c b/lib_dec/hq_lr_dec.c index b2febc4956579c776195f9119a10a0bc38ef0164..f9ab923be7a3d6631b70d0af15e719b3bd3e9d5f 100644 --- a/lib_dec/hq_lr_dec.c +++ b/lib_dec/hq_lr_dec.c @@ -262,15 +262,7 @@ void hq_lr_dec( frac1 = L_Extract_lc( L_tmp, &exp ); /* Extract exponent of L_tmp */ L_tmp = Pow2( 30, frac1 ); exp = sub( exp, 30 ); -#ifdef FIX_1348_OVERFLOW -#ifdef BASOP_NOGLOB - Ep_fx[i] = L_shl_o( L_tmp, s_max( sub( exp, 6 ), -31 ), &Overflow ); /* Q -6 */ -#else - Ep_fx[i] = L_shl( L_tmp, s_max( sub( exp, 6 ), -31 ) ); /* Q -6 */ -#endif -#else - Ep_fx[i] = L_shl( L_tmp, sub( exp, 6 ) ); /* Q -6 */ -#endif + Ep_fx[i] = L_shl( L_tmp, sub( exp, 6 ) ); /* Q -6 */ Ep[i] = (float) ( Ep_fx[i] / pow( 2.0, -6 ) ); } diff --git a/lib_dec/ivas_init_dec.c b/lib_dec/ivas_init_dec.c index 6a066e954be9eff4664560156a7257580d02dba2..a303c6d65b0f55de9ebaeb761d3b060081f6b8c0 100644 --- a/lib_dec/ivas_init_dec.c +++ b/lib_dec/ivas_init_dec.c @@ -2305,15 +2305,7 @@ ivas_error ivas_init_decoder( if ( st_ivas->mc_mode == MC_MODE_MCT || st_ivas->mc_mode == MC_MODE_PARAMUPMIX ) { - if ( st_ivas->hIntSetup.index_lfe[0] != -1 ) - { - delay_ns = st_ivas->binaural_latency_ns; - } - else - { - delay_ns = 0; - } - + delay_ns = st_ivas->binaural_latency_ns; if ( st_ivas->hBinRenderer != NULL ) { if ( st_ivas->hBinRenderer->render_lfe ) diff --git a/lib_dec/ivas_jbm_dec.c b/lib_dec/ivas_jbm_dec.c index 3caeb116035b4b4d7845a2f5e7d1fabfc9209e30..317bb0057df58907fefe001a57e1ada5ddf8343d 100644 --- a/lib_dec/ivas_jbm_dec.c +++ b/lib_dec/ivas_jbm_dec.c @@ -1110,6 +1110,12 @@ ivas_error ivas_jbm_dec_render( { mvr2r( p_tc[n], p_output[n], *nSamplesRendered ); } +#if defined( NONBE_1339_FIXOSBA_EXT_LOUDNESS ) && !defined( NONBE_1352_HARMONIZE_OSBA_LOUDNESS ) + for ( n = 0; n < st_ivas->hDecoderConfig->nchan_out; n++ ) + { + v_multc( p_output[n], 0.5f, p_output[n], *nSamplesRendered ); + } +#endif } else { @@ -1122,10 +1128,12 @@ ivas_error ivas_jbm_dec_render( else if ( st_ivas->renderer_type == RENDERER_BINAURAL_PARAMETRIC || st_ivas->renderer_type == RENDERER_BINAURAL_PARAMETRIC_ROOM ) { ivas_dirac_dec_binaural_render( st_ivas, nSamplesAskedLocal, nSamplesRendered, nSamplesAvailableNext, nchan_remapped, p_output ); +#ifdef NONBE_1352_HARMONIZE_OSBA_LOUDNESS for ( n = 0; n < st_ivas->hDecoderConfig->nchan_out; n++ ) { v_multc( p_output[n], 2.0f, p_output[n], *nSamplesRendered ); } +#endif } else { @@ -1148,10 +1156,12 @@ ivas_error ivas_jbm_dec_render( set_zero( p_output[n], *nSamplesRendered ); } } +#ifdef NONBE_1352_HARMONIZE_OSBA_LOUDNESS for ( n = 0; n < st_ivas->hDecoderConfig->nchan_out; n++ ) { v_multc( p_output[n], 2.0f, p_output[n], *nSamplesRendered ); } +#endif } } else if ( st_ivas->ivas_format == MC_FORMAT ) diff --git a/lib_dec/ivas_lfe_dec.c b/lib_dec/ivas_lfe_dec.c index 6dfe76f9652331c0354d052ebe052e20fe4b6b75..eed016b09f65566a60f4f0e17d3a4d63fbaa1e8f 100644 --- a/lib_dec/ivas_lfe_dec.c +++ b/lib_dec/ivas_lfe_dec.c @@ -380,7 +380,7 @@ ivas_error ivas_create_lfe_dec( LFE_DEC_HANDLE hLFE; float lfe_addl_delay_s; int16_t i, j; - float lfe_block_delay_s; + int16_t add_delay_sa; low_pass_delay_dec_out = 0; block_offset_s = 0; @@ -418,7 +418,7 @@ ivas_error ivas_create_lfe_dec( hLFE->cum_freq_models[1][3] = &ivas_str_lfe_freq_models.entropy_coder_model_coarse_sg4; /* delay calculation */ - lfe_block_delay_s = ( IVAS_LFE_FADE_NS / 1000000000.f ) + ivas_lfe_lpf_delay[IVAS_FILTER_ORDER_4 - 3]; + hLFE->lfe_block_delay_s = ( IVAS_LFE_FADE_NS / 1000000000.f ) + ivas_lfe_lpf_delay[IVAS_FILTER_ORDER_4 - 3]; block_offset_s = BLOCK_OFFSET_MS * 0.001f; filt_order = 0; @@ -426,21 +426,21 @@ ivas_error ivas_create_lfe_dec( if ( ( delay_ns / 1000000000.f ) > ivas_lfe_lpf_delay[IVAS_FILTER_ORDER_4 - 3] ) { filt_order = 4; - low_pass_delay_dec_out = ivas_lfe_lpf_delay[IVAS_FILTER_ORDER_4 - 3]; + low_pass_delay_dec_out = ivas_lfe_lpf_delay[IVAS_FILTER_ORDER_4 - 3] * 1000000000.f; ivas_create_lfe_lpf_dec( &( hLFE->filter_state ), output_Fs ); } hLFE->filter_state.order = filt_order; - lfe_block_delay_s = lfe_block_delay_s + low_pass_delay_dec_out; + hLFE->lfe_block_delay_s = hLFE->lfe_block_delay_s + low_pass_delay_dec_out; hLFE->lfe_prior_buf_len = NS2SA( output_Fs, IVAS_LFE_FADE_NS ); hLFE->bfi_count = 0; - block_offset_s += delay_ns / 1000000000.f; - lfe_addl_delay_s = block_offset_s - lfe_block_delay_s; + lfe_addl_delay_s = block_offset_s - hLFE->lfe_block_delay_s; lfe_addl_delay_s = max( 0.0f, lfe_addl_delay_s ); - hLFE->lfe_addl_delay = (int16_t) ( lfe_addl_delay_s * output_Fs ); - hLFE->delay_ns = delay_ns; + add_delay_sa = (int16_t) roundf( (float) delay_ns * output_Fs / 1000000000.f ); + hLFE->lfe_addl_delay = (int16_t) ( lfe_addl_delay_s * output_Fs ) + add_delay_sa; + hLFE->lfe_block_delay_s += lfe_addl_delay_s + add_delay_sa / output_Fs; if ( hLFE->lfe_addl_delay > 0 ) { diff --git a/lib_dec/ivas_mc_paramupmix_dec.c b/lib_dec/ivas_mc_paramupmix_dec.c index 5753d262a078261ae49ea0abb9c6247a1ce377d0..c06e8b3fa18632bff589fa6d452bcd57394a3f1b 100644 --- a/lib_dec/ivas_mc_paramupmix_dec.c +++ b/lib_dec/ivas_mc_paramupmix_dec.c @@ -679,7 +679,6 @@ static void ivas_mc_paramupmix_dec_sf( cldfbAnalysis_ts( &( pPcm_temp[ch][hMCParamUpmix->num_freq_bands * slot_idx] ), Cldfb_RealBuffer[ch][slot_idx], Cldfb_ImagBuffer[ch][slot_idx], hMCParamUpmix->num_freq_bands, st_ivas->cldfbAnaDec[ch] ); } } - for ( ch = 0; ch < MC_PARAMUPMIX_COMBINATIONS; ch++ ) { ps_pred_process_sf( hMCParamUpmix, @@ -838,7 +837,6 @@ static void ivas_mc_paramupmix_dec_sf( hMCParamUpmix->num_freq_bands, st_ivas->cldfbSynDec[ch] ); } } - /* adjust delay of other channels */ noparamupmix_delay = NS2SA( st_ivas->hDecoderConfig->output_Fs, IVAS_FB_DEC_DELAY_NS ); n_samples_rendered = st_ivas->hTcBuffer->subframe_nbslots[st_ivas->hTcBuffer->subframes_rendered] * hMCParamUpmix->num_freq_bands; @@ -846,29 +844,22 @@ static void ivas_mc_paramupmix_dec_sf( { for ( ch = 0; ch < MC_PARAMUPMIX_COMBINATIONS; ch++ ) { - /*delay is handled within LFE decoder*/ - if ( st_ivas->hIntSetup.index_lfe[0] != ch ) - { - float tmp_buf[L_SUBFRAME5MS_48k]; - mvr2r( &output_f[ch][n_samples_rendered - noparamupmix_delay], tmp_buf, noparamupmix_delay ); - mvr2r( output_f[ch], &output_f[ch][noparamupmix_delay], n_samples_rendered - noparamupmix_delay ); - mvr2r( hMCParamUpmix->pcm_delay[ch], output_f[ch], noparamupmix_delay ); - mvr2r( tmp_buf, hMCParamUpmix->pcm_delay[ch], noparamupmix_delay ); - } + float tmp_buf[L_SUBFRAME5MS_48k]; + mvr2r( &output_f[ch][n_samples_rendered - noparamupmix_delay], tmp_buf, noparamupmix_delay ); + mvr2r( output_f[ch], &output_f[ch][noparamupmix_delay], n_samples_rendered - noparamupmix_delay ); + mvr2r( hMCParamUpmix->pcm_delay[ch], output_f[ch], noparamupmix_delay ); + mvr2r( tmp_buf, hMCParamUpmix->pcm_delay[ch], noparamupmix_delay ); } } else { for ( ch = 0; ch < MC_PARAMUPMIX_COMBINATIONS; ch++ ) { - if ( st_ivas->hIntSetup.index_lfe[0] != ch ) - { - float tmp_buf[L_SUBFRAME5MS_48k]; - mvr2r( &output_f[ch][0], tmp_buf, n_samples_rendered ); - mvr2r( hMCParamUpmix->pcm_delay[ch], output_f[ch], n_samples_rendered ); - mvr2r( &hMCParamUpmix->pcm_delay[ch][n_samples_rendered], &hMCParamUpmix->pcm_delay[ch][0], noparamupmix_delay - n_samples_rendered ); - mvr2r( tmp_buf, &hMCParamUpmix->pcm_delay[ch][noparamupmix_delay - n_samples_rendered], n_samples_rendered ); - } + float tmp_buf[L_SUBFRAME5MS_48k]; + mvr2r( &output_f[ch][0], tmp_buf, n_samples_rendered ); + mvr2r( hMCParamUpmix->pcm_delay[ch], output_f[ch], n_samples_rendered ); + mvr2r( &hMCParamUpmix->pcm_delay[ch][n_samples_rendered], &hMCParamUpmix->pcm_delay[ch][0], noparamupmix_delay - n_samples_rendered ); + mvr2r( tmp_buf, &hMCParamUpmix->pcm_delay[ch][noparamupmix_delay - n_samples_rendered], n_samples_rendered ); } } } diff --git a/lib_dec/ivas_mct_dec.c b/lib_dec/ivas_mct_dec.c index ddc86592d1423d56c7e5da5826c2af1a18e336c7..8fb966c36518fb51edbce486791ec79dd5ba17b3 100644 --- a/lib_dec/ivas_mct_dec.c +++ b/lib_dec/ivas_mct_dec.c @@ -1077,6 +1077,42 @@ static ivas_error ivas_mc_dec_reconfig( return error; } + /*-----------------------------------------------------------------* + * Allocate the LFE handle that is coded separately after the allocation of the core coders + *-----------------------------------------------------------------*/ + + if ( ( st_ivas->mc_mode == MC_MODE_MCT || st_ivas->mc_mode == MC_MODE_PARAMUPMIX ) && st_ivas->hLFE == NULL ) + { + int32_t delay_ns = st_ivas->binaural_latency_ns; + if ( st_ivas->hBinRenderer != NULL ) + { + if ( st_ivas->hBinRenderer->render_lfe ) + { + /* Account for filterbank delay */ + delay_ns += IVAS_FB_DEC_DELAY_NS; + } + else + { + delay_ns = 0; + } + } + else + { + if ( ( st_ivas->mc_mode == MC_MODE_PARAMUPMIX ) && ( st_ivas->cldfbSynDec[0] != NULL ) ) + { + delay_ns += IVAS_FB_DEC_DELAY_NS; + } + } + + if ( ( error = ivas_create_lfe_dec( &st_ivas->hLFE, st_ivas->hDecoderConfig->output_Fs, delay_ns ) ) != IVAS_ERR_OK ) + { + return error; + } + + set_zero( st_ivas->hLFE->prevsynth_buf, LFE_PLC_BUFLEN ); + set_zero( st_ivas->hLFE->prior_out_buffer, L_FRAME48k ); + } + /*-----------------------------------------------------------------* * Reconfigure renderers *-----------------------------------------------------------------*/ @@ -1228,63 +1264,6 @@ static ivas_error ivas_mc_dec_reconfig( return error; } - - /*-----------------------------------------------------------------* - * Allocate the LFE handle that is coded separately after the allocation of the core coders - *-----------------------------------------------------------------*/ - - if ( ( st_ivas->mc_mode == MC_MODE_MCT || st_ivas->mc_mode == MC_MODE_PARAMUPMIX ) ) - { - int32_t delay_ns; - if ( st_ivas->hIntSetup.index_lfe[0] != -1 ) - { - delay_ns = st_ivas->binaural_latency_ns; - } - else - { - delay_ns = 0; - } - - if ( st_ivas->hBinRenderer != NULL ) - { - if ( st_ivas->hBinRenderer->render_lfe ) - { - /* Account for filterbank delay */ - delay_ns += IVAS_FB_DEC_DELAY_NS; - } - else - { - delay_ns = 0; - } - } - else - { - if ( ( st_ivas->mc_mode == MC_MODE_PARAMUPMIX ) && ( st_ivas->cldfbSynDec[0] != NULL ) ) - { - delay_ns += IVAS_FB_DEC_DELAY_NS; - } - } - - if ( st_ivas->hLFE != NULL ) - { - if ( st_ivas->hLFE->delay_ns != delay_ns ) - { - ivas_lfe_dec_close( &( st_ivas->hLFE ) ); - } - } - - if ( st_ivas->hLFE == NULL ) - { - if ( ( error = ivas_create_lfe_dec( &st_ivas->hLFE, st_ivas->hDecoderConfig->output_Fs, delay_ns ) ) != IVAS_ERR_OK ) - { - return error; - } - - set_zero( st_ivas->hLFE->prevsynth_buf, LFE_PLC_BUFLEN ); - set_zero( st_ivas->hLFE->prior_out_buffer, L_FRAME48k ); - } - } - /*-----------------------------------------------------------------* * JBM TC buffers *-----------------------------------------------------------------*/ diff --git a/lib_dec/ivas_osba_dec.c b/lib_dec/ivas_osba_dec.c index 17d084520437bd598ce2faa86e7bf438de5e3296..ab1b378ab6eac2daa36f7c9ce5989cbbca85f8ca 100644 --- a/lib_dec/ivas_osba_dec.c +++ b/lib_dec/ivas_osba_dec.c @@ -183,11 +183,21 @@ ivas_error ivas_osba_dirac_td_binaural_jbm( for ( b = 0; b < num_cldfb_bands; b++ ) { st_ivas->hSplitBinRend->hMultiBinCldfbData->Cldfb_RealBuffer_Binaural[n][slot_idx_start + slot_idx][b] = +#ifndef NONBE_1352_HARMONIZE_OSBA_LOUDNESS + ( 0.5f * st_ivas->hSplitBinRend->hMultiBinCldfbData->Cldfb_RealBuffer_Binaural[n][slot_idx_start + slot_idx][b] ) + + ( 0.5f * Cldfb_RealBuffer[b] ); +#else st_ivas->hSplitBinRend->hMultiBinCldfbData->Cldfb_RealBuffer_Binaural[n][slot_idx_start + slot_idx][b] + Cldfb_RealBuffer[b]; +#endif st_ivas->hSplitBinRend->hMultiBinCldfbData->Cldfb_ImagBuffer_Binaural[n][slot_idx_start + slot_idx][b] = +#ifndef NONBE_1352_HARMONIZE_OSBA_LOUDNESS + ( 0.5f * st_ivas->hSplitBinRend->hMultiBinCldfbData->Cldfb_ImagBuffer_Binaural[n][slot_idx_start + slot_idx][b] ) + + ( 0.5f * Cldfb_ImagBuffer[b] ); +#else st_ivas->hSplitBinRend->hMultiBinCldfbData->Cldfb_ImagBuffer_Binaural[n][slot_idx_start + slot_idx][b] + Cldfb_ImagBuffer[b]; +#endif } } } @@ -204,7 +214,11 @@ ivas_error ivas_osba_dirac_td_binaural_jbm( int16_t i; for ( i = 0; i < nSamplesAsked; i++ ) { +#ifndef NONBE_1352_HARMONIZE_OSBA_LOUDNESS + output_f[n][i] = 0.5f * output_f[channel_offset + n][i] + 0.5f * p_sepobj[n][i]; +#else output_f[n][i] = output_f[channel_offset + n][i] + p_sepobj[n][i]; +#endif } } } @@ -293,6 +307,10 @@ ivas_error ivas_osba_render_sf( { v_add( p_output[n], p_output_ism[n], p_output[n], *nSamplesRendered ); } + +#ifndef NONBE_1352_HARMONIZE_OSBA_LOUDNESS + v_multc( p_output[n], 0.5f, p_output[n], *nSamplesRendered ); +#endif } return IVAS_ERR_OK; @@ -335,6 +353,12 @@ void ivas_osba_stereo_add_channels( } } +#ifndef NONBE_1352_HARMONIZE_OSBA_LOUDNESS + for ( n = 0; n < nchan_out; n++ ) + { + v_multc( output_f[n], 0.5f, output_f[n], n_samples_to_render ); + } +#endif return; } diff --git a/lib_dec/ivas_stat_dec.h b/lib_dec/ivas_stat_dec.h index f7cac7160b1f21274101478f6da94f1c4c51e5c2..282d798e4d66fac476e7efd50bf06fd0957a63a9 100644 --- a/lib_dec/ivas_stat_dec.h +++ b/lib_dec/ivas_stat_dec.h @@ -790,7 +790,7 @@ typedef struct ivas_lfe_dec_data_structure LFE_WINDOW_HANDLE pWindow_state; const uint16_t *cum_freq_models[IVAS_MAX_NUM_QUANT_STRATS][IVAS_MAX_NUM_DCT_COEF_GROUPS]; int16_t lfe_dec_indices_coeffs_tbl[IVAS_MAX_NUM_QUANT_STRATS][IVAS_MAX_NUM_DCT_COEF_GROUPS]; - int32_t delay_ns; + float lfe_block_delay_s; int16_t lfe_prior_buf_len; float prior_out_buffer[L_FRAME48k]; @@ -846,7 +846,6 @@ typedef struct } ISAR_DEC_SPLIT_REND_WRAPPER, *ISAR_DEC_SPLIT_REND_WRAPPER_HANDLE; - /*----------------------------------------------------------------------------------* * MASA decoder structures *----------------------------------------------------------------------------------*/ diff --git a/lib_dec/ivas_svd_dec.c b/lib_dec/ivas_svd_dec.c index 8957c8e060846c7c5473e7c8ce8fb3fd3422a07d..1d6282b39c3c34e982694f5ad349413cc5538246 100644 --- a/lib_dec/ivas_svd_dec.c +++ b/lib_dec/ivas_svd_dec.c @@ -60,17 +60,9 @@ static float GivensRotation( const float x, const float z ); -#ifdef NONBE_SVD_OPTIMIZATION -static void biDiagonalReductionLeft( float singularVectors[][MAX_OUTPUT_CHANNELS], const int16_t nChannelsL, const int16_t nChannelsC, const int16_t currChannel, float *g ); -#else static void biDiagonalReductionLeft( float singularVectors[][MAX_OUTPUT_CHANNELS], float singularValues[MAX_OUTPUT_CHANNELS], float secDiag[MAX_OUTPUT_CHANNELS], const int16_t nChannelsL, const int16_t nChannelsC, const int16_t currChannel, float *sig_x, float *g ); -#endif -#ifdef NONBE_SVD_OPTIMIZATION -static void biDiagonalReductionRight( float singularVectors[][MAX_OUTPUT_CHANNELS], const int16_t nChannelsL, const int16_t nChannelsC, const int16_t currChannel, float *g ); -#else static void biDiagonalReductionRight( float singularVectors[][MAX_OUTPUT_CHANNELS], float secDiag[MAX_OUTPUT_CHANNELS], const int16_t nChannelsL, const int16_t nChannelsC, const int16_t currChannel, float *sig_x, float *g ); -#endif static void singularVectorsAccumulationLeft( float singularVectors_Left[][MAX_OUTPUT_CHANNELS], float singularValues[MAX_OUTPUT_CHANNELS], const int16_t nChannelsL, const int16_t nChannelsC ); @@ -497,28 +489,13 @@ static void HouseholderReduction( float *eps_x ) { int16_t nCh; -#ifdef NONBE_SVD_OPTIMIZATION - float g_left = 0.0f; - float g_right = 0.0f; -#else - float sig_x = 0.0f; - float g = 0.0f; -#endif - + float g = 0.0f, sig_x = 0.0f; /* Bidiagonal Reduction for every channel */ for ( nCh = 0; nCh < nChannelsC; nCh++ ) /* nChannelsC */ { -#ifdef NONBE_SVD_OPTIMIZATION - secDiag[nCh] = g_right; /* from the previous channel */ - biDiagonalReductionLeft( singularVectors_Left, nChannelsL, nChannelsC, nCh, &g_left ); - singularValues[nCh] = g_left; - biDiagonalReductionRight( singularVectors_Left, nChannelsL, nChannelsC, nCh, &g_right ); -#else biDiagonalReductionLeft( singularVectors_Left, singularValues, secDiag, nChannelsL, nChannelsC, nCh, &sig_x, &g ); biDiagonalReductionRight( singularVectors_Left, secDiag, nChannelsL, nChannelsC, nCh, &sig_x, &g ); -#endif - *eps_x = max( *eps_x, ( fabsf( singularValues[nCh] ) + fabsf( secDiag[nCh] ) ) ); } @@ -535,58 +512,7 @@ static void HouseholderReduction( * * *-------------------------------------------------------------------------*/ -#ifdef NONBE_SVD_OPTIMIZATION -static void biDiagonalReductionLeft( - float singularVectors[][MAX_OUTPUT_CHANNELS], - const int16_t nChannelsL, - const int16_t nChannelsC, - const int16_t currChannel, - float *g ) -{ - int16_t iCh, jCh; - float norm_x, f, r; - - /* Setting values to 0 */ - ( *g ) = 0.0f; - - if ( currChannel < nChannelsL ) /* i <= m */ - { - norm_x = 0.0f; - - for ( jCh = currChannel; jCh < nChannelsL; jCh++ ) /* nChannelsL */ - { - norm_x += ( singularVectors[jCh][currChannel] * singularVectors[jCh][currChannel] ); - } - - if ( ( norm_x ) ) /*(fabsf(*sig_x) > EPSILON * fabsf(*sig_x)) { */ - { - ( *g ) = -( singularVectors[currChannel][currChannel] >= 0 ? 1 : ( -1 ) ) * sqrtf( norm_x ); - r = ( *g ) * singularVectors[currChannel][currChannel] - norm_x; - singularVectors[currChannel][currChannel] = ( singularVectors[currChannel][currChannel] - ( *g ) ); - - for ( iCh = currChannel + 1; iCh < nChannelsC; iCh++ ) /* nChannelsC */ - { - norm_x = 0.0f; - for ( jCh = currChannel; jCh < nChannelsL; jCh++ ) /* nChannelsL */ - { - norm_x += ( singularVectors[jCh][currChannel] * singularVectors[jCh][iCh] ); - } - - f = norm_x / maxWithSign( r ); - - - for ( jCh = currChannel; jCh < nChannelsL; jCh++ ) /* nChannelsL */ - { - singularVectors[jCh][iCh] += ( f * singularVectors[jCh][currChannel] ); - } - } - } - } - - return; -} -#else static void biDiagonalReductionLeft( float singularVectors[][MAX_OUTPUT_CHANNELS], float singularValues[MAX_OUTPUT_CHANNELS], @@ -657,7 +583,7 @@ static void biDiagonalReductionLeft( return; } -#endif + /*------------------------------------------------------------------------- * biDiagonalReductionRight() @@ -665,56 +591,6 @@ static void biDiagonalReductionLeft( * *-------------------------------------------------------------------------*/ -#ifdef NONBE_SVD_OPTIMIZATION -static void biDiagonalReductionRight( - float singularVectors[][MAX_OUTPUT_CHANNELS], - const int16_t nChannelsL, - const int16_t nChannelsC, - const int16_t currChannel, - float *g ) -{ - int16_t iCh, jCh, idx; - float norm_x, r; - - /* Setting values to 0 */ - ( *g ) = 0.0f; - - if ( currChannel < nChannelsL && currChannel != ( nChannelsC - 1 ) ) /* i <=m && i !=n */ - { - idx = currChannel + 1; - - norm_x = 0.0f; - - for ( jCh = idx; jCh < nChannelsC; jCh++ ) /*nChannelsC */ - { - norm_x += ( singularVectors[currChannel][jCh] * singularVectors[currChannel][jCh] ); - } - - if ( norm_x ) /*(fabsf(*sig_x) > EPSILON * fabsf(*sig_x)) { */ - { - ( *g ) = -( singularVectors[currChannel][idx] >= 0 ? 1 : ( -1 ) ) * sqrtf( norm_x ); - r = ( *g ) * singularVectors[currChannel][idx] - norm_x; - singularVectors[currChannel][idx] = ( singularVectors[currChannel][idx] - ( *g ) ); - - for ( iCh = currChannel + 1; iCh < nChannelsL; iCh++ ) /* nChannelsL */ - { - norm_x = 0.0f; - for ( jCh = idx; jCh < nChannelsC; jCh++ ) /* nChannelsC */ - { - norm_x += ( singularVectors[iCh][jCh] * singularVectors[currChannel][jCh] ); - } - norm_x /= r; - for ( jCh = idx; jCh < nChannelsC; jCh++ ) /* nChannelsC */ - { - singularVectors[iCh][jCh] += ( norm_x * singularVectors[currChannel][jCh] ); - } - } - } - } - - return; -} -#else static void biDiagonalReductionRight( float singularVectors[][MAX_OUTPUT_CHANNELS], float secDiag[MAX_OUTPUT_CHANNELS], @@ -725,7 +601,6 @@ static void biDiagonalReductionRight( float *g ) { int16_t iCh, jCh, idx; - float norm_x, r; /* Setting values to 0 */ @@ -782,7 +657,7 @@ static void biDiagonalReductionRight( return; } -#endif + /*------------------------------------------------------------------------- * singularVectorsAccumulationLeft() diff --git a/lib_dec/jbm_pcmdsp_apa.c b/lib_dec/jbm_pcmdsp_apa.c index 84dd867403bf40dd1df5e19528dc5276d0cb6cbe..0c0b478a1b4f5fc58bc090a19611b978931cc36e 100644 --- a/lib_dec/jbm_pcmdsp_apa.c +++ b/lib_dec/jbm_pcmdsp_apa.c @@ -725,17 +725,6 @@ uint8_t apa_exec( ps->nFramesSinceSetScale >>= statsResetShift; } -#ifdef DEBUG_APA_SILENCE_NON_SCALED - if ( l_in == *l_out ) - { - set_zero( a_out, *l_out ); - } - else - { - set_f( a_out, (float) INT16_MAX, *l_out ); - } -#endif - return 0; } diff --git a/lib_isar/isar_lc3plus_common.c b/lib_isar/isar_lc3plus_common.c index a186908990ca5366ef81bb6e5a5b53c8726eb6fc..4236c9ced7cc64a4615b798d79b0ab1a0ac14300 100644 --- a/lib_isar/isar_lc3plus_common.c +++ b/lib_isar/isar_lc3plus_common.c @@ -33,7 +33,7 @@ #include "options.h" #include "isar_lc3plus_common.h" #include "ivas_error.h" -#include "lc3plus.h" +#include "lc3.h" /*-----------------------------------------------------------------------------------------* * Function ISAR_LC3PLUS_LC3plusErrToIvasErr() diff --git a/lib_isar/isar_lc3plus_common.h b/lib_isar/isar_lc3plus_common.h index eb3e7b0ad2d7d245c046cd7fc7699d7a178b8b78..b99348e0ed33b2269ce7e5b9e41d2715c8102712 100644 --- a/lib_isar/isar_lc3plus_common.h +++ b/lib_isar/isar_lc3plus_common.h @@ -37,7 +37,7 @@ #include #include "options.h" #include "ivas_error.h" -#include "lc3plus.h" +#include "lc3.h" #include "isar_lc3plus_payload.h" /*! common configuration parameters between encoder and decoder */ diff --git a/lib_isar/isar_lc3plus_dec.c b/lib_isar/isar_lc3plus_dec.c index c5d78f444684b1433894114ea9f1377ee9a49e4b..560f34f1c46077a88416829e3c748c11caf75e2b 100644 --- a/lib_isar/isar_lc3plus_dec.c +++ b/lib_isar/isar_lc3plus_dec.c @@ -36,7 +36,7 @@ #include "ivas_prot.h" #include "isar_lc3plus_dec.h" #include "isar_lc3plus_common.h" -#include "lc3plus.h" +#include "lc3.h" #include "ivas_error_utils.h" #include "wmc_auto.h" diff --git a/lib_isar/isar_lc3plus_dec.h b/lib_isar/isar_lc3plus_dec.h index d5cb37aaa917dfc2dc004a1ca7b64a6ad6eb3d20..82b9e51e1948a81bed58b6e63dbb49b88a5033d0 100644 --- a/lib_isar/isar_lc3plus_dec.h +++ b/lib_isar/isar_lc3plus_dec.h @@ -35,7 +35,7 @@ #include #include "options.h" -#include "lc3plus.h" +#include "lc3.h" #include "ivas_error.h" #include "ivas_cnst.h" #include "isar_lc3plus_common.h" diff --git a/lib_isar/isar_lc3plus_enc.c b/lib_isar/isar_lc3plus_enc.c index c6e2d31334271169367f7f0695806256a7f4c049..62a803f38fc4c72e08084c22905c7d6f00561cbc 100644 --- a/lib_isar/isar_lc3plus_enc.c +++ b/lib_isar/isar_lc3plus_enc.c @@ -32,7 +32,7 @@ #include "isar_lc3plus_enc.h" #include "isar_lc3plus_common.h" -#include "lc3plus.h" +#include "lc3.h" #include "ivas_error_utils.h" #include "prot.h" #include "wmc_auto.h" diff --git a/lib_isar/isar_lc3plus_enc.h b/lib_isar/isar_lc3plus_enc.h index ed6c526011d7a4861dd040ae4d6b3696437aa578..9c80033fd36a9d7fea205bd63bb9497611131167 100644 --- a/lib_isar/isar_lc3plus_enc.h +++ b/lib_isar/isar_lc3plus_enc.h @@ -35,7 +35,7 @@ #include #include "ivas_error.h" -#include "lc3plus.h" +#include "lc3.h" #include "isar_lc3plus_common.h" #include "isar_lc3plus_payload.h" diff --git a/lib_isar/isar_lc3plus_payload.h b/lib_isar/isar_lc3plus_payload.h index 580a58ca651defe96eeb84229b8f07b3407a756c..e95128578493f5561fdcb2292aef37f0c202e428 100644 --- a/lib_isar/isar_lc3plus_payload.h +++ b/lib_isar/isar_lc3plus_payload.h @@ -35,7 +35,7 @@ #include #include -#include "lc3plus.h" +#include "lc3.h" #include "options.h" diff --git a/lib_isar/lib_isar_pre_rend.c b/lib_isar/lib_isar_pre_rend.c index d24bc94de7411889db57dd0757fbd50945d41dcf..09323f6eedf08d3900bde17cb70a27a71e8be582 100644 --- a/lib_isar/lib_isar_pre_rend.c +++ b/lib_isar/lib_isar_pre_rend.c @@ -53,8 +53,8 @@ *------------------------------------------------------------------------*/ ivas_error ISAR_PRE_REND_open( - SPLIT_REND_WRAPPER *hSplitBinRend, /* i/o: Split renderer pre-renderer handle */ - ISAR_SPLIT_REND_CONFIG_DATA *pSplitRendConfig, /* i/o: Split renderer pre-renderer config */ + SPLIT_REND_WRAPPER *hSplitBinRend, /* i/o: Split renderer pre-renerer handle */ + ISAR_SPLIT_REND_CONFIG_DATA *pSplitRendConfig, /* i/o: Split renderer pre-renerer config */ const int32_t output_Fs, /* i : output sampling rate */ const int16_t cldfb_in_flag, /* i : Flag to indicate CLDFB or time doamin input */ const int16_t pcm_out_flag, /* i : Flag to indicate PCM output */ @@ -94,7 +94,9 @@ ivas_error ISAR_PRE_REND_open( isCldfbNeeded = 1; } - if ( isCldfbNeeded && hSplitBinRend->hCldfbHandles == NULL ) + hSplitBinRend->hCldfbHandles = NULL; + + if ( isCldfbNeeded ) { if ( ( hSplitBinRend->hCldfbHandles = (CLDFB_HANDLES_WRAPPER_HANDLE) malloc( sizeof( CLDFB_HANDLES_WRAPPER ) ) ) == NULL ) { @@ -284,7 +286,7 @@ ivas_error ISAR_PRE_REND_MultiBinToSplitBinaural( const int16_t max_bands, /* i : CLDFB bands */ float *output[], /* i/o: PCM in/out buffer */ const int16_t low_res_pre_rend_rot, /* i : low time resolution pre-renderer flag */ - const int16_t cldfb_in_flag, /* i : Flag to indicate CLDFB or time domain input */ + const int16_t cldfb_in_flag, /* i : Flag to indicate CLDFB or time doamin input */ const int16_t pcm_out_flag, /* i : Flag to indicate PCM output */ const int16_t ro_md_flag /* i : Flag to indicate real only metadata for yaw */ ) diff --git a/lib_lc3plus/functions.h b/lib_lc3plus/functions.h index a2f4857b2ae4a3d10511b5e08249d95a73634be4..46daa64bf3f3757f8f546a4c2d5c878a7924eb2b 100644 --- a/lib_lc3plus/functions.h +++ b/lib_lc3plus/functions.h @@ -15,9 +15,9 @@ #include "clib.h" #include "defines.h" #include "float.h" -#include "lc3plus.h" -#include "setup_dec_lc3plus.h" -#include "setup_enc_lc3plus.h" +#include "lc3.h" +#include "setup_dec_lc3.h" +#include "setup_enc_lc3.h" #include "structs.h" #include "util.h" diff --git a/lib_lc3plus/lc3plus.c b/lib_lc3plus/lc3.c similarity index 99% rename from lib_lc3plus/lc3plus.c rename to lib_lc3plus/lc3.c index d208cfb1512bfd8a028e01bca5b8db1bfa0efbfa..b275ed8084fc1b1caa5cce48e6ef18db7fa1af86 100644 --- a/lib_lc3plus/lc3plus.c +++ b/lib_lc3plus/lc3.c @@ -9,13 +9,13 @@ #include "options.h" #include "wmc_auto.h" -#include "lc3plus.h" +#include "lc3.h" #include "defines.h" #include "functions.h" #include -#include "setup_dec_lc3plus.h" -#include "setup_enc_lc3plus.h" +#include "setup_dec_lc3.h" +#include "setup_enc_lc3.h" #define RETURN_IF(cond, error) \ if (cond) \ diff --git a/lib_lc3plus/lc3plus.h b/lib_lc3plus/lc3.h similarity index 99% rename from lib_lc3plus/lc3plus.h rename to lib_lc3plus/lc3.h index 063714467da07d43f63d214cbfcec5eb13ff507c..b5f8809e7e167302c30da51e2989743d09fd21fe 100644 --- a/lib_lc3plus/lc3plus.h +++ b/lib_lc3plus/lc3.h @@ -7,7 +7,7 @@ * estoppel or otherwise. * ******************************************************************************/ -/*! \file lc3plus.h +/*! \file lc3.h * This header provides the API for LC3plus. * * This library is targeting devices with extreme memory limitations, so memory management diff --git a/lib_lc3plus/setup_com_lc3plus.c b/lib_lc3plus/setup_com_lc3.c similarity index 100% rename from lib_lc3plus/setup_com_lc3plus.c rename to lib_lc3plus/setup_com_lc3.c diff --git a/lib_lc3plus/setup_dec_lc3plus.c b/lib_lc3plus/setup_dec_lc3.c similarity index 99% rename from lib_lc3plus/setup_dec_lc3plus.c rename to lib_lc3plus/setup_dec_lc3.c index 9e9a5ea64e021c3669e4b439ac19bd22f9f1c43c..7bdbf0523da2e9867aa93f84029a261739b6384c 100644 --- a/lib_lc3plus/setup_dec_lc3plus.c +++ b/lib_lc3plus/setup_dec_lc3.c @@ -9,7 +9,7 @@ #include "options.h" #include "wmc_auto.h" -#include "setup_dec_lc3plus.h" +#include "setup_dec_lc3.h" #include "functions.h" #include #include diff --git a/lib_lc3plus/setup_dec_lc3plus.h b/lib_lc3plus/setup_dec_lc3.h similarity index 100% rename from lib_lc3plus/setup_dec_lc3plus.h rename to lib_lc3plus/setup_dec_lc3.h diff --git a/lib_lc3plus/setup_enc_lc3plus.c b/lib_lc3plus/setup_enc_lc3.c similarity index 99% rename from lib_lc3plus/setup_enc_lc3plus.c rename to lib_lc3plus/setup_enc_lc3.c index 80bd909ab3268179e74cc61bf9c09e5223c570dc..750a97bb043fb78f7c3f3f0f6149c470dd8e233d 100644 --- a/lib_lc3plus/setup_enc_lc3plus.c +++ b/lib_lc3plus/setup_enc_lc3.c @@ -9,7 +9,7 @@ #include "options.h" #include "wmc_auto.h" -#include "setup_enc_lc3plus.h" +#include "setup_enc_lc3.h" #include "functions.h" #include diff --git a/lib_lc3plus/setup_enc_lc3plus.h b/lib_lc3plus/setup_enc_lc3.h similarity index 100% rename from lib_lc3plus/setup_enc_lc3plus.h rename to lib_lc3plus/setup_enc_lc3.h diff --git a/lib_rend/ivas_omasa_ana.c b/lib_rend/ivas_omasa_ana.c index e7f58262edb660d75478f5e9c25733bb752f9487..95d67ee4fe130c0b5bd45d9068f77f1c5f723328 100644 --- a/lib_rend/ivas_omasa_ana.c +++ b/lib_rend/ivas_omasa_ana.c @@ -482,6 +482,7 @@ static void ivas_omasa_dmx( float g1, g2; float data_out_f[MASA_MAX_TRANSPORT_CHANNELS][L_FRAME48k]; + for ( i = 0; i < nchan_transport; i++ ) { set_zero( data_out_f[i], input_frame ); @@ -489,31 +490,24 @@ static void ivas_omasa_dmx( for ( i = 0; i < nchan_ism; i++ ) { - if ( nchan_transport == 1 ) - { - v_add( data_out_f[0], data_in_f[i], data_out_f[0], input_frame ); - } - else - { - azimuth = ism_azimuth[i]; - elevation = ism_elevation[i]; + azimuth = ism_azimuth[i]; + elevation = ism_elevation[i]; - ivas_ism_get_stereo_gains( azimuth, elevation, &gains[0], &gains[1] ); + ivas_ism_get_stereo_gains( azimuth, elevation, &gains[0], &gains[1] ); - /* Downmix using the panning gains */ - for ( j = 0; j < nchan_transport; j++ ) + /* Downmix using the panning gains */ + for ( j = 0; j < nchan_transport; j++ ) + { + if ( fabsf( gains[j] ) > 0.0 || fabsf( prev_gains[i][j] ) > 0.0f ) { - if ( fabsf( gains[j] ) > 0.0 || fabsf( prev_gains[i][j] ) > 0.0f ) + for ( k = 0; k < input_frame; k++ ) { - for ( k = 0; k < input_frame; k++ ) - { - g1 = interpolator[k]; - g2 = 1.0f - g1; - data_out_f[j][k] += ( g1 * gains[j] + g2 * prev_gains[i][j] ) * data_in_f[i][k]; - } + g1 = interpolator[k]; + g2 = 1.0f - g1; + data_out_f[j][k] += ( g1 * gains[j] + g2 * prev_gains[i][j] ) * data_in_f[i][k]; } - prev_gains[i][j] = gains[j]; } + prev_gains[i][j] = gains[j]; } } diff --git a/lib_rend/ivas_prot_rend.h b/lib_rend/ivas_prot_rend.h index 2268f62adda1a484ffe8b1edd58821426fbca016..bb936d4b14b85a1eac27874a27c08884f57de35b 100644 --- a/lib_rend/ivas_prot_rend.h +++ b/lib_rend/ivas_prot_rend.h @@ -1582,40 +1582,6 @@ void ivas_rend_closeCldfbRend( CLDFB_REND_WRAPPER *pCldfbRend ); -/*----------------------------------------------------------------------------------* - * Time domain ring buffer prototypes - *----------------------------------------------------------------------------------*/ - -ivas_error ivas_TD_RINGBUF_Open( - TD_RINGBUF_HANDLE *ph, /* i/o: Ring buffer handle */ - const uint32_t capacity_per_channel, /* i : Number of samples stored per channel */ - const uint16_t num_channels /* i : Number of channels */ -); - -void ivas_TD_RINGBUF_Close( - TD_RINGBUF_HANDLE *ph /* i/o: Ring buffer handle */ -); - -void ivas_TD_RINGBUF_Push( - TD_RINGBUF_HANDLE h, /* i/o: Ring buffer handle */ - const float *data, /* i : Input data */ - const uint32_t num_samples_per_channel /* i : Number of samples per channel to store */ -); - -void ivas_TD_RINGBUF_PushZeros( - TD_RINGBUF_HANDLE h, /* i/o: Ring buffer handle */ - const uint32_t num_samples_per_channel /* i : Number of zeros per channel to store */ -); - -void ivas_TD_RINGBUF_Pop( - TD_RINGBUF_HANDLE h, /* i/o: Ring buffer handle */ - float *data, /* i : Output data */ - const uint32_t num_samples_per_channel /* i : Number of samples per channel to retrieve*/ -); - -uint32_t ivas_TD_RINGBUF_Size( - const TD_RINGBUF_HANDLE h /* i : Ring buffer handle */ -); /* clang-format on */ diff --git a/lib_rend/ivas_rom_rend.c b/lib_rend/ivas_rom_rend.c index 3f4b906bd6fdaa8159f22abe9ed3fb2686c3fd6e..b14a5303a0f40b052ce7224d39247b7346f6abec 100644 --- a/lib_rend/ivas_rom_rend.c +++ b/lib_rend/ivas_rom_rend.c @@ -163,9 +163,15 @@ const float ap_lattice_coeffs_3[DIRAC_DECORR_FILTER_LEN_3*DIRAC_MAX_NUM_DECORR_F const float * const ap_lattice_coeffs[DIRAC_DECORR_NUM_SPLIT_BANDS] = { +#ifdef CODE_IMPROVEMENTS ap_lattice_coeffs_1, ap_lattice_coeffs_2, ap_lattice_coeffs_3, +#else + &ap_lattice_coeffs_1[0], + &ap_lattice_coeffs_2[0], + &ap_lattice_coeffs_3[0], +#endif }; const float ap_split_frequencies[DIRAC_DECORR_NUM_SPLIT_BANDS + 1] = @@ -177,13 +183,11 @@ const int16_t sba_map_tc[11] = { 0, 1, 2, 3, 4, 8, 9, 15, 5, 6, 7 }; - const int16_t sba_map_tc_512[11] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 15 }; - /*----------------------------------------------------------------------------------* * FASTCONV and PARAMETRIC binaural renderer ROM tables *----------------------------------------------------------------------------------*/ @@ -382,7 +386,6 @@ const float ivas_reverb_default_DSR[IVAS_REVERB_DEFAULT_N_BANDS] = 6.2001e-08f, 2.8483e-08f, 2.6267e-08f }; - /*----------------------------------------------------------------------------------* * Renderer SBA & MC enc/dec matrices *----------------------------------------------------------------------------------*/ @@ -391,7 +394,6 @@ const float ivas_reverb_default_DSR[IVAS_REVERB_DEFAULT_N_BANDS] = const float ls_azimuth_CICP1[1] = { 0.0f }; const float ls_elevation_CICP1[1] = { 0.0f }; - /*----------------------------------------------------------------------------------* * EFAP ROM tables *----------------------------------------------------------------------------------*/ diff --git a/lib_rend/ivas_stat_rend.h b/lib_rend/ivas_stat_rend.h index 69fcb30fb803f590f19fb50517892a98ecc97f9c..e990c336f69e0d8c2e45520c92754ff21f3a992d 100644 --- a/lib_rend/ivas_stat_rend.h +++ b/lib_rend/ivas_stat_rend.h @@ -1371,22 +1371,6 @@ typedef struct } CLDFB_REND_WRAPPER; -/*----------------------------------------------------------------------------------* - * Time domain ring buffer structure - *----------------------------------------------------------------------------------*/ - -typedef struct -{ - float *data; /* samples in interleaved layout */ - uint32_t capacity; - uint16_t num_channels; - uint32_t write_pos; - uint32_t read_pos; - int16_t is_full; - -} TD_RINGBUF_DATA, *TD_RINGBUF_HANDLE; - - /*----------------------------------------------------------------------------------* * MASA external renderer structure *----------------------------------------------------------------------------------*/ diff --git a/lib_rend/ivas_td_ring_buffer.c b/lib_rend/ivas_td_ring_buffer.c deleted file mode 100644 index 5c9c6089bbc41150c6469cd8240a1df3741b38ce..0000000000000000000000000000000000000000 --- a/lib_rend/ivas_td_ring_buffer.c +++ /dev/null @@ -1,288 +0,0 @@ -/****************************************************************************************************** - - (C) 2022-2025 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository. All Rights Reserved. - - This software is protected by copyright law and by international treaties. - The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, - Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., - Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, - Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other - contributors to this repository retain full ownership rights in their respective contributions in - the software. This notice grants no license of any kind, including but not limited to patent - license, nor is any license granted by implication, estoppel or otherwise. - - Contributors are required to enter into the IVAS codec Public Collaboration agreement before making - contributions. - - This software is provided "AS IS", without any express or implied warranties. The software is in the - development stage. It is intended exclusively for experts who have experience with such software and - solely for the purpose of inspection. All implied warranties of non-infringement, merchantability - and fitness for a particular purpose are hereby disclaimed and excluded. - - Any dispute, controversy or claim arising under or in relation to providing this software shall be - submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in - accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and - the United Nations Convention on Contracts on the International Sales of Goods. - -*******************************************************************************************************/ - -#include -#include -#include "ivas_error_utils.h" -#include "ivas_prot_rend.h" -#include "options.h" -#include "wmc_auto.h" - - -/*-----------------------------------------------------------------------* - * Local function prototypes - *-----------------------------------------------------------------------*/ - -static uint32_t ivas_td_ringbuf_total_size( - TD_RINGBUF_HANDLE h ) -{ - if ( h->is_full ) - { - return h->capacity; - } - - if ( h->read_pos <= h->write_pos ) - { - return h->write_pos - h->read_pos; - } - /* else wrap around */ - return h->write_pos + h->capacity - h->read_pos; -} - - -static int16_t ivas_td_ringbuf_has_space_for_num_samples( - TD_RINGBUF_HANDLE h, - const uint32_t num_samples ) -{ - return (int16_t) ( ivas_td_ringbuf_total_size( h ) + num_samples <= h->capacity ); -} - - -/*-----------------------------------------------------------------------* - * Global function definitions - *-----------------------------------------------------------------------*/ - -/*---------------------------------------------------------------------* - * ivas_TD_RINGBUF_Open() - * - * Allocate a ring buffer for TD data with the given capacity of TD samples per channel. - * - * May return IVAS_ERR_FAILED_ALLOC on failed allocation, or IVAS_ERR_OK otherwise. - *---------------------------------------------------------------------*/ - -ivas_error ivas_TD_RINGBUF_Open( - TD_RINGBUF_HANDLE *ph, /* i/o: Ring buffer handle */ - const uint32_t capacity_per_channel, /* i : Number of samples stored per channel */ - const uint16_t num_channels /* i : Number of channels */ -) -{ - TD_RINGBUF_HANDLE h; - uint32_t capacity; - - capacity = capacity_per_channel * num_channels; - - h = malloc( sizeof( TD_RINGBUF_DATA ) ); - if ( h == NULL ) - { - return IVAS_ERROR( IVAS_ERR_FAILED_ALLOC, "Failed to allocate memory for TD ring buffer\n" ); - } - h->data = NULL; - h->capacity = 0; - h->num_channels = num_channels; - h->write_pos = 0; - h->read_pos = 0; - h->is_full = 0; - *ph = h; - - h->data = malloc( capacity * sizeof( float ) ); - if ( h->data == NULL ) - { - return IVAS_ERROR( IVAS_ERR_FAILED_ALLOC, "Failed to allocate memory for TD ring buffer\n" ); - } - h->capacity = capacity; - - return IVAS_ERR_OK; -} - - -/*---------------------------------------------------------------------* - * ivas_TD_RINGBUF_Close() - * - * Dellocate TD ring buffer. The given handle will be set to NULL. - - *---------------------------------------------------------------------*/ - -void ivas_TD_RINGBUF_Close( - TD_RINGBUF_HANDLE *ph /* i/o: Ring buffer handle */ -) -{ - TD_RINGBUF_HANDLE h; - - if ( ph == NULL ) - { - return; - } - h = *ph; - - if ( h == NULL ) - { - return; - } - - if ( h->data != NULL ) - { - free( h->data ); - } - - free( h ); - *ph = NULL; - - return; -} - - -/*---------------------------------------------------------------------* - * ivas_TD_RINGBUF_Push() - * - * Push samples onto the back of the TD ring buffer. - * Returns total number of buffered samples (includes number of channels) - *---------------------------------------------------------------------*/ - -void ivas_TD_RINGBUF_Push( - TD_RINGBUF_HANDLE h, /* i/o: Ring buffer handle */ - const float *data, /* i : Input data */ - const uint32_t num_samples_per_channel /* i : Number of samples per channel to store */ -) -{ - uint32_t s; - uint16_t c; - - assert( ivas_td_ringbuf_has_space_for_num_samples( h, num_samples_per_channel * h->num_channels ) ); - - for ( s = 0; s < num_samples_per_channel; ++s ) - { - for ( c = 0; c < h->num_channels; ++c ) - { - h->data[h->write_pos] = *( data + c * num_samples_per_channel + s ); - ++h->write_pos; - - if ( h->write_pos == h->capacity ) - { - h->write_pos = 0; - } - } - } - - if ( h->read_pos == h->write_pos ) - { - h->is_full = 1; - } - - return; -} - - -/*---------------------------------------------------------------------* - * ivas_TD_RINGBUF_PushZeros() - * - * Push zero samples onto the back of the TD ring buffer. - *---------------------------------------------------------------------*/ - -void ivas_TD_RINGBUF_PushZeros( - TD_RINGBUF_HANDLE h, /* i/o: Ring buffer handle */ - const uint32_t num_samples_per_channel /* i : Number of zeros per channel to store */ -) -{ - uint32_t s; - uint16_t c; - - assert( ivas_td_ringbuf_has_space_for_num_samples( h, num_samples_per_channel * h->num_channels ) ); - if ( !num_samples_per_channel ) - { - return; - } - - for ( s = 0; s < num_samples_per_channel; ++s ) - { - for ( c = 0; c < h->num_channels; ++c ) - { - h->data[h->write_pos] = 0.f; - ++h->write_pos; - - if ( h->write_pos == h->capacity ) - { - h->write_pos = 0; - } - } - } - - if ( h->read_pos == h->write_pos ) - { - h->is_full = 1; - } - - return; -} - - -/*---------------------------------------------------------------------* - * ivas_TD_RINGBUF_Pop() - * - * Pop samples from the front of the TD ring buffer. - *---------------------------------------------------------------------*/ - -void ivas_TD_RINGBUF_Pop( - TD_RINGBUF_HANDLE h, /* i/o: Ring buffer handle */ - float *data, /* i : Output data */ - const uint32_t num_samples_per_channel /* i : Number of samples per channel to retrieve */ -) -{ - uint32_t s; - uint16_t c; - - assert( ivas_td_ringbuf_total_size( h ) >= num_samples_per_channel * h->num_channels ); - - for ( s = 0; s < num_samples_per_channel; ++s ) - { - for ( c = 0; c < h->num_channels; ++c ) - { - *( data + c * num_samples_per_channel + s ) = h->data[h->read_pos]; - ++h->read_pos; - - if ( h->read_pos == h->capacity ) - { - h->read_pos = 0; - } - } - } - - if ( h->is_full ) - { - h->is_full = 0; - } - - return; -} - - -/*---------------------------------------------------------------------* - * ivas_TD_RINGBUF_Size() - * - * Returns number of buffered samples per channel. - *---------------------------------------------------------------------*/ - -uint32_t ivas_TD_RINGBUF_Size( - const TD_RINGBUF_HANDLE h /* i : Ring buffer handle */ -) -{ - return ivas_td_ringbuf_total_size( h ) / (uint32_t) h->num_channels; -} diff --git a/lib_rend/lib_rend.c b/lib_rend/lib_rend.c index 180fd5dabd579609cb3fa733d907fbf9b15ca0fe..d9866de0506d69dab80fcab91c815c8ec85ada04 100644 --- a/lib_rend/lib_rend.c +++ b/lib_rend/lib_rend.c @@ -81,7 +81,6 @@ typedef struct typedef struct { const int32_t *pOutSampleRate; - const int32_t *pMaxGlobalDelayNs; const AUDIO_CONFIG *pOutConfig; const LSSETUP_CUSTOM_STRUCT *pCustomLsOut; const EFAP_WRAPPER *pEfapOutWrapper; @@ -98,11 +97,9 @@ typedef struct AUDIO_CONFIG inConfig; IVAS_REND_InputId id; IVAS_REND_AudioBuffer inputBuffer; - TD_RINGBUF_HANDLE delayBuffer; float gain; /* Linear, not in dB */ rendering_context ctx; int32_t numNewSamplesPerChannel; /* Used to keep track how much new audio was fed before rendering current frame */ - int32_t delayNumSamples; } input_base; typedef struct @@ -192,7 +189,6 @@ typedef struct hrtf_handles struct IVAS_REND { int32_t sampleRateOut; - int32_t maxGlobalDelayNs; IVAS_LIMITER_HANDLE hLimiter; #ifdef DEBUGGING @@ -208,12 +204,11 @@ struct IVAS_REND AUDIO_CONFIG outputConfig; EFAP_WRAPPER efapOutWrapper; IVAS_LSSETUP_CUSTOM_STRUCT customLsOut; - - int16_t splitRendBFI; SPLIT_REND_WRAPPER *splitRendWrapper; IVAS_REND_AudioBuffer splitRendEncBuffer; IVAS_REND_HeadRotData headRotData; + int16_t splitRendBFI; EXTERNAL_ORIENTATION_HANDLE hExternalOrientationData; COMBINED_ORIENTATION_HANDLE hCombinedOrientationData; @@ -267,13 +262,6 @@ static void freeInputBaseBufferData( return; } -static int16_t latencyNsToSamples( - int32_t sampleRate, - int32_t latency_ns ) -{ - return (int16_t) roundf( (float) ( latency_ns ) * ( sampleRate / 1000000000.f ) ); -} - static ivas_error allocateMcLfeDelayBuffer( float **lfeDelayBuffer, const int16_t data_size ) @@ -381,7 +369,7 @@ static void copyBufferToCLDFBarray( static void accumulateCLDFBArrayToBuffer( float re[][CLDFB_NO_COL_MAX][CLDFB_NO_CHANNELS_MAX], float im[][CLDFB_NO_COL_MAX][CLDFB_NO_CHANNELS_MAX], - const IVAS_REND_AudioBuffer *buffer ) + IVAS_REND_AudioBuffer *buffer ) { uint32_t smplIdx, slotIdx; uint32_t numCldfbSamples, num_bands; @@ -1174,8 +1162,6 @@ static void initRendInputBase( inputBase->gain = 1.0f; inputBase->ctx = rendCtx; inputBase->numNewSamplesPerChannel = 0; - inputBase->delayNumSamples = 0; - inputBase->delayBuffer = NULL; inputBase->inputBuffer.config.numSamplesPerChannel = 0; inputBase->inputBuffer.config.numChannels = 0; @@ -1224,7 +1210,6 @@ static rendering_context getRendCtx( /* Note: when refactoring this, always take the ADDRESS of a member of the * renderer struct, so that the context stores a POINTER to the member, even * if the member is a pointer or handle itself. */ - ctx.pMaxGlobalDelayNs = &hIvasRend->maxGlobalDelayNs; ctx.pOutConfig = &hIvasRend->outputConfig; ctx.pOutSampleRate = &hIvasRend->sampleRateOut; ctx.pCustomLsOut = &hIvasRend->customLsOut; @@ -1267,272 +1252,6 @@ static bool isIoConfigPairSupported( } -static int32_t getRendInputDelayIsm( - const input_ism *inputIsm, - bool splitPreRendCldfb ) -{ - int32_t latency_ns; - latency_ns = 0; - (void) ( splitPreRendCldfb ); /* unused */ - - /* set the rendering delay in InputBase */ - latency_ns = max( latency_ns, - inputIsm->tdRendWrapper.binaural_latency_ns ); - if ( inputIsm->crendWrapper != NULL ) - { - latency_ns = max( latency_ns, - inputIsm->crendWrapper->binaural_latency_ns ); - } - - return latency_ns; -} - - -static void setRendInputDelayIsm( - void *input, - bool splitPreRendCldfb ) -{ - input_ism *inputIsm; - inputIsm = (input_ism *) input; - - inputIsm->base.delayNumSamples = latencyNsToSamples( *inputIsm->base.ctx.pOutSampleRate, - getRendInputDelayIsm( inputIsm, splitPreRendCldfb ) ); -} - - -static int32_t getRendInputDelayMc( - const input_mc *inputMc, - bool splitPreRendCldfb ) -{ - int32_t latency_ns; - latency_ns = 0; - (void) ( splitPreRendCldfb ); /* unused */ - - latency_ns = max( latency_ns, - inputMc->tdRendWrapper.binaural_latency_ns ); - if ( inputMc->crendWrapper != NULL ) - { - latency_ns = max( latency_ns, - inputMc->crendWrapper->binaural_latency_ns ); - } - - return latency_ns; -} - - -static void setRendInputDelayMc( - void *input, - bool splitPreRendCldfb ) -{ - input_mc *inputMc; - inputMc = (input_mc *) input; - - inputMc->base.delayNumSamples = latencyNsToSamples( *inputMc->base.ctx.pOutSampleRate, - getRendInputDelayMc( inputMc, splitPreRendCldfb ) ); -} - - -static int32_t getRendInputDelaySba( - const input_sba *inputSba, - bool splitPreRendCldfb ) -{ - int32_t latency_ns; - latency_ns = 0; - - if ( inputSba->cldfbRendWrapper.hCldfbRend != NULL ) - { - latency_ns = max( latency_ns, - inputSba->cldfbRendWrapper.binaural_latency_ns + - ( splitPreRendCldfb ? 0 : IVAS_FB_DEC_DELAY_NS ) ); - } - if ( inputSba->crendWrapper != NULL ) - { - latency_ns = max( latency_ns, - inputSba->crendWrapper->binaural_latency_ns ); - } - - return latency_ns; -} - - -static void setRendInputDelaySba( - void *input, - bool splitPreRendCldfb ) -{ - input_sba *inputSba; - inputSba = (input_sba *) input; - - inputSba->base.delayNumSamples = latencyNsToSamples( *inputSba->base.ctx.pOutSampleRate, - getRendInputDelaySba( inputSba, splitPreRendCldfb ) ); -} - - -static int32_t getRendInputDelayMasa( - const input_masa *inputMasa, - bool splitPreRendCldfb ) -{ - int32_t latency_ns; - - latency_ns = 0; - - if ( ( inputMasa->base.inConfig == IVAS_AUDIO_CONFIG_MASA1 && *inputMasa->base.ctx.pOutConfig == IVAS_AUDIO_CONFIG_MONO ) || - ( getAudioConfigType( *inputMasa->base.ctx.pOutConfig ) == IVAS_REND_AUDIO_CONFIG_TYPE_MASA ) ) - { - return 0; /* no delay */ - } - else - { - /* no delay applied for split rendering */ - latency_ns = max( latency_ns, - (int32_t) ( ( splitPreRendCldfb ? 0 : (float) IVAS_FB_DEC_DELAY_NS + 0.5f ) ) ); - } - return latency_ns; -} - - -static void setRendInputDelayMasa( - void *input, - bool splitPreRendCldfb ) -{ - input_masa *inputMasa; - inputMasa = (input_masa *) input; - - inputMasa->base.delayNumSamples = latencyNsToSamples( *inputMasa->base.ctx.pOutSampleRate, - getRendInputDelayMasa( inputMasa, splitPreRendCldfb ) ); -} - - -static int32_t getMaxGlobalDelayNs( IVAS_REND_CONST_HANDLE hIvasRend ) -{ - int16_t i; - int32_t latency_ns; - int32_t max_latency_ns; - bool splitPreRendCldfb; - - max_latency_ns = 0; - /*assumes that input has been added which means codec has been set to either lcld or lc3plus (even if render config specified default)*/ - if ( hIvasRend->hRendererConfig != NULL ) - { - splitPreRendCldfb = ( hIvasRend->hRendererConfig->split_rend_config.codec == ISAR_SPLIT_REND_CODEC_LCLD ); - } - else - { - splitPreRendCldfb = false; - } - - /* Compute the maximum delay across all inputs */ - for ( i = 0; i < RENDERER_MAX_ISM_INPUTS; i++ ) - { - if ( hIvasRend->inputsIsm[i].base.inConfig != IVAS_AUDIO_CONFIG_INVALID ) - { - latency_ns = getRendInputDelayIsm( &hIvasRend->inputsIsm[i], splitPreRendCldfb ); - max_latency_ns = max( max_latency_ns, latency_ns ); - } - } - - for ( i = 0; i < RENDERER_MAX_MC_INPUTS; i++ ) - { - if ( hIvasRend->inputsMc[i].base.inConfig != IVAS_AUDIO_CONFIG_INVALID ) - { - latency_ns = getRendInputDelayMc( &hIvasRend->inputsMc[i], splitPreRendCldfb ); - max_latency_ns = max( max_latency_ns, latency_ns ); - } - } - - for ( i = 0; i < RENDERER_MAX_SBA_INPUTS; i++ ) - { - if ( hIvasRend->inputsSba[i].base.inConfig != IVAS_AUDIO_CONFIG_INVALID ) - { - latency_ns = getRendInputDelaySba( &hIvasRend->inputsSba[i], splitPreRendCldfb ); - max_latency_ns = max( max_latency_ns, latency_ns ); - } - } - - for ( i = 0; i < RENDERER_MAX_MASA_INPUTS; i++ ) - { - if ( hIvasRend->inputsMasa[i].base.inConfig != IVAS_AUDIO_CONFIG_INVALID ) - { - latency_ns = getRendInputDelayMasa( &hIvasRend->inputsMasa[i], splitPreRendCldfb ); - max_latency_ns = max( max_latency_ns, latency_ns ); - } - } - - return max_latency_ns; -} - - -static void setMaxGlobalDelayNs( IVAS_REND_HANDLE hIvasRend ) -{ - hIvasRend->maxGlobalDelayNs = getMaxGlobalDelayNs( (IVAS_REND_CONST_HANDLE) hIvasRend ); -} - -static ivas_error alignInputDelay( - input_base *inputBase, - const IVAS_REND_ReadOnlyAudioBuffer inputAudio, - const int32_t maxGlobalDelayNs, - const int32_t sampleRateOut, - const int16_t cldfb2tdSampleFact, - const bool flushInputs ) -{ - ivas_error error; - input_ism *inputIsm; - int16_t maxGlobalDelaySamples; - int32_t numSamplesToPush, numSamplesToPop; - uint32_t ringBufferSize, preDelay; - - maxGlobalDelaySamples = latencyNsToSamples( sampleRateOut, maxGlobalDelayNs ); - maxGlobalDelaySamples *= cldfb2tdSampleFact; - - /* check if we need to open the delay buffer */ - if ( inputBase->delayBuffer == NULL ) - { - /* buffer has to accomodate maxGlobalDelaySamples + 2 * frameSize */ - ringBufferSize = maxGlobalDelaySamples + 2 * inputAudio.config.numSamplesPerChannel; - - /* pre delay for this input is maximum delay - input delay */ - preDelay = maxGlobalDelaySamples - inputBase->delayNumSamples * cldfb2tdSampleFact; - - if ( preDelay > 0 ) - { - if ( ( error = ivas_TD_RINGBUF_Open( &inputBase->delayBuffer, ringBufferSize, inputAudio.config.numChannels ) ) != IVAS_ERR_OK ) - { - return error; - } - - /* for the first frame we need to push zeros to align the input delay to the global delay - * and then push a frame of actual data */ - ivas_TD_RINGBUF_PushZeros( inputBase->delayBuffer, preDelay ); - - /* for ISM inputs, ensure the metadata sync delay is updated */ - if ( getAudioConfigType( inputBase->inConfig ) == IVAS_REND_AUDIO_CONFIG_TYPE_OBJECT_BASED ) - { - inputIsm = (input_ism *) inputBase; - inputIsm->ism_metadata_delay_ms = maxGlobalDelayNs / 1e6f; - } - } - } - - if ( inputBase->delayBuffer != NULL ) - { - /* push in the new input data and pop to retrieve a complete input frame - * if we are flushing the inputs, we don't push in any new data */ - numSamplesToPush = flushInputs ? 0 : inputAudio.config.numSamplesPerChannel; - numSamplesToPop = flushInputs ? ivas_TD_RINGBUF_Size( inputBase->delayBuffer ) : (uint32_t) inputAudio.config.numSamplesPerChannel; - - ivas_TD_RINGBUF_Push( inputBase->delayBuffer, inputAudio.data, numSamplesToPush ); - ivas_TD_RINGBUF_Pop( inputBase->delayBuffer, inputBase->inputBuffer.data, numSamplesToPop ); - } - else - { - /* delay buffer isn't open - we don't need it */ - mvr2r( inputAudio.data, - inputBase->inputBuffer.data, - inputAudio.config.numSamplesPerChannel * inputAudio.config.numChannels ); - } - - return IVAS_ERR_OK; -} - static ivas_error initIsmMasaRendering( input_ism *inputIsm, const int32_t inSampleRate ) @@ -1668,8 +1387,6 @@ static void clearInputIsm( rendCtx = inputIsm->base.ctx; freeInputBaseBufferData( &inputIsm->base.inputBuffer.data ); - ivas_TD_RINGBUF_Close( &inputIsm->base.delayBuffer ); - initRendInputBase( &inputIsm->base, IVAS_AUDIO_CONFIG_INVALID, 0, rendCtx, NULL, 0 ); /* Free input's internal handles */ @@ -2440,7 +2157,7 @@ static ivas_error initMcBinauralRendering( /* determine binaural delay ( used for aligning LFE to output signal ) */ binauralDelayNs = max( ( inputMc->crendWrapper != NULL ) ? inputMc->crendWrapper->binaural_latency_ns : 0, inputMc->tdRendWrapper.binaural_latency_ns ); - inputMc->binauralDelaySmp = latencyNsToSamples( *inputMc->base.ctx.pOutSampleRate, binauralDelayNs ); + inputMc->binauralDelaySmp = (int16_t) roundf( (float) binauralDelayNs * *inputMc->base.ctx.pOutSampleRate / 1000000000.f ); if ( inputMc->binauralDelaySmp > MAX_BIN_DELAY_SAMPLES ) { @@ -2640,8 +2357,6 @@ static void clearInputMc( freeMcLfeDelayBuffer( &inputMc->lfeDelayBuffer ); freeInputBaseBufferData( &inputMc->bufferData ); - ivas_TD_RINGBUF_Close( &inputMc->base.delayBuffer ); - initRendInputBase( &inputMc->base, IVAS_AUDIO_CONFIG_INVALID, 0, rendCtx, NULL, 0 ); /* Free input's internal handles */ @@ -2929,7 +2644,7 @@ static ivas_error setRendInputActiveSba( return error; } - return IVAS_ERR_OK; + return error; } @@ -2941,7 +2656,6 @@ static void clearInputSba( rendCtx = inputSba->base.ctx; freeInputBaseBufferData( &inputSba->bufferData ); - ivas_TD_RINGBUF_Close( &inputSba->base.delayBuffer ); initRendInputBase( &inputSba->base, IVAS_AUDIO_CONFIG_INVALID, 0, rendCtx, NULL, 0 ); @@ -3021,7 +2735,6 @@ static void clearInputMasa( rendCtx = inputMasa->base.ctx; freeInputBaseBufferData( &inputMasa->bufferData ); - ivas_TD_RINGBUF_Close( &inputMasa->base.delayBuffer ); masaPrerendClose( &inputMasa->hMasaPrerend ); freeMasaExtRenderer( &inputMasa->hMasaExtRend ); @@ -3091,7 +2804,7 @@ ivas_error IVAS_REND_Open( hIvasRend->num_subframes = num_subframes; /* Initialize limiter */ - if ( ( error = IVAS_REND_GetNumOutChannels( hIvasRend, &numOutChannels ) ) != IVAS_ERR_OK ) + if ( ( error = IVAS_REND_NumOutChannels( hIvasRend, &numOutChannels ) ) != IVAS_ERR_OK ) { return error; } @@ -3150,9 +2863,6 @@ ivas_error IVAS_REND_Open( isar_init_split_rend_handles( hIvasRend->splitRendWrapper ); } hIvasRend->splitRendEncBuffer.data = NULL; - hIvasRend->splitRendEncBuffer.config.is_cldfb = 0; - hIvasRend->splitRendEncBuffer.config.numChannels = 0; - hIvasRend->splitRendEncBuffer.config.numSamplesPerChannel = 0; for ( i = 0; i < RENDERER_MAX_ISM_INPUTS; ++i ) { @@ -3348,7 +3058,7 @@ ivas_error IVAS_REND_ConfigureCustomOutputLoudspeakerLayout( hIvasRend->customLsOut = makeCustomLsSetup( layout ); /* Re-initialize limiter - number of output channels may have changed */ - if ( ( error = IVAS_REND_GetNumOutChannels( hIvasRend, &numOutChannels ) ) != IVAS_ERR_OK ) + if ( ( error = IVAS_REND_NumOutChannels( hIvasRend, &numOutChannels ) ) != IVAS_ERR_OK ) { return error; } @@ -3406,12 +3116,12 @@ ivas_error IVAS_REND_ConfigureCustomOutputLoudspeakerLayout( /*-------------------------------------------------------------------* - * IVAS_REND_GetNumOutChannels() + * IVAS_REND_NumOutChannels() * * *-------------------------------------------------------------------*/ -ivas_error IVAS_REND_GetNumOutChannels( +ivas_error IVAS_REND_NumOutChannels( IVAS_REND_CONST_HANDLE hIvasRend, int16_t *numOutChannels ) { @@ -3581,7 +3291,7 @@ static ivas_error getConstInputById( return IVAS_ERR_OK; } - +#ifdef CODE_IMPROVEMENTS static void *getInputByIndex( void *inputsArray, const size_t index, @@ -3598,39 +3308,61 @@ static void *getInputByIndex( case IVAS_REND_AUDIO_CONFIG_TYPE_MASA: return (input_masa *) inputsArray + index; default: - break; + /* this should be unreachable */ + assert( 0 ); + return NULL; } - - /* this should be unreachable */ - assert( 0 ); - - /* include a final return to make the linter happy and avoid problems with wmc_tool (see #1355) */ - return NULL; } - +#endif static ivas_error findFreeInputSlot( +#ifdef CODE_IMPROVEMENTS void *inputs, const IVAS_REND_AudioConfigType inputType, +#else + const void *inputs, + const int32_t inputStructSize, +#endif const int32_t maxInputs, int32_t *inputIndex ) { +#ifdef CODE_IMPROVEMENTS /* Using a void pointer and a separately provided type is a hack for this function to be reusable for arrays of any input type (input_ism, input_mc, input_sba, input_masa). Assumptions: - input_base is always the first member in the input struct - memory alignments of original input type and input_base are the same */ +#else + /* Using a void pointer and a separately provided size is a hack for this function + to be reusable for arrays of any input type (input_ism, input_mc, input_sba, input_masa). + Assumptions: + - input_base is always the first member in the input struct + - provided size is correct + */ +#endif + int32_t i; bool canAddInput; +#ifndef CODE_IMPROVEMENTS + const uint8_t *pByte; +#endif const input_base *pInputBase; canAddInput = false; /* Find first unused input in array */ +#ifdef CODE_IMPROVEMENTS for ( i = 0; i < maxInputs; ++i ) +#else + for ( i = 0, pByte = inputs; i < maxInputs; ++i, pByte += inputStructSize ) +#endif { +#ifdef CODE_IMPROVEMENTS pInputBase = (const input_base *) getInputByIndex( inputs, i, inputType ); +#else + pInputBase = (const input_base *) pByte; +#endif if ( pInputBase->inConfig == IVAS_AUDIO_CONFIG_INVALID ) { @@ -3660,15 +3392,10 @@ static int16_t getCldfbRendFlag( const IVAS_REND_AudioConfigType new_configType ) { int16_t i; - int16_t numMasaInputs = 0, numSbaInputs = 0; + int16_t numMasaInputs = 0, numSbaInputs = 0, numIsmInputs = 0, numMcInputs = 0; int16_t isCldfbRend; isCldfbRend = 0; - /* This function is called during three different phases of renderer processing: - * - IVAS_REND_AddInput() - * - IVAS_REND_FeedRenderConfig() - * - IVAS_REND_GetSplitBinauralBitstream() - * Only the last case can assume all inputs are present for the current frame to be rendered */ if ( hIvasRend->hRendererConfig != NULL ) { for ( i = 0; i < RENDERER_MAX_MASA_INPUTS; ++i ) @@ -3679,7 +3406,20 @@ static int16_t getCldfbRendFlag( { numSbaInputs += ( hIvasRend->inputsSba[i].base.inConfig == IVAS_AUDIO_CONFIG_INVALID && new_configType != IVAS_REND_AUDIO_CONFIG_TYPE_AMBISONICS ) ? 0 : 1; } - if ( ( numMasaInputs > 0 ) || ( numSbaInputs > 0 && hIvasRend->hRendererConfig->split_rend_config.rendererSelection == IVAS_BIN_RENDERER_TYPE_FASTCONV ) ) + for ( i = 0; i < RENDERER_MAX_ISM_INPUTS; ++i ) + { + numIsmInputs += ( hIvasRend->inputsIsm[i].base.inConfig == IVAS_AUDIO_CONFIG_INVALID && new_configType != IVAS_REND_AUDIO_CONFIG_TYPE_OBJECT_BASED ) ? 0 : 1; + } + for ( i = 0; i < RENDERER_MAX_MC_INPUTS; ++i ) + { + numMcInputs += ( hIvasRend->inputsMc[i].base.inConfig == IVAS_AUDIO_CONFIG_INVALID && new_configType != IVAS_REND_AUDIO_CONFIG_TYPE_CHANNEL_BASED ) ? 0 : 1; + } + + if ( numIsmInputs > 0 || numMcInputs > 0 ) + { + isCldfbRend = 0; + } + else if ( ( numMasaInputs > 0 ) || ( numSbaInputs > 0 && hIvasRend->hRendererConfig->split_rend_config.rendererSelection == IVAS_BIN_RENDERER_TYPE_FASTCONV ) ) { isCldfbRend = 1; } @@ -3689,12 +3429,12 @@ static int16_t getCldfbRendFlag( } /*------------------------------------------------------------------------- - * Function isar_pre_rend_init() + * Function ivas_pre_rend_init() * * *------------------------------------------------------------------------*/ -static ivas_error isar_pre_rend_init( +static ivas_error ivas_pre_rend_init( SPLIT_REND_WRAPPER *pSplitRendWrapper, IVAS_REND_AudioBuffer *pSplitRendEncBuffer, ISAR_SPLIT_REND_CONFIG_DATA *pSplit_rend_config, @@ -3704,20 +3444,10 @@ static ivas_error isar_pre_rend_init( const int16_t cldfb_in_flag, const int16_t num_subframes ) { - bool realloc; ivas_error error; IVAS_REND_AudioBufferConfig bufConfig; - realloc = false; - - /* only perform init if split rendering output */ - if ( outConfig != IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED && outConfig != IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM ) - { - return IVAS_ERR_OK; - } - - /* these functions should only be called once during initial allocation */ - if ( pSplitRendEncBuffer->data == NULL ) + if ( outConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED || outConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM ) { if ( pSplit_rend_config->poseCorrectionMode == ISAR_SPLIT_REND_POSE_CORRECTION_MODE_CLDFB ) { @@ -3732,34 +3462,28 @@ static ivas_error isar_pre_rend_init( { return error; } - } - - /* We may need to change the allocated buffer size if a new input is added. - * If the cldfb_in_flag is different from what was previously allocated for the buffer, change the size */ - if ( pSplitRendEncBuffer->data != NULL && ( cldfb_in_flag != pSplitRendEncBuffer->config.is_cldfb ) ) - { - realloc = true; - } - if ( pSplitRendEncBuffer->data == NULL || realloc ) - { - /* set buffer config */ - bufConfig.is_cldfb = cldfb_in_flag; - bufConfig.numSamplesPerChannel = cldfb_in_flag ? MAX_CLDFB_BUFFER_LENGTH_PER_CHANNEL : L_FRAME_MAX; + /*allocate for CLDFB in and change to TD during process if needed*/ + bufConfig.numSamplesPerChannel = MAX_CLDFB_BUFFER_LENGTH_PER_CHANNEL; bufConfig.numChannels = BINAURAL_CHANNELS * pSplitRendWrapper->multiBinPoseData.num_poses; + bufConfig.is_cldfb = 1; pSplitRendEncBuffer->config = bufConfig; - /* allocate memory */ - if ( realloc ) - { - free( pSplitRendEncBuffer->data ); - } - if ( ( pSplitRendEncBuffer->data = malloc( bufConfig.numChannels * bufConfig.numSamplesPerChannel * sizeof( float ) ) ) == NULL ) { return IVAS_ERR_FAILED_ALLOC; } } + else + { + IVAS_REND_AudioBufferConfig bufConfig2; + + bufConfig2.numSamplesPerChannel = 0; + bufConfig2.numChannels = 0; + bufConfig2.is_cldfb = 0; + pSplitRendEncBuffer->config = bufConfig2; + pSplitRendEncBuffer->data = NULL; + } return IVAS_ERR_OK; } @@ -3780,13 +3504,13 @@ ivas_error IVAS_REND_AddInput( ivas_error error; int32_t maxNumInputsOfType; void *inputsArray; +#ifdef CODE_IMPROVEMENTS IVAS_REND_AudioConfigType inputType; +#else + int32_t inputStructSize; +#endif ivas_error ( *activateInput )( void *, AUDIO_CONFIG, IVAS_REND_InputId, RENDER_CONFIG_DATA *, hrtf_handles * ); - void ( *setInputDelay )( void *, bool ); int32_t inputIndex; - bool splitPreRendCldfb; - - splitPreRendCldfb = false; /* Validate function arguments */ if ( hIvasRend == NULL || inputId == NULL ) @@ -3794,75 +3518,80 @@ ivas_error IVAS_REND_AddInput( return IVAS_ERR_UNEXPECTED_NULL_POINTER; } - if ( hIvasRend->hRendererConfig != NULL ) + if ( ( hIvasRend->outputConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED || hIvasRend->outputConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM ) && hIvasRend->splitRendEncBuffer.data == NULL && hIvasRend->hRendererConfig != NULL ) { int16_t cldfb_in_flag; cldfb_in_flag = getCldfbRendFlag( hIvasRend, getAudioConfigType( inConfig ) ); - if ( ( error = isar_pre_rend_init( hIvasRend->splitRendWrapper, - &hIvasRend->splitRendEncBuffer, - &hIvasRend->hRendererConfig->split_rend_config, - hIvasRend->headRotData, - hIvasRend->sampleRateOut, - hIvasRend->outputConfig, - cldfb_in_flag, - hIvasRend->num_subframes ) ) != IVAS_ERR_OK ) + if ( ( error = ivas_pre_rend_init( hIvasRend->splitRendWrapper, &hIvasRend->splitRendEncBuffer, &hIvasRend->hRendererConfig->split_rend_config, hIvasRend->headRotData, hIvasRend->sampleRateOut, hIvasRend->outputConfig, cldfb_in_flag, hIvasRend->num_subframes ) ) != IVAS_ERR_OK ) { return error; } - - /*assumes that input has been added which means codec has been set to either lcld or lc3plus (even if render config specified default)*/ - splitPreRendCldfb = ( hIvasRend->hRendererConfig->split_rend_config.codec == ISAR_SPLIT_REND_CODEC_LCLD ); } +#ifdef CODE_IMPROVEMENTS inputType = getAudioConfigType( inConfig ); switch ( inputType ) +#else + switch ( getAudioConfigType( inConfig ) ) +#endif { case IVAS_REND_AUDIO_CONFIG_TYPE_OBJECT_BASED: maxNumInputsOfType = RENDERER_MAX_ISM_INPUTS; inputsArray = hIvasRend->inputsIsm; +#ifndef CODE_IMPROVEMENTS + inputStructSize = sizeof( *hIvasRend->inputsIsm ); +#endif activateInput = setRendInputActiveIsm; - setInputDelay = setRendInputDelayIsm; break; case IVAS_REND_AUDIO_CONFIG_TYPE_CHANNEL_BASED: maxNumInputsOfType = RENDERER_MAX_MC_INPUTS; inputsArray = hIvasRend->inputsMc; +#ifndef CODE_IMPROVEMENTS + inputStructSize = sizeof( *hIvasRend->inputsMc ); +#endif activateInput = setRendInputActiveMc; - setInputDelay = setRendInputDelayMc; break; case IVAS_REND_AUDIO_CONFIG_TYPE_AMBISONICS: maxNumInputsOfType = RENDERER_MAX_SBA_INPUTS; inputsArray = hIvasRend->inputsSba; +#ifndef CODE_IMPROVEMENTS + inputStructSize = sizeof( *hIvasRend->inputsSba ); +#endif activateInput = setRendInputActiveSba; - setInputDelay = setRendInputDelaySba; break; case IVAS_REND_AUDIO_CONFIG_TYPE_MASA: maxNumInputsOfType = RENDERER_MAX_MASA_INPUTS; inputsArray = hIvasRend->inputsMasa; +#ifndef CODE_IMPROVEMENTS + inputStructSize = sizeof( *hIvasRend->inputsMasa ); +#endif activateInput = setRendInputActiveMasa; - setInputDelay = setRendInputDelayMasa; break; default: return IVAS_ERR_INVALID_INPUT_FORMAT; } - /* Find first free input in array corresponding to input type */ + /* Find first free input in array corresponding to input type */ +#ifdef CODE_IMPROVEMENTS if ( ( error = findFreeInputSlot( inputsArray, inputType, maxNumInputsOfType, &inputIndex ) ) != IVAS_ERR_OK ) +#else + if ( ( error = findFreeInputSlot( inputsArray, inputStructSize, maxNumInputsOfType, &inputIndex ) ) != IVAS_ERR_OK ) +#endif { return error; } *inputId = makeInputId( inConfig, inputIndex ); +#ifdef CODE_IMPROVEMENTS if ( ( error = activateInput( getInputByIndex( inputsArray, inputIndex, inputType ), inConfig, *inputId, hIvasRend->hRendererConfig, &hIvasRend->hHrtfs ) ) != IVAS_ERR_OK ) +#else + if ( ( error = activateInput( (uint8_t *) inputsArray + inputStructSize * inputIndex, inConfig, *inputId, hIvasRend->hRendererConfig, &hIvasRend->hHrtfs ) ) != IVAS_ERR_OK ) +#endif { return error; } - setInputDelay( getInputByIndex( inputsArray, inputIndex, inputType ), splitPreRendCldfb ); - - /* set global maximum delay after adding an input */ - setMaxGlobalDelayNs( hIvasRend ); - return IVAS_ERR_OK; } @@ -4115,9 +3844,6 @@ ivas_error IVAS_REND_RemoveInput( return IVAS_ERR_INVALID_INPUT_FORMAT; } - /* set global maximum delay after removing an input */ - setMaxGlobalDelayNs( hIvasRend ); - return IVAS_ERR_OK; } @@ -4194,6 +3920,11 @@ ivas_error IVAS_REND_GetDelay( int32_t *timeScale /* o : Time scale of the delay, equal to renderer output sampling rate */ ) { + /* TODO tmu : this function only returns the maximum delay across all inputs + * Ideally each input has its own delay buffer and everything is aligned (binaural and LFE filtering delays are nonuniform) + */ + int16_t i; + int32_t latency_ns; int32_t max_latency_ns; /* Validate function arguments */ @@ -4202,16 +3933,76 @@ ivas_error IVAS_REND_GetDelay( return IVAS_ERR_UNEXPECTED_NULL_POINTER; } - *nSamples = 0; *timeScale = hIvasRend->sampleRateOut; + *nSamples = 0; + max_latency_ns = 0; - max_latency_ns = getMaxGlobalDelayNs( hIvasRend ); + /* Compute the maximum delay across all inputs */ + for ( i = 0; i < RENDERER_MAX_ISM_INPUTS; i++ ) + { + if ( hIvasRend->inputsIsm[i].base.inConfig != IVAS_AUDIO_CONFIG_INVALID ) + { + latency_ns = max( ( hIvasRend->inputsIsm[i].crendWrapper != NULL ) ? hIvasRend->inputsIsm[i].crendWrapper->binaural_latency_ns : 0, + hIvasRend->inputsIsm[i].tdRendWrapper.binaural_latency_ns ); + max_latency_ns = max( max_latency_ns, latency_ns ); + } + } - *nSamples = latencyNsToSamples( hIvasRend->sampleRateOut, max_latency_ns ); + for ( i = 0; i < RENDERER_MAX_MC_INPUTS; i++ ) + { + if ( hIvasRend->inputsMc[i].base.inConfig != IVAS_AUDIO_CONFIG_INVALID ) + { + latency_ns = max( ( hIvasRend->inputsMc[i].crendWrapper != NULL ) ? hIvasRend->inputsMc[i].crendWrapper->binaural_latency_ns : 0, + hIvasRend->inputsMc[i].tdRendWrapper.binaural_latency_ns ); + max_latency_ns = max( max_latency_ns, latency_ns ); + } + } + + for ( i = 0; i < RENDERER_MAX_SBA_INPUTS; i++ ) + { + if ( hIvasRend->inputsSba[i].base.inConfig != IVAS_AUDIO_CONFIG_INVALID ) + { + if ( hIvasRend->splitRendWrapper != NULL && hIvasRend->splitRendWrapper->hBinHrSplitPreRend != NULL ) + { + if ( hIvasRend->hRendererConfig->split_rend_config.rendererSelection == IVAS_BIN_RENDERER_TYPE_FASTCONV ) + { + latency_ns = hIvasRend->inputsSba[i].cldfbRendWrapper.binaural_latency_ns; + } + else + { + latency_ns = ( hIvasRend->inputsSba[i].crendWrapper != NULL ) ? hIvasRend->inputsSba[i].crendWrapper->binaural_latency_ns : 0; + } + max_latency_ns = max( max_latency_ns, latency_ns ); + } + else if ( hIvasRend->inputsSba[i].cldfbRendWrapper.hCldfbRend != NULL ) + { + latency_ns = hIvasRend->inputsSba[i].cldfbRendWrapper.binaural_latency_ns; + latency_ns += IVAS_FB_DEC_DELAY_NS; + max_latency_ns = max( max_latency_ns, latency_ns ); + } + else + { + latency_ns = ( hIvasRend->inputsSba[i].crendWrapper != NULL ) ? hIvasRend->inputsSba[i].crendWrapper->binaural_latency_ns : 0; + max_latency_ns = max( max_latency_ns, latency_ns ); + } + } + } + + for ( i = 0; i < RENDERER_MAX_MASA_INPUTS; i++ ) + { + if ( hIvasRend->inputsMasa[i].base.inConfig != IVAS_AUDIO_CONFIG_INVALID ) + { + latency_ns = (int32_t) ( (float) IVAS_FB_DEC_DELAY_NS + 0.5f ); + max_latency_ns = max( max_latency_ns, latency_ns ); + } + } + + *nSamples = (int16_t) roundf( (float) max_latency_ns * *timeScale / 1000000000.f ); return IVAS_ERR_OK; } + /*-------------------------------------------------------------------* * IVAS_REND_FeedInputAudio() * @@ -4219,10 +4010,9 @@ ivas_error IVAS_REND_GetDelay( *-------------------------------------------------------------------*/ ivas_error IVAS_REND_FeedInputAudio( - IVAS_REND_HANDLE hIvasRend, /* i/o: Renderer handle */ - const IVAS_REND_InputId inputId, /* i : ID of the input */ - const IVAS_REND_ReadOnlyAudioBuffer inputAudio, /* i : buffer with input audio */ - const bool flushInputs /* i : flush input audio */ + IVAS_REND_HANDLE hIvasRend, /* i/o: Renderer handle */ + const IVAS_REND_InputId inputId, /* i : ID of the input */ + const IVAS_REND_ReadOnlyAudioBuffer inputAudio /* i : buffer with input audio */ ) { ivas_error error; @@ -4278,16 +4068,9 @@ ivas_error IVAS_REND_FeedInputAudio( } inputBase->inputBuffer.config = inputAudio.config; - if ( ( error = alignInputDelay( - inputBase, - inputAudio, - hIvasRend->maxGlobalDelayNs, - hIvasRend->sampleRateOut, - cldfb2tdSampleFact, - flushInputs ) ) != IVAS_ERR_OK ) - { - return error; - } + + mvr2r( inputAudio.data, inputBase->inputBuffer.data, inputAudio.config.numSamplesPerChannel * inputAudio.config.numChannels ); + inputBase->numNewSamplesPerChannel = inputAudio.config.numSamplesPerChannel / cldfb2tdSampleFact; return IVAS_ERR_OK; @@ -4595,7 +4378,6 @@ ivas_error IVAS_REND_FeedRenderConfig( if ( pMasaInput->hMasaExtRend->hDiracDecBin[0] != NULL && pMasaInput->hMasaExtRend->hDiracDecBin[0]->hReverb != NULL ) { ivas_binaural_reverb_close( &pMasaInput->hMasaExtRend->hDiracDecBin[0]->hReverb ); - if ( ( error = ivas_binaural_reverb_init( &pMasaInput->hMasaExtRend->hDiracDecBin[0]->hReverb, hIvasRend->hHrtfs.hHrtfStatistics, pMasaInput->hMasaExtRend->hSpatParamRendCom->num_freq_bands, @@ -4613,7 +4395,6 @@ ivas_error IVAS_REND_FeedRenderConfig( if ( pMasaInput->hMasaExtRend->hReverb != NULL ) { ivas_binaural_reverb_close( &pMasaInput->hMasaExtRend->hReverb ); - if ( ( error = ivas_binaural_reverb_init( &pMasaInput->hMasaExtRend->hReverb, hIvasRend->hHrtfs.hHrtfStatistics, pMasaInput->hMasaExtRend->hSpatParamRendCom->num_freq_bands, @@ -4646,7 +4427,6 @@ ivas_error IVAS_REND_FeedRenderConfig( return error; } } - if ( pMcInput->crendWrapper != NULL && pMcInput->crendWrapper->hCrend[0] && pMcInput->crendWrapper->hCrend[0]->hReverb != NULL ) { if ( ( error = ivas_reverb_open( &pMcInput->crendWrapper->hCrend[0]->hReverb, hIvasRend->hHrtfs.hHrtfStatistics, hRenderConfig, *pMcInput->base.ctx.pOutSampleRate ) ) != IVAS_ERR_OK ) @@ -4697,7 +4477,6 @@ ivas_error IVAS_REND_FeedRenderConfig( { int16_t cldfb_in_flag; cldfb_in_flag = getCldfbRendFlag( hIvasRend, IVAS_REND_AUDIO_CONFIG_TYPE_UNKNOWN ); - if ( hIvasRend->splitRendWrapper != NULL ) { ISAR_PRE_REND_close( hIvasRend->splitRendWrapper, &hIvasRend->splitRendEncBuffer ); @@ -4705,7 +4484,7 @@ ivas_error IVAS_REND_FeedRenderConfig( hIvasRend->splitRendWrapper = NULL; } - if ( ( error = isar_pre_rend_init( hIvasRend->splitRendWrapper, &hIvasRend->splitRendEncBuffer, &hIvasRend->hRendererConfig->split_rend_config, hIvasRend->headRotData, hIvasRend->sampleRateOut, hIvasRend->outputConfig, cldfb_in_flag, hIvasRend->num_subframes ) ) != IVAS_ERR_OK ) + if ( ( error = ivas_pre_rend_init( hIvasRend->splitRendWrapper, &hIvasRend->splitRendEncBuffer, &hIvasRend->hRendererConfig->split_rend_config, hIvasRend->headRotData, hIvasRend->sampleRateOut, hIvasRend->outputConfig, cldfb_in_flag, hIvasRend->num_subframes ) ) != IVAS_ERR_OK ) { return error; } @@ -5434,7 +5213,7 @@ static ivas_error renderIsmToBinaural( push_wmops( "renderIsmToBinaural" ); /* Metadata Delay to sync with audio delay converted from ms to 5ms (1000/50/4) subframe index */ - ism_md_subframe_update_ext = (int16_t) roundf( ismInput->ism_metadata_delay_ms / ( 1000.f / FRAMES_PER_SEC / MAX_PARAM_SPATIAL_SUBFRAMES ) ); + ism_md_subframe_update_ext = (int16_t) roundf( ismInput->ism_metadata_delay_ms / ( 1000 / FRAMES_PER_SEC / MAX_PARAM_SPATIAL_SUBFRAMES ) ); copyBufferTo2dArray( ismInput->base.inputBuffer, tmpTDRendBuffer ); if ( ( error = ivas_td_binaural_renderer_ext( &ismInput->tdRendWrapper, ismInput->base.inConfig, NULL, ismInput->base.ctx.pCombinedOrientationData, &ismInput->currentPos, ismInput->hReverb, ism_md_subframe_update_ext, @@ -5638,7 +5417,7 @@ static ivas_error renderIsmToBinauralReverb( push_wmops( "renderIsmToBinauralRoom" ); /* Metadata Delay to sync with audio delay converted from ms to 5ms (1000/50/4) subframe index */ - ism_md_subframe_update_ext = (int16_t) roundf( ismInput->ism_metadata_delay_ms / ( 1000.f / FRAMES_PER_SEC / MAX_PARAM_SPATIAL_SUBFRAMES ) ); + ism_md_subframe_update_ext = (int16_t) roundf( ismInput->ism_metadata_delay_ms / ( 1000 / FRAMES_PER_SEC / MAX_PARAM_SPATIAL_SUBFRAMES ) ); copyBufferTo2dArray( ismInput->base.inputBuffer, tmpRendBuffer ); @@ -5804,10 +5583,8 @@ static ivas_error renderIsmToSplitBinaural( const MULTI_BIN_REND_POSE_DATA *pMultiBinPoseData; const SPLIT_REND_WRAPPER *pSplitRendWrapper; IVAS_QUATERNION originalHeadRot[MAX_PARAM_SPATIAL_SUBFRAMES]; - int16_t i, ch, slot_idx, num_bands; + int16_t i; float tmpBinaural[MAX_HEAD_ROT_POSES * BINAURAL_CHANNELS][L_FRAME48k]; - float tmpBinaural_CldfbRe[MAX_HEAD_ROT_POSES * BINAURAL_CHANNELS][CLDFB_NO_COL_MAX][CLDFB_NO_CHANNELS_MAX]; - float tmpBinaural_CldfbIm[MAX_HEAD_ROT_POSES * BINAURAL_CHANNELS][CLDFB_NO_COL_MAX][CLDFB_NO_CHANNELS_MAX]; int16_t output_frame = ismInput->base.inputBuffer.config.numSamplesPerChannel; COMBINED_ORIENTATION_HANDLE pCombinedOrientationData; int16_t ism_md_subframe_update_ext; @@ -5818,7 +5595,7 @@ static ivas_error renderIsmToSplitBinaural( pMultiBinPoseData = &pSplitRendWrapper->multiBinPoseData; /* Metadata Delay to sync with audio delay converted from ms to 5ms (1000/50/4) subframe index */ - ism_md_subframe_update_ext = (int16_t) roundf( ismInput->ism_metadata_delay_ms / ( 1000.f / FRAMES_PER_SEC / MAX_PARAM_SPATIAL_SUBFRAMES ) ); + ism_md_subframe_update_ext = (int16_t) roundf( ismInput->ism_metadata_delay_ms / ( 1000 / FRAMES_PER_SEC / MAX_PARAM_SPATIAL_SUBFRAMES ) ); pCombinedOrientationData = *ismInput->base.ctx.pCombinedOrientationData; @@ -5874,29 +5651,10 @@ static ivas_error renderIsmToSplitBinaural( return error; } - if ( outAudio.config.is_cldfb ) - { - /* Perform CLDFB analysis on rendered audio, since the output buffer is CLDFB domain */ - num_bands = (int16_t) ( ( BINAURAL_MAXBANDS * *ismInput->base.ctx.pOutSampleRate ) / 48000 ); - for ( ch = 0; ch < BINAURAL_CHANNELS; ch++ ) - { - for ( slot_idx = 0; slot_idx < IVAS_CLDFB_NO_COL_MAX; slot_idx++ ) - { - cldfbAnalysis_ts( &tmpProcessing[ch][num_bands * slot_idx], - &tmpBinaural_CldfbRe[BINAURAL_CHANNELS * pos_idx + ch][slot_idx][0], - &tmpBinaural_CldfbIm[BINAURAL_CHANNELS * pos_idx + ch][slot_idx][0], - num_bands, - ismInput->base.ctx.pSplitRendWrapper->hCldfbHandles->cldfbAna[pos_idx + ch] ); - } - } - } - else - { - /* Copy rendered audio to tmp storage buffer. Copying directly to output would - * overwrite original audio, which is still needed for rendering next head pose. */ - mvr2r( tmpProcessing[0], tmpBinaural[BINAURAL_CHANNELS * pos_idx], output_frame ); - mvr2r( tmpProcessing[1], tmpBinaural[BINAURAL_CHANNELS * pos_idx + 1], output_frame ); - } + /* Copy rendered audio to tmp storage buffer. Copying directly to output would + * overwrite original audio, which is still needed for rendering next head pose. */ + mvr2r( tmpProcessing[0], tmpBinaural[2 * pos_idx], output_frame ); + mvr2r( tmpProcessing[1], tmpBinaural[2 * pos_idx + 1], output_frame ); /* Overwrite processing buffer with original input audio again */ copyBufferTo2dArray( ismInput->base.inputBuffer, tmpProcessing ); @@ -5908,14 +5666,7 @@ static ivas_error renderIsmToSplitBinaural( pCombinedOrientationData->Quaternions[i] = originalHeadRot[i]; } - if ( outAudio.config.is_cldfb ) - { - accumulateCLDFBArrayToBuffer( tmpBinaural_CldfbRe, tmpBinaural_CldfbIm, &outAudio ); - } - else - { - accumulate2dArrayToBuffer( tmpBinaural, &outAudio ); - } + accumulate2dArrayToBuffer( tmpBinaural, &outAudio ); pop_wmops(); /* Encoding to split rendering bitstream done at a higher level */ @@ -5950,13 +5701,11 @@ static ivas_error renderInputIsm( { ivas_error error; IVAS_REND_AudioBuffer inAudio; - int16_t cldfb2tdSampleFact; error = IVAS_ERR_OK; inAudio = ismInput->base.inputBuffer; - cldfb2tdSampleFact = outAudio.config.is_cldfb ? 2 : 1; - if ( ismInput->base.numNewSamplesPerChannel * cldfb2tdSampleFact != outAudio.config.numSamplesPerChannel ) + if ( ismInput->base.numNewSamplesPerChannel != outAudio.config.numSamplesPerChannel ) { return IVAS_ERROR( IVAS_ERR_INVALID_BUFFER_SIZE, "Mismatch between the number of input samples vs number of requested output samples - currently not allowed" ); } @@ -6081,7 +5830,8 @@ static ivas_error renderLfeToBinaural( num_cpy_smpl_prev_frame = mcInput->binauralDelaySmp; num_cpy_smpl_cur_frame = frame_size - num_cpy_smpl_prev_frame; - assert( mcInput->binauralDelaySmp <= MAX_BIN_DELAY_SAMPLES ); + /* Assuming LFE should be delayed by less that the duration of one frame */ + assert( mcInput->binauralDelaySmp < frame_size ); /* Get delayed LFE signal from previous frame, apply gain and save in tmp buffer */ v_multc( mcInput->lfeDelayBuffer, gain, tmpLfeBuffer, num_cpy_smpl_prev_frame ); @@ -7659,13 +7409,15 @@ ivas_error IVAS_REND_SetIsmMetadataDelay( *-------------------------------------------------------------------*/ static ivas_error getSamplesInternal( - IVAS_REND_HANDLE hIvasRend, /* i/o: Renderer handle */ - IVAS_REND_AudioBuffer outAudio /* i/o: buffer for output audio */ + IVAS_REND_HANDLE hIvasRend, /* i/o: Renderer handle */ + IVAS_REND_AudioBuffer outAudio, /* i/o: buffer for output audio */ + IVAS_REND_BitstreamBuffer *hBits /*i/o: buffer for input/output bitstream. Needed in split rendering mode*/ ) { ivas_error error; int16_t numOutChannels; int16_t cldfb2tdSampleFact; + IVAS_REND_AudioBuffer outAudioOrig; /* Validate function arguments */ if ( hIvasRend == NULL || outAudio.data == NULL ) @@ -7725,21 +7477,34 @@ static ivas_error getSamplesInternal( } } - if ( ( error = IVAS_REND_GetNumOutChannels( hIvasRend, &numOutChannels ) ) != IVAS_ERR_OK ) + if ( ( error = IVAS_REND_NumOutChannels( hIvasRend, &numOutChannels ) ) != IVAS_ERR_OK ) { return error; } - if ( numOutChannels != outAudio.config.numChannels && - hIvasRend->outputConfig != IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED && - hIvasRend->outputConfig != IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM ) + if ( numOutChannels != outAudio.config.numChannels && hIvasRend->outputConfig != IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED && hIvasRend->outputConfig != IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM ) { return IVAS_ERR_WRONG_NUM_CHANNELS; } - /* Clear output buffer */ + /* Clear original output buffer */ set_zero( outAudio.data, outAudio.config.numChannels * outAudio.config.numSamplesPerChannel ); + outAudioOrig = outAudio; + /* Use internal buffer if outputting split rendering bitstream */ + if ( ( hIvasRend->outputConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED ) || + ( hIvasRend->outputConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM ) ) + { + int16_t num_poses_orig; + num_poses_orig = hIvasRend->splitRendWrapper->multiBinPoseData.num_poses; + outAudio = hIvasRend->splitRendEncBuffer; + ISAR_PRE_REND_GetMultiBinPoseData( &hIvasRend->hRendererConfig->split_rend_config, &hIvasRend->splitRendWrapper->multiBinPoseData, hIvasRend->headRotData.sr_pose_pred_axis ); + assert( num_poses_orig == hIvasRend->splitRendWrapper->multiBinPoseData.num_poses && "number of poses should not change dynamically" ); + + /* Clear output buffer for split rendering bitstream */ + set_zero( outAudio.data, outAudio.config.numChannels * outAudio.config.numSamplesPerChannel ); + } + if ( ( error = renderActiveInputsIsm( hIvasRend, outAudio ) ) != IVAS_ERR_OK ) { return error; @@ -7760,26 +7525,73 @@ static ivas_error getSamplesInternal( return error; } - return IVAS_ERR_OK; -} + if ( hIvasRend->outputConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_CODED || hIvasRend->outputConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM ) + { + ISAR_SPLIT_REND_BITS_DATA bits; + int16_t cldfb_in_flag; + float Cldfb_RealBuffer_Binaural[MAX_HEAD_ROT_POSES * BINAURAL_CHANNELS][CLDFB_NO_COL_MAX][CLDFB_NO_CHANNELS_MAX]; + float Cldfb_ImagBuffer_Binaural[MAX_HEAD_ROT_POSES * BINAURAL_CHANNELS][CLDFB_NO_COL_MAX][CLDFB_NO_CHANNELS_MAX]; + int16_t ch; + int16_t i, ro_md_flag; + float *tmpBinaural[MAX_HEAD_ROT_POSES * BINAURAL_CHANNELS], tmpBinaural_buff[MAX_HEAD_ROT_POSES * BINAURAL_CHANNELS][L_FRAME48k]; + for ( ch = 0; ch < MAX_OUTPUT_CHANNELS; ch++ ) + { + tmpBinaural[ch] = tmpBinaural_buff[ch]; + } -/*-------------------------------------------------------------------* - * IVAS_REND_GetSamples() - * - * - *-------------------------------------------------------------------*/ + if ( outAudio.config.is_cldfb == 1 ) + { + cldfb_in_flag = 1; + copyBufferToCLDFBarray( outAudio, Cldfb_RealBuffer_Binaural, Cldfb_ImagBuffer_Binaural ); + } + else + { + cldfb_in_flag = 0; + copyBufferTo2dArray( outAudio, tmpBinaural_buff ); + } -ivas_error IVAS_REND_GetSamples( - IVAS_REND_HANDLE hIvasRend, /* i/o: Renderer handle */ - IVAS_REND_AudioBuffer outAudio /* i/o: buffer for output audio */ -) -{ - ivas_error error; + /* Encode split rendering bitstream */ + convertBitsBufferToInternalBitsBuff( *hBits, &bits ); - if ( ( error = getSamplesInternal( hIvasRend, outAudio ) ) != IVAS_ERR_OK ) - { - return error; + ro_md_flag = 0; + for ( i = 0; i < RENDERER_MAX_ISM_INPUTS; ++i ) + { + if ( hIvasRend->inputsIsm[i].base.inConfig != IVAS_AUDIO_CONFIG_INVALID ) + { + ro_md_flag = 1; + break; + } + } + + if ( ( error = ISAR_PRE_REND_MultiBinToSplitBinaural( hIvasRend->splitRendWrapper, + hIvasRend->headRotData.headPositions[0], + hIvasRend->hRendererConfig->split_rend_config.splitRendBitRate, + hIvasRend->hRendererConfig->split_rend_config.codec, + hIvasRend->hRendererConfig->split_rend_config.isar_frame_size_ms, + hIvasRend->hRendererConfig->split_rend_config.codec_frame_size_ms, + &bits, + Cldfb_RealBuffer_Binaural, + Cldfb_ImagBuffer_Binaural, + ( const int16_t )( ( BINAURAL_MAXBANDS * hIvasRend->sampleRateOut ) / 48000 ), + tmpBinaural, + 1, + cldfb_in_flag, + ( hIvasRend->outputConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM ) ? 1 : 0, + ro_md_flag ) ) != IVAS_ERR_OK ) + { + return error; + } + + convertInternalBitsBuffToBitsBuffer( hBits, bits ); + + /* reset to outAudioOrig in case of PCM output */ + outAudio = outAudioOrig; + + if ( hIvasRend->outputConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM ) + { + accumulate2dArrayToBuffer( tmpBinaural_buff, &outAudio ); + } } if ( outAudio.config.is_cldfb == 0 ) @@ -7799,6 +7611,22 @@ ivas_error IVAS_REND_GetSamples( } +/*-------------------------------------------------------------------* + * IVAS_REND_GetSamples() + * + * + *-------------------------------------------------------------------*/ + +ivas_error IVAS_REND_GetSamples( + IVAS_REND_HANDLE hIvasRend, /* i/o: Renderer handle */ + IVAS_REND_AudioBuffer outAudio /* i/o: buffer for output audio */ +) +{ + + return getSamplesInternal( hIvasRend, outAudio, NULL ); +} + + /*-------------------------------------------------------------------* * IVAS_REND_GetSplitBinauralBitstream() * @@ -7811,121 +7639,23 @@ ivas_error IVAS_REND_GetSplitBinauralBitstream( IVAS_REND_BitstreamBuffer *hBits /* o : buffer for output bitstream */ ) { - ivas_error error; - int16_t ch; int16_t cldfb_in_flag; - int16_t i, ro_md_flag; - int16_t num_poses_orig; - float *tmpBinaural[MAX_HEAD_ROT_POSES * BINAURAL_CHANNELS], tmpBinaural_buff[MAX_HEAD_ROT_POSES * BINAURAL_CHANNELS][L_FRAME48k]; - float Cldfb_ImagBuffer_Binaural[MAX_HEAD_ROT_POSES * BINAURAL_CHANNELS][CLDFB_NO_COL_MAX][CLDFB_NO_CHANNELS_MAX]; - float Cldfb_RealBuffer_Binaural[MAX_HEAD_ROT_POSES * BINAURAL_CHANNELS][CLDFB_NO_COL_MAX][CLDFB_NO_CHANNELS_MAX]; - IVAS_REND_AudioBufferConfig *pSplitEncBufConfig; - ISAR_SPLIT_REND_CONFIG_HANDLE pSplitRendConfig; - ISAR_SPLIT_REND_BITS_DATA bits; - - for ( ch = 0; ch < MAX_HEAD_ROT_POSES * BINAURAL_CHANNELS; ch++ ) - { - tmpBinaural[ch] = tmpBinaural_buff[ch]; - } cldfb_in_flag = getCldfbRendFlag( hIvasRend, IVAS_REND_AUDIO_CONFIG_TYPE_UNKNOWN ); - pSplitEncBufConfig = &hIvasRend->splitRendEncBuffer.config; - pSplitRendConfig = &hIvasRend->hRendererConfig->split_rend_config; - - /* 0 DoF / No pose correction retains frame size */ - pSplitEncBufConfig->is_cldfb = cldfb_in_flag; - if ( pSplitRendConfig->dof == 0 || pSplitRendConfig->poseCorrectionMode == ISAR_SPLIT_REND_POSE_CORRECTION_MODE_NONE ) - { - pSplitEncBufConfig->numSamplesPerChannel = outAudio.config.numSamplesPerChannel; - } - /* Pose correction requires 20ms */ - else - { - pSplitEncBufConfig->numSamplesPerChannel = (int16_t) ( hIvasRend->sampleRateOut / FRAMES_PER_SEC ); - } - pSplitEncBufConfig->numSamplesPerChannel *= cldfb_in_flag ? 2 : 1; - - num_poses_orig = hIvasRend->splitRendWrapper->multiBinPoseData.num_poses; - ISAR_PRE_REND_GetMultiBinPoseData( pSplitRendConfig, - &hIvasRend->splitRendWrapper->multiBinPoseData, - hIvasRend->headRotData.sr_pose_pred_axis ); - assert( num_poses_orig == hIvasRend->splitRendWrapper->multiBinPoseData.num_poses && "number of poses should not change dynamically" ); - - /* hIvasRend->splitRendEncBuffer contains multi-pose data for BINAURAL_SPLIT_CODED output - outAudio used later for main pose BINAURAL_SPLIT_PCM output */ - if ( ( error = getSamplesInternal( hIvasRend, hIvasRend->splitRendEncBuffer ) ) != IVAS_ERR_OK ) + hIvasRend->splitRendEncBuffer.config.is_cldfb = cldfb_in_flag; + if ( hIvasRend->hRendererConfig->split_rend_config.dof == 0 || hIvasRend->hRendererConfig->split_rend_config.poseCorrectionMode == ISAR_SPLIT_REND_POSE_CORRECTION_MODE_NONE ) { - return error; - } - - /* copy outputs */ - if ( hIvasRend->splitRendEncBuffer.config.is_cldfb == 1 ) - { - cldfb_in_flag = 1; - copyBufferToCLDFBarray( hIvasRend->splitRendEncBuffer, Cldfb_RealBuffer_Binaural, Cldfb_ImagBuffer_Binaural ); + hIvasRend->splitRendEncBuffer.config.numSamplesPerChannel = outAudio.config.numSamplesPerChannel; } else { - cldfb_in_flag = 0; - copyBufferTo2dArray( hIvasRend->splitRendEncBuffer, tmpBinaural_buff ); + hIvasRend->splitRendEncBuffer.config.numSamplesPerChannel = (int16_t) ( hIvasRend->sampleRateOut / FRAMES_PER_SEC ); } + hIvasRend->splitRendEncBuffer.config.numSamplesPerChannel *= cldfb_in_flag ? 2 : 1; - /* Encode split rendering bitstream */ - convertBitsBufferToInternalBitsBuff( *hBits, &bits ); - - ro_md_flag = 0; - for ( i = 0; i < RENDERER_MAX_ISM_INPUTS; ++i ) - { - if ( hIvasRend->inputsIsm[i].base.inConfig != IVAS_AUDIO_CONFIG_INVALID ) - { - ro_md_flag = 1; - break; - } - } - - if ( ( error = ISAR_PRE_REND_MultiBinToSplitBinaural( hIvasRend->splitRendWrapper, - hIvasRend->headRotData.headPositions[0], - pSplitRendConfig->splitRendBitRate, - pSplitRendConfig->codec, - pSplitRendConfig->isar_frame_size_ms, - pSplitRendConfig->codec_frame_size_ms, - &bits, - Cldfb_RealBuffer_Binaural, - Cldfb_ImagBuffer_Binaural, - ( const int16_t )( ( BINAURAL_MAXBANDS * hIvasRend->sampleRateOut ) / 48000 ), - tmpBinaural, - 1, - cldfb_in_flag, - ( hIvasRend->outputConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM ) ? 1 : 0, - ro_md_flag ) ) != IVAS_ERR_OK ) - { - return error; - } - - convertInternalBitsBuffToBitsBuffer( hBits, bits ); - - /* copy over first pose data to outAudio */ - if ( hIvasRend->outputConfig == IVAS_AUDIO_CONFIG_BINAURAL_SPLIT_PCM ) - { - /* set outAudio to zero - getSamplesInternal only cleared splitRendEncBuffer */ - set_zero( outAudio.data, outAudio.config.numChannels * outAudio.config.numSamplesPerChannel ); - accumulate2dArrayToBuffer( tmpBinaural_buff, &outAudio ); - } - - if ( outAudio.config.is_cldfb == 0 ) - { -#ifndef DISABLE_LIMITER -#ifdef DEBUGGING - hIvasRend->numClipping += -#endif - limitRendererOutput( hIvasRend->hLimiter, outAudio.data, outAudio.config.numSamplesPerChannel, IVAS_LIMITER_THRESHOLD ); -#endif - } - - /* update global cominbed orientation start index */ - ivas_combined_orientation_update_start_index( hIvasRend->hCombinedOrientationData, outAudio.config.numSamplesPerChannel ); - - return IVAS_ERR_OK; + /* hIvasRend->splitRendEncBuffer used for BINAURAL_SPLIT_CODED output + outAudio used for BINAURAL_SPLIT_PCM output */ + return getSamplesInternal( hIvasRend, outAudio, hBits ); } diff --git a/lib_rend/lib_rend.h b/lib_rend/lib_rend.h index ac9516521d0486dcc9224b2f3f6af10e918b81fa..194bca0165ca3f22a16af67ac4a7b9c795d8d91b 100644 --- a/lib_rend/lib_rend.h +++ b/lib_rend/lib_rend.h @@ -114,15 +114,15 @@ typedef enum _IVAS_REND_COMPLEXITY_LEVEL /* Functions to be called before rendering */ ivas_error IVAS_REND_Open( - IVAS_REND_HANDLE *phIvasRend, /* i/o: Pointer to renderer handle */ - const int32_t outputSampleRate, /* i : output sampling rate */ - const IVAS_AUDIO_CONFIG outConfig, /* i : output audio config */ - const bool asHrtfBinary, /* i : load hrtf binary file */ - const int16_t nonDiegeticPan, /* i : non-diegetic object flag */ - const float nonDiegeticPanGain, /* i : non-diegetic panning gain */ - const int16_t Opt_Headrotation, /* i : indicates whether head-rotation is used */ - const int16_t Opt_ExternalOrientation, /* i : indicates whether external orientations are used */ - const int16_t num_subframes /* i : number of subframes */ + IVAS_REND_HANDLE *phIvasRend, /* i/o: Pointer to renderer handle */ + const int32_t outputSampleRate, /* i : output sampling rate */ + const IVAS_AUDIO_CONFIG outConfig, /* i : output audio config */ + const bool asHrtfBinary, /* i : load hrtf binary file */ + const int16_t nonDiegeticPan, /* i : non-diegetic object flag */ + const float nonDiegeticPanGain, /* i : non-diegetic panning gain */ + const int16_t Opt_Headrotation, /* i : indicates whether head-rotation is used */ + const int16_t Opt_ExternalOrientation, /* i : indicates whether external orientations are used */ + const int16_t num_subframes /* i : number of subframes */ ); /* Note: this will reset custom LFE routings set for any MC input */ @@ -134,7 +134,7 @@ ivas_error IVAS_REND_ConfigureCustomOutputLoudspeakerLayout( /* Functions to be called before/during rendering */ -ivas_error IVAS_REND_GetNumOutChannels( +ivas_error IVAS_REND_NumOutChannels( IVAS_REND_CONST_HANDLE hIvasRend, /* i : Renderer handle */ int16_t *numOutChannels /* o : number of output channels */ ); @@ -212,17 +212,16 @@ ivas_error IVAS_REND_GetHrtfParamBinHandle( ); ivas_error IVAS_REND_GetHrtfStatisticsHandle( - IVAS_REND_HANDLE hIvasRend, /* i/o: IVAS renderer handle */ - IVAS_DEC_HRTF_STATISTICS_HANDLE **hHrtfStatistics /* o : HRTF statistics handle */ + IVAS_REND_HANDLE hIvasRend, /* i/o: IVAS renderer handle */ + IVAS_DEC_HRTF_STATISTICS_HANDLE **hHrtfStatistics /* o : HRTF statistics handle */ ); /* Functions to be called during rendering */ ivas_error IVAS_REND_FeedInputAudio( - IVAS_REND_HANDLE hIvasRend, /* i/o: Renderer handle */ - const IVAS_REND_InputId inputId, /* i : ID of the input */ - const IVAS_REND_ReadOnlyAudioBuffer inputAudio, /* i : buffer with input audio */ - const bool flushInputs /* i : flush input audio */ + IVAS_REND_HANDLE hIvasRend, /* i/o: Renderer handle */ + const IVAS_REND_InputId inputId, /* i : ID of the input */ + const IVAS_REND_ReadOnlyAudioBuffer inputAudio /* i : buffer with input audio */ ); ivas_error IVAS_REND_FeedInputObjectMetadata( @@ -383,7 +382,7 @@ ivas_error IVAS_REND_GetSamples( /* Functions to be called after rendering */ void IVAS_REND_Close( - IVAS_REND_HANDLE *phIvasRend /* i/o: Pointer to renderer handle */ + IVAS_REND_HANDLE* phIvasRend /* i/o: Pointer to renderer handle */ ); diff --git a/lib_util/mime_io.c b/lib_util/mime_io.c index 1ecd603b32a752b4f819a3636bdedfd1179c4209..ee2a9c12a5695cb469962508449e0101fcc4794f 100644 --- a/lib_util/mime_io.c +++ b/lib_util/mime_io.c @@ -305,9 +305,7 @@ MIME_ERROR MIME_Writer_Close( } -static bool readByte( - FILE *file, - uint8_t *value ) +static bool readByte( FILE *file, uint8_t *value ) { if ( fread( value, 1, 1, file ) != 1U ) { @@ -316,13 +314,14 @@ static bool readByte( return true; } -static bool readLong( - FILE *file, - uint16_t *value ) +static bool readLong( FILE *file, uint16_t *value ) { char buffer[4] = { 0 }; - +#ifdef CODE_IMPROVEMENTS if ( fread( buffer, 1, 4, file ) != 1U ) +#else + if ( fread( buffer, 4, 1, file ) != 1U ) +#endif { return false; } @@ -347,10 +346,7 @@ static bool readLong( * to the serial bitstream. *-------------------------------------------------------------------*/ -static void byteToSerialReordered( - uint8_t byte, - uint16_t *serial, - const int16_t *sort_indices ) +static void byteToSerialReordered( uint8_t byte, uint16_t *serial, const int16_t *sort_indices ) { for ( uint32_t i = 0; i < 8; ++i ) { @@ -364,11 +360,8 @@ static void byteToSerialReordered( byte <<= 1; } - - return; } - /*-------------------------------------------------------------------* * byteToSerial() * @@ -376,25 +369,18 @@ static void byteToSerialReordered( * to the given serial bitstream array. *-------------------------------------------------------------------*/ -static void byteToSerial( - uint8_t byte, - uint16_t *serial ) +static void byteToSerial( uint8_t byte, uint16_t *serial ) { const int16_t indices[8] = { 0, 1, 2, 3, 4, 5, 6, 7 }; - byteToSerialReordered( byte, serial, indices ); - - return; } - -static MIME_ERROR readHeader( - MIME_HANDLE hMIME ) +static MIME_ERROR readHeader( MIME_HANDLE hMIME ) { const char id[] = "#!EVS_MC1.0\n"; const uint16_t num_char_id = sizeof( id ) - 1; - char buffer[sizeof( id )] = { 0 }; + char buffer[sizeof( id )] = { 0 }; if ( fread( buffer, sizeof( char ), num_char_id, hMIME->file ) != num_char_id ) { return MIME_READ_ERROR; @@ -412,17 +398,13 @@ static MIME_ERROR readHeader( return MIME_NO_ERROR; } - - /*-------------------------------------------------------------------* * MIME_Reader_Open_filename() * * Open MIME reader *-------------------------------------------------------------------*/ -MIME_ERROR MIME_Reader_Open_filename( - MIME_HANDLE *phMIME, - const char *filename ) +MIME_ERROR MIME_Reader_Open_filename( MIME_HANDLE *phMIME, const char *filename ) { MIME_ERROR error = MIME_NO_ERROR; @@ -458,8 +440,7 @@ MIME_ERROR MIME_Reader_Open_filename( * Rewind currently opened file to beginning *-------------------------------------------------------------------*/ -MIME_ERROR MIME_Reader_Rewind( - MIME_HANDLE hMIME ) +MIME_ERROR MIME_Reader_Rewind( MIME_HANDLE hMIME ) { if ( !hMIME || !hMIME->file ) { @@ -474,13 +455,7 @@ MIME_ERROR MIME_Reader_Rewind( return MIME_NO_ERROR; } - -static MIME_ERROR readEvsFrame( - FILE *file, - uint8_t ToC, - uint16_t *serial, - int16_t *num_bits, - int16_t *bfi ) +static MIME_ERROR readEvsFrame( FILE *file, uint8_t ToC, uint16_t *serial, int16_t *num_bits, int16_t *bfi ) { switch ( ToC & 0x0f ) { @@ -549,13 +524,7 @@ static MIME_ERROR readEvsFrame( return MIME_NO_ERROR; } - -static MIME_ERROR readAmrWbFrame( - FILE *file, - uint8_t ToC, - uint16_t *serial, - int16_t *num_bits, - int16_t *bfi ) +static MIME_ERROR readAmrWbFrame( FILE *file, uint8_t ToC, uint16_t *serial, int16_t *num_bits, int16_t *bfi ) { const uint8_t mode = ToC & 0x0f; @@ -626,18 +595,12 @@ static MIME_ERROR readAmrWbFrame( return MIME_NO_ERROR; } - /*-------------------------------------------------------------------* * MIME_ReadFrame_short() * * Read MIME frame to serial bitstream *-------------------------------------------------------------------*/ - -MIME_ERROR MIME_ReadFrame_short( - MIME_HANDLE hMIME, - uint16_t *serial, - int16_t *num_bits, - int16_t *bfi ) +MIME_ERROR MIME_ReadFrame_short( MIME_HANDLE hMIME, uint16_t *serial, int16_t *num_bits, int16_t *bfi ) { if ( !hMIME ) { @@ -674,16 +637,12 @@ MIME_ERROR MIME_ReadFrame_short( return MIME_NO_ERROR; } - - /*-------------------------------------------------------------------* * MIME_Reader_Close() * * Close MIME reader *-------------------------------------------------------------------*/ - -MIME_ERROR MIME_Reader_Close( - MIME_HANDLE *phMIME ) +MIME_ERROR MIME_Reader_Close( MIME_HANDLE *phMIME ) { if ( phMIME == NULL || *phMIME == NULL ) { diff --git a/lib_util/rtpdump.c b/lib_util/rtpdump.c index 9b25633a9385f57d14922a659a9bfe932a5dd1d4..ac143bb8f622da3759734c8e9e693d3d747595b2 100644 --- a/lib_util/rtpdump.c +++ b/lib_util/rtpdump.c @@ -80,7 +80,11 @@ static unsigned char *parseByte( unsigned char *buffer, unsigned char *value ) static int readLong( FILE *file, unsigned int *value ) { char buffer[4] = { 0 }; +#ifdef CODE_IMPROVEMENTS if ( fread( buffer, 1, 4, file ) != 1U ) +#else + if ( fread( buffer, 4, 1, file ) != 1U ) +#endif { return -1; } diff --git a/lib_util/tinywavein_c.h b/lib_util/tinywavein_c.h index 1ff6f26bb78438b2fbb835e483f99c1d46128dce..179c676a81b274098fabbe5050c2c977572c82ec 100644 --- a/lib_util/tinywavein_c.h +++ b/lib_util/tinywavein_c.h @@ -54,14 +54,22 @@ #define __TWI_SUCCESS ( 0 ) #define __TWI_ERROR ( -1 ) +#ifdef CODE_IMPROVEMENTS typedef struct tinyWaveInHandle +#else +typedef struct __tinyWaveInHandle +#endif { FILE *theFile; fpos_t dataChunkPos; uint32_t position; uint32_t length; uint32_t bps; +#ifdef CODE_IMPROVEMENTS } tinyWaveInHandle, WAVEFILEIN; +#else +} __tinyWaveInHandle, WAVEFILEIN; +#endif typedef struct { diff --git a/lib_util/tinywaveout_c.h b/lib_util/tinywaveout_c.h index 190bc5eb50ccf2cd1904dec576fe1af9d423e585..e7d568dc83c48adf46dc0fcbb3dff7f20fdcaa5c 100644 --- a/lib_util/tinywaveout_c.h +++ b/lib_util/tinywaveout_c.h @@ -70,15 +70,27 @@ #endif #endif +#ifdef CODE_IMPROVEMENTS typedef struct tinyWaveOutHeader +#else +typedef struct __tinyWaveOutHeader +#endif { uint32_t riffType; /* 'RIFF' */ uint32_t riffSize; /* file size */ uint32_t waveType; /* 'WAVE' */ +#ifdef CODE_IMPROVEMENTS } tinyWaveOutHeader; +#else +} __tinyWaveOutHeader; +#endif +#ifdef CODE_IMPROVEMENTS typedef struct tinyWaveOutFmtChunk +#else +typedef struct __tinyWaveOutFmtChunk +#endif { uint32_t formatType; uint32_t formatSize; @@ -91,15 +103,31 @@ typedef struct tinyWaveOutFmtChunk uint16_t bitsPerSample; /* wav fmt ext hdr here */ +#ifdef CODE_IMPROVEMENTS } tinyWaveOutFmtChunk; +#else +} __tinyWaveOutFmtChunk; +#endif +#ifdef CODE_IMPROVEMENTS +typedef struct tinyWaveOutDataChunk +#else typedef struct tinyWaveOutDataChunk +#endif { uint32_t dataType; uint32_t dataSize; +#ifdef CODE_IMPROVEMENTS } tinyWaveOutDataChunk; +#else +} __tinyWaveOutDataChunk; +#endif +#ifdef CODE_IMPROVEMENTS typedef struct tinyWaveOutHandle +#else +typedef struct __tinyWaveOutHandle +#endif { FILE *theFile; uint32_t dataSize; @@ -108,7 +136,11 @@ typedef struct tinyWaveOutHandle uint32_t dataChunkOffset; uint32_t bps; uint32_t clipCount; +#ifdef CODE_IMPROVEMENTS } tinyWaveOutHandle, WAVEFILEOUT; +#else +} __tinyWaveOutHandle, WAVEFILEOUT; +#endif /*--- local protos --------------------------------------------------*/ static __inline uint32_t BigEndian32( char, char, char, char ); @@ -131,9 +163,15 @@ static WAVEFILEOUT *CreateBWF( /* ,const uint32_t writeWaveExt */ ) { WAVEFILEOUT *self; +#ifdef CODE_IMPROVEMENTS tinyWaveOutHeader whdr; tinyWaveOutFmtChunk wfch; tinyWaveOutDataChunk wdch; +#else + __tinyWaveOutHeader whdr; + __tinyWaveOutFmtChunk wfch; + __tinyWaveOutDataChunk wdch; +#endif uint32_t blockAlignment = 0; uint32_t ByteCnt = 0; /* Byte counter for fwrite */ diff --git a/readme.txt b/readme.txt index 8e471c429bb5a677a6671b17057ac8782e673a4f..608ebe56c0d3a58e98c9a4d8dc466b041b50b44c 100644 --- a/readme.txt +++ b/readme.txt @@ -278,8 +278,7 @@ Options: The decoder may read rtpdump files containing TS26.445 Annex A.2.2 EVS RTP Payload Format. The SDP parameter hf_only is required. Reading RFC4867 AMR/AMR-WB RTP payload format is not supported. --Tracefile TF : VoIP mode: Generate trace file named TF. Requires -no_delay_cmp to - be enabled so that trace contents remain in sync with audio output. +-Tracefile TF : VoIP mode: Generate trace file named TF -fec_cfg_file : Optimal channel aware configuration computed by the JBM as described in Section 6.3.1 of TS26.448. The output is written into a .txt file. Each line contains the FER indicator diff --git a/scripts/config/self_test.prm b/scripts/config/self_test.prm index 96084eed74e29092139b30ec6c6330f64f091889..91f8c5e88daaf9bf96d0e25687bf0f0247b0fb99 100644 --- a/scripts/config/self_test.prm +++ b/scripts/config/self_test.prm @@ -781,10 +781,6 @@ eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g1 ../IVAS_cod -sba 3 128000 32 testv/stv3OA32c.wav bit ../IVAS_dec -t testv/headrot.csv -exof testv/headrot_case00_3000_q_combinedRotationTest.csv -otr avg BINAURAL_ROOM_IR 32 bit testv/stv3OA32c.pcm_SBA_128000_32-32_Binaural_room_Headrot_EXOF_OtrAvg.tst -// SBA at 128 kbps, 48kHz in, 48kHz out, HOA3 out, mono detector test -../IVAS_cod -sba 3 128000 48 testv/stv3OA48c_mono.wav bit -../IVAS_dec HOA3 48 bit testv/stv3OA48c_mono.pcm_SBA_128000_48-48_HOA3.tst - // SBA at 192 kbps, 48kHz in, 48kHz out, HOA2 out, random FER at 5% ../IVAS_cod -sba 3 192000 48 testv/stv3OA48c.wav bit eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g192 bit_error @@ -1586,143 +1582,143 @@ eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g1 // stereo at 32 kbps, 48 kHz in, 32 kHz out, DTX on, JBM Prof 0 ../IVAS_cod -stereo -dtx 32000 48 testv/stvST48n.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_0.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP STEREO 32 netsimoutput testv/stvST48n.wav_stereo_32000_48-32_DTX_JBM0.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP STEREO 32 netsimoutput testv/stvST48n.wav_stereo_32000_48-32_DTX_JBM0.tst // 4 ISm with metadata at 64 kbps, 48 kHz in, 48 kHz out, DTX on, EXT out, JBM Prof 0 ../IVAS_cod -dtx -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 64000 48 testv/stv4ISM48n.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_0.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/stv4ISM48s.wav_64000_48-48_DTX_EXT_JBM0.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/stv4ISM48s.wav_64000_48-48_DTX_EXT_JBM0.tst // MASA 1dir 1TC at 13.2 kbps, 48kHz in, 32kHz out, DTX on, EXT out, JBM Prof 0 ../IVAS_cod -dtx -masa 1 testv/stv1MASA1TC48n.met 13200 48 testv/stv1MASA1TC48n.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_0.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP EXT 32 netsimoutput testv/stv1MASA1TC48n.wav_13200_48-32_DTX_EXT_JBM0.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP EXT 32 netsimoutput testv/stv1MASA1TC48n.wav_13200_48-32_DTX_EXT_JBM0.tst // SBA at 24.4 kbps, 32kHz in, 32kHz out, DTX on, BINAURAL out, JBM 0 ../IVAS_cod -sba 3 -dtx 24400 32 testv/stv3OA32c.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_0.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 32 netsimoutput testv/stv3OA32c.wav_SBA_24400_32-32_DTX_Binaural_JBM0.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 32 netsimoutput testv/stv3OA32c.wav_SBA_24400_32-32_DTX_Binaural_JBM0.tst // stereo at 48 kbps, 16 kHz in, 16 kHz out, DTX on, JBM Prof 5 ../IVAS_cod -stereo -dtx 48000 16 testv/stvST16n.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP STEREO 16 netsimoutput testv/stvST16n.wav_stereo_48000_16-16_DTX_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP STEREO 16 netsimoutput testv/stvST16n.wav_stereo_48000_16-16_DTX_JBM5.tst // 4 ISm with metadata at 32 kbps, 48 kHz in, 48 kHz out, FOA out, JBM Prof 5 ../IVAS_cod -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv 32000 48 testv/stv4ISM48s.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stv4ISM48s.wav_32000_48-48_FOA_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stv4ISM48s.wav_32000_48-48_FOA_JBM5.tst // 3 ISM with metadata bitrate switching from 48 kbps to 32 kbps, 48 kHz in, 32 kHz out, DTX, BINAURAL_ROOM_IR out, JBM Prof 5 ../IVAS_cod -dtx -ism 3 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv ../scripts/switchPaths/sw_48-32k_10fr.bin 48 testv/stv3ISM48s.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL_ROOM_IR 32 netsimoutput testv/stv3ISM48s.wav_sw_48-32_DTX_BINAURAL_ROOM_IR_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL_ROOM_IR 32 netsimoutput testv/stv3ISM48s.wav_sw_48-32_DTX_BINAURAL_ROOM_IR_JBM5.tst // SBA at 80 kbps, 32kHz in, 32kHz out, HOA3 out, JBM Prof 5 ../IVAS_cod -sba 3 80000 32 testv/stv3OA32c.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP HOA3 32 netsimoutput testv/stv3OA32c.wav_SBA_80000_32-32_HOA3_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP HOA3 32 netsimoutput testv/stv3OA32c.wav_SBA_80000_32-32_HOA3_JBM5.tst // SBA at 13.2 kbps, 48kHz in, 48kHz out, BINAURAL out, JBM Prof 5 ../IVAS_cod -sba 1 13200 48 testv/stvFOA48c.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/stvFOA32c.wav_SBA_13200_48-48_BINAURAL_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/stvFOA32c.wav_SBA_13200_48-48_BINAURAL_JBM5.tst // Multi-channel 5_1 at 384 kbps, 48kHz in, 48kHz out, 7_1_4 out, JBM Prof 5 ../IVAS_cod -mc 5_1 384000 48 testv/stv51MC48c.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP 7_1_4 48 netsimoutput testv/stv51MC48c.wav_MC51_384000_48-48_7_1_4_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP 7_1_4 48 netsimoutput testv/stv51MC48c.wav_MC51_384000_48-48_7_1_4_JBM5.tst // Multi-channel 7_1_4 at 256 kbps, 48kHz in, 48kHz out, 7_1_4 out, JBM Prof 5 ../IVAS_cod -mc 7_1_4 256000 48 testv/stv714MC48c.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP 7_1_4 48 netsimoutput testv/stv714MC48c.wav_MC714_256000_48-48_7_1_4_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP 7_1_4 48 netsimoutput testv/stv714MC48c.wav_MC714_256000_48-48_7_1_4_JBM5.tst // Multi-channel 7_1 bitrate switching, 48kHz in, 32kHz out, BINAURAL_ROOM_REVERB out, HR, JBM Prof 5 ../IVAS_cod -mc 7_1 ../scripts/switchPaths/sw_24k4_384k.bin 48 testv/stv71MC48c.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -T testv/headrot.csv -no_delay_cmp -Tracefile tracefile_dec -VOIP binaural_room_reverb 32 netsimoutput testv/stv71MC48c.wav_MC71_brsw_48-32_BinauralRoomReverb_Headrot_JBM5.tst +../IVAS_dec -T testv/headrot.csv -Tracefile tracefile_dec -VOIP binaural_room_reverb 32 netsimoutput testv/stv71MC48c.wav_MC71_brsw_48-32_BinauralRoomReverb_Headrot_JBM5.tst // Multi-channel 7_1_4 bitrate switching, 48kHz in, 48kHz out, BINAURAL out, HR, JBM Prof 5 ../IVAS_cod -mc 7_1_4 ../scripts/switchPaths/sw_24k4_384k.bin 48 testv/stv714MC48c.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -T testv/headrot.csv -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/stv714MC48c.wav_MC714_brsw_48-48_BINAURAL_Headrot_JBM5.tst +../IVAS_dec -T testv/headrot.csv -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/stv714MC48c.wav_MC714_brsw_48-48_BINAURAL_Headrot_JBM5.tst // MASA 1dir 1TC bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 32kHz out, 5_1 out, JBM Prof 5 ../IVAS_cod -masa 1 testv/stv1MASA1TC48n.met ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/stv1MASA1TC48n.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP 5_1 32 netsimoutput testv/stv1MASA1TC48n.wav_sw_48-32_5_1_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP 5_1 32 netsimoutput testv/stv1MASA1TC48n.wav_sw_48-32_5_1_JBM5.tst // MASA 1dir 1TC bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, STEREO out, JBM Prof 5 ../IVAS_cod -masa 1 testv/stv1MASA1TC48n.met ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/stv1MASA1TC48n.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP STEREO 48 netsimoutput testv/stv1MASA1TC48n.wav_sw_48-48_STEREO_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP STEREO 48 netsimoutput testv/stv1MASA1TC48n.wav_sw_48-48_STEREO_JBM5.tst // MASA 1dir 1TC bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, FOA out, JBM Prof 5 ../IVAS_cod -masa 1 testv/stv1MASA1TC48n.met ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/stv1MASA1TC48n.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stv1MASA1TC48n.wav_sw_48-48_FOA_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stv1MASA1TC48n.wav_sw_48-48_FOA_JBM5.tst // MASA 1dir 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 16kHz out, BINAURAL out, JBM Prof 5 ../IVAS_cod -masa 2 testv/stv1MASA2TC48n.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv1MASA2TC48n.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 16 netsimoutput testv/stv1MASA2TC48n.wav_sw_48-16_BINAURAL_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 16 netsimoutput testv/stv1MASA2TC48n.wav_sw_48-16_BINAURAL_JBM5.tst // MASA 1dir 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 32kHz out, MONO out, JBM Prof 5 ../IVAS_cod -masa 2 testv/stv1MASA2TC48n.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv1MASA2TC48n.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP MONO 32 netsimoutput testv/stv1MASA2TC48n.wav_sw_48-32_MONO_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP MONO 32 netsimoutput testv/stv1MASA2TC48n.wav_sw_48-32_MONO_JBM5.tst // MASA 2dir 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, EXT out, JBM Prof 5 ../IVAS_cod -masa 2 testv/stv2MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv2MASA2TC48c.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/stv2MASA2TC48c.wav_sw_48-48_EXT_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/stv2MASA2TC48c.wav_sw_48-48_EXT_JBM5.tst // MASA 2dir 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 16kHz out, BINAURAL out, JBM Prof 5 ../IVAS_cod -masa 2 testv/stv2MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stv2MASA2TC48c.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 16 netsimoutput testv/stv2MASA2TC48c.wav_sw_48-16_BINAURAL_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 16 netsimoutput testv/stv2MASA2TC48c.wav_sw_48-16_BINAURAL_JBM5.tst // OMASA 2Dir2TC 1ISM at br sw techs 13.2 to 512 kbps start 24.4 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_IR out, JBM Prof 5 ../IVAS_cod -ism_masa 1 2 testv/stvISM1.csv testv/stv2MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_24k4_omasatechs_1ism.bin 48 testv/stvOMASA_1ISM_2MASA2TC48c.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL_ROOM_IR 48 netsimoutput testv/stvOMASA_1ISM_2MASA2TC48c.wav_BINAURAL_ROOM_IR_sw_48-48_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL_ROOM_IR 48 netsimoutput testv/stvOMASA_1ISM_2MASA2TC48c.wav_BINAURAL_ROOM_IR_sw_48-48_JBM5.tst // OMASA 2Dir2TC 2ISM at br sw techs 13.2 to 512 kbps start 48 kbps, 48kHz in, 48kHz out, 7.1 out, JBM Prof 5 ../IVAS_cod -ism_masa 2 2 testv/stvISM1.csv NULL testv/stv2MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_48k_omasatechs_2ism.bin 48 testv/stvOMASA_2ISM_2MASA2TC48c.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP 7_1 48 netsimoutput testv/stvOMASA_2ISM_2MASA2TC48c.wav_7_1_sw_48-48_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP 7_1 48 netsimoutput testv/stvOMASA_2ISM_2MASA2TC48c.wav_7_1_sw_48-48_JBM5.tst // OMASA 2Dir2TC 3ISM at br sw techs 13.2 to 512 kbps start 160 kbps, 48kHz in, 48kHz out, MONO out, JBM Prof 5 ../IVAS_cod -ism_masa 3 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stv2MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_160k_omasatechs_3ism.bin 48 testv/stvOMASA_3ISM_2MASA2TC48c.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP MONO 48 netsimoutput testv/stvOMASA_3ISM_2MASA2TC48c.wav_MONO_sw_48-48_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP MONO 48 netsimoutput testv/stvOMASA_3ISM_2MASA2TC48c.wav_MONO_sw_48-48_JBM5.tst // OMASA 2Dir1TC 3ISM at br sw techs 13.2 to 512 kbps start 48 kbps, 48kHz in, 32kHz out, STEREO out, JBM Prof 5 ../IVAS_cod -ism_masa 3 1 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stv2MASA1TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_48k_omasatechs_3ism.bin 48 testv/stvOMASA_3ISM_2MASA1TC48c.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP STEREO 32 netsimoutput testv/stvOMASA_3ISM_2MASA1TC48c.wav_STEREO_sw_48-32_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP STEREO 32 netsimoutput testv/stvOMASA_3ISM_2MASA1TC48c.wav_STEREO_sw_48-32_JBM5.tst // OMASA 1Dir2TC 3ISM at br sw techs 13.2 to 512 kbps start 24.4 kbps, 32kHz in, 48kHz out, 5.1.2 out, JBM Prof 5 ../IVAS_cod -ism_masa 3 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stv1MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_24k4_omasatechs_3ism.bin 32 testv/stvOMASA_3ISM_1MASA2TC32c.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP 5_1_2 48 netsimoutput testv/stvOMASA_3ISM_1MASA2TC32c.wav_5_1_2_sw_32-48_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP 5_1_2 48 netsimoutput testv/stvOMASA_3ISM_1MASA2TC32c.wav_5_1_2_sw_32-48_JBM5.tst // OMASA 1Dir1TC 4ISM at br sw techs 13.2 to 512 kbps start 32 kbps, 48kHz in, 48kHz out, BINAURAL out, JBM Prof 5 ../IVAS_cod -ism_masa 4 1 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv testv/stv1MASA1TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_32k_omasatechs_4ism.bin 48 testv/stvOMASA_4ISM_1MASA1TC48c.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/stvOMASA_4ISM_1MASA1TC48c.wav_BINAURAL_sw_48-48_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/stvOMASA_4ISM_1MASA1TC48c.wav_BINAURAL_sw_48-48_JBM5.tst // OMASA 1Dir2TC 4ISM at br sw techs 13.2 to 512 kbps start 80 kbps, 48kHz in, 48kHz out, FOA out, JBM Prof 5 ../IVAS_cod -ism_masa 4 2 NULL testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv testv/stv1MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_80k_omasatechs_4ism.bin 48 testv/stvOMASA_4ISM_1MASA2TC48c.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stvOMASA_4ISM_1MASA2TC48c.wav_FOA_sw_48-48_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stvOMASA_4ISM_1MASA2TC48c.wav_FOA_sw_48-48_JBM5.tst // OMASA 2Dir2TC 4ISM at 256 kbps, 48kHz in, 48kHz out, EXT out, JBM Prof 5 ../IVAS_cod -ism_masa 4 2 testv/stvISM1.csv testv/stvISM2.csv NULL testv/stvISM4.csv testv/stv2MASA2TC48c.met 256000 48 testv/stvOMASA_4ISM_2MASA2TC48c.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/stvOMASA_4ISM_2MASA2TC48c.wav_EXT_256000_48-48_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/stvOMASA_4ISM_2MASA2TC48c.wav_EXT_256000_48-48_JBM5.tst // OMASA 1Dir1TC 4ISM 48 kbps 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out custom configuration ../IVAS_cod -ism_masa 4 1 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv testv/stv1MASA1TC48c.met 48000 48 testv/stvOMASA_4ISM_1MASA1TC48c.wav bit @@ -1997,7 +1993,7 @@ eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_10pct.g // OSBA 2OA 2ISM bitrate switching, 32kHz in, 48kHz out, BINAURAL_ROOM_REVERB out, JBM Prof 5 ../IVAS_cod -ism_sba 2 2 testv/stvISM1.csv testv/stvISM2.csv ../scripts/switchPaths/sw_24k4_256k.bin 32 testv/stvOSBA_2ISM_2OA32c.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL_ROOM_REVERB 48 netsimoutput testv/stvOSBA_2ISM_2OA32c.wav_BINAURAL_brsw_32-48_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL_ROOM_REVERB 48 netsimoutput testv/stvOSBA_2ISM_2OA32c.wav_BINAURAL_brsw_32-48_JBM5.tst // OMASA 2Dir2TC 4ISM at 80 kbps, 48kHz in, 48kHz out, BINAURAL out, default object editing, 1SEP-PARAM @@ -2007,12 +2003,12 @@ networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit // OMASA 2Dir2TC 4ISM at 256 kbps, 48kHz in, 48kHz out, BINAURAL out, object editing, JBM Prof 5, DISC ../IVAS_cod -ism_masa 4 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv testv/stv2MASA2TC48c.met 256000 48 testv/stvOMASA_4ISM_2MASA2TC48c.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/stvOMASA_4ISM_2MASA2TC48c.wav_BINAURAL_256000_48-48_OE_JBM5.tst +../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/stvOMASA_4ISM_2MASA2TC48c.wav_BINAURAL_256000_48-48_OE_JBM5.tst // OMASA 2Dir2TC 2ISM at 96 kbps, 48kHz in, 48kHz out, FOA out, object editing, JBM Prof 5, DISC ../IVAS_cod -ism_masa 2 2 testv/stvISM1.csv testv/stvISM2.csv testv/stv2MASA2TC48c.met 96000 48 testv/stvOMASA_2ISM_2MASA2TC48c.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stvOMASA_2ISM_2MASA2TC48c.wav_FOA_96000_48-48_OE_JBM5.tst +../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stvOMASA_2ISM_2MASA2TC48c.wav_FOA_96000_48-48_OE_JBM5.tst // OMASA 2Dir2TC 2ISM br sw techs 13.2 to 512 kbps start 48 kbps, 48kHz in, 48kHz out, BINAURAL out, object editing ../IVAS_cod -ism_masa 2 2 testv/stvISM1.csv testv/stvISM2.csv testv/stv2MASA2TC48c.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_48k_omasatechs_2ism.bin 48 testv/stvOMASA_2ISM_2MASA2TC48c.wav bit @@ -2025,7 +2021,7 @@ networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit // OSBA 2OA 3ISM at 128 kbps, 48kHz in, 48kHz out, FOA out, object editing, JBM Prof 5, DISC ../IVAS_cod -ism_sba 3 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv 128000 48 testv/stvOSBA_3ISM_2OA48c.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stvOSBA_3ISM_2OA48c.wav_FOA_128000_48-48_OE_JBM5.tst +../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stvOSBA_3ISM_2OA48c.wav_FOA_128000_48-48_OE_JBM5.tst // OSBA 2OA 3ISM at bitrate switching 13.2 to 512 kbps, 48kHz in, 48kHz out, BINAURAL out, object editing ../IVAS_cod -ism_sba 3 2 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/stvOSBA_3ISM_2OA48c.wav bit @@ -2043,12 +2039,12 @@ eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g1 // 3 ISM with metadata at 24.4 kbps, 48 kHz in, 48 kHz out, FOA out, object editing, JBM Prof 5, PARAM_ISM ../IVAS_cod -ism 3 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv 24400 48 testv/stv3ISM48s.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stv3ISM48s.wav_24400_48-48_FOA_OE_JBM5.tst +../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stv3ISM48s.wav_24400_48-48_FOA_OE_JBM5.tst // 3 ISM with metadata at 384 kbps, 48 kHz in, 48 kHz out, FOA out, object editing, JBM Prof 5, DISC ../IVAS_cod -ism 3 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv 384000 48 testv/stv3ISM48s.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -obj_edit NULL -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stv3ISM48s.wav_384000_48-48_FOA_OE_JBM5.tst +../IVAS_dec -obj_edit NULL -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/stv3ISM48s.wav_384000_48-48_FOA_OE_JBM5.tst // 4 ISM with metadata bitrate switching from 32 kbps to 48 kbps, 48 kHz in, 48 kHz out, BINAURAL_ROOM_IR out, object editing ../IVAS_cod -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv ../scripts/switchPaths/sw_32-48k_10fr.bin 48 testv/stv4ISM48s.wav bit @@ -2057,4 +2053,4 @@ networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit // 4 ISM with metadata bitrate switching from 48 kbps to 32 kbps, 48 kHz in, 48 kHz out, BINAURAL out, object editing, JBM Prof 5 ../IVAS_cod -ism 4 testv/stvISM1.csv testv/stvISM2.csv testv/stvISM3.csv testv/stvISM4.csv ../scripts/switchPaths/sw_48-32k_10fr.bin 48 testv/stv4ISM48s.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/stv4ISM48s.wav_sw_48-48_BINAURAL_OE_JBM5.tst +../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/stv4ISM48s.wav_sw_48-48_BINAURAL_OE_JBM5.tst diff --git a/scripts/config/self_test_evs.prm b/scripts/config/self_test_evs.prm index b68b9509a3bf90bc485caa47d53d80bf9c1c8b5c..ec611fee2a551ea95e9a7a1086cbd2fd9631e432 100644 --- a/scripts/config/self_test_evs.prm +++ b/scripts/config/self_test_evs.prm @@ -250,14 +250,14 @@ eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g1 // Codec A at 13.20 kbps, 32kHz in, 32kHz out, DTX, JBM Prof 5 ../IVAS_cod -dtx 13200 32 testv/stv32c.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP 32 netsimoutput testv/stv32c_13k20_32-32_DTX_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP 32 netsimoutput testv/stv32c_13k20_32-32_DTX_JBM5.tst // Codec B at 16.40 kbps, 32kHz in, 32kHz out, DTX, JBM Prof 5 ../IVAS_cod -dtx 16400 32 testv/stv32c.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP 32 netsimoutput testv/stv32c_16k40_32-32_DTX_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP 32 netsimoutput testv/stv32c_16k40_32-32_DTX_JBM5.tst // Codec B at 13.20 kbps, 32kHz in, 32kHz out, JBM Prof 9, Channel aware ../IVAS_cod -rf 13200 32 testv/stv32c.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP 32 netsimoutput testv/stv32c_13k20_CA_32-32_JBM9.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP 32 netsimoutput testv/stv32c_13k20_CA_32-32_JBM9.tst diff --git a/scripts/config/self_test_ltv.prm b/scripts/config/self_test_ltv.prm index ed0d27afb6d75a88ecd4acb0783b1ae1b0759de5..7cd4b5a8bb689361fe59e51597bc64ddf06bbb5a 100644 --- a/scripts/config/self_test_ltv.prm +++ b/scripts/config/self_test_ltv.prm @@ -1582,143 +1582,143 @@ eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g1 // stereo at 32 kbps, 48 kHz in, 32 kHz out, DTX on, JBM Prof 0 ../IVAS_cod -stereo -dtx 32000 48 testv/ltv48_STEREO.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_0.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP STEREO 32 netsimoutput testv/ltv48_STEREO.wav_stereo_32000_48-32_DTX_JBM0.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP STEREO 32 netsimoutput testv/ltv48_STEREO.wav_stereo_32000_48-32_DTX_JBM0.tst // 4 ISm with metadata at 64 kbps, 48 kHz in, 48 kHz out, DTX on, EXT out, JBM Prof 0 ../IVAS_cod -dtx -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 64000 48 testv/ltv48_4ISM.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_0.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/ltv48_4ISM.wav_64000_48-48_DTX_EXT_JBM0.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/ltv48_4ISM.wav_64000_48-48_DTX_EXT_JBM0.tst // MASA 1dir 1TC at 13.2 kbps, 48kHz in, 32kHz out, DTX on, EXT out, JBM Prof 0 ../IVAS_cod -dtx -masa 1 testv/ltv48_MASA1TC.met 13200 48 testv/ltv48_MASA1TC.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_0.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP EXT 32 netsimoutput testv/ltv48_MASA1TC.wav_13200_48-32_DTX_EXT_JBM0.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP EXT 32 netsimoutput testv/ltv48_MASA1TC.wav_13200_48-32_DTX_EXT_JBM0.tst // SBA at 24.4 kbps, 32kHz in, 32kHz out, DTX on, BINAURAL out, JBM 0 ../IVAS_cod -sba 3 -dtx 24400 32 testv/ltv32_HOA3.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_0.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 32 netsimoutput testv/ltv32_HOA3.wav_SBA_24400_32-32_DTX_Binaural_JBM0.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 32 netsimoutput testv/ltv32_HOA3.wav_SBA_24400_32-32_DTX_Binaural_JBM0.tst // stereo at 48 kbps, 16 kHz in, 16 kHz out, DTX on, JBM Prof 5 ../IVAS_cod -stereo -dtx 48000 16 testv/ltv16_STEREO.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP STEREO 16 netsimoutput testv/ltv16_STEREO.wav_stereo_48000_16-16_DTX_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP STEREO 16 netsimoutput testv/ltv16_STEREO.wav_stereo_48000_16-16_DTX_JBM5.tst // 4 ISm with metadata at 32 kbps, 48 kHz in, 48 kHz out, FOA out, JBM Prof 5 ../IVAS_cod -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv 32000 48 testv/ltv48_4ISM.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_4ISM.wav_32000_48-48_FOA_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_4ISM.wav_32000_48-48_FOA_JBM5.tst // 3 ISM with metadata bitrate switching from 48 kbps to 32 kbps, 48 kHz in, 32 kHz out, DTX, BINAURAL_ROOM_IR out, JBM Prof 5 ../IVAS_cod -dtx -ism 3 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv ../scripts/switchPaths/sw_48-32k_10fr.bin 48 testv/ltv48_3ISM.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL_ROOM_IR 32 netsimoutput testv/ltv48_3ISM.wav_sw_48-32_DTX_BINAURAL_ROOM_IR_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL_ROOM_IR 32 netsimoutput testv/ltv48_3ISM.wav_sw_48-32_DTX_BINAURAL_ROOM_IR_JBM5.tst // SBA at 80 kbps, 32kHz in, 32kHz out, HOA3 out, JBM Prof 5 ../IVAS_cod -sba 3 80000 32 testv/ltv32_HOA3.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP HOA3 32 netsimoutput testv/ltv32_HOA3.wav_SBA_80000_32-32_HOA3_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP HOA3 32 netsimoutput testv/ltv32_HOA3.wav_SBA_80000_32-32_HOA3_JBM5.tst // SBA at 13.2 kbps, 48kHz in, 48kHz out, BINAURAL out, JBM Prof 5 ../IVAS_cod -sba 1 13200 48 testv/ltv48_FOA.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/ltv48_FOA.wav_SBA_13200_48-48_BINAURAL_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/ltv48_FOA.wav_SBA_13200_48-48_BINAURAL_JBM5.tst // Multi-channel 5_1 at 384 kbps, 48kHz in, 48kHz out, 7_1_4 out, JBM Prof 5 ../IVAS_cod -mc 5_1 384000 48 testv/ltv48_MC51.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP 7_1_4 48 netsimoutput testv/ltv48_MC51.wav_MC51_384000_48-48_7_1_4_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP 7_1_4 48 netsimoutput testv/ltv48_MC51.wav_MC51_384000_48-48_7_1_4_JBM5.tst // Multi-channel 7_1_4 at 256 kbps, 48kHz in, 48kHz out, 7_1_4 out, JBM Prof 5 ../IVAS_cod -mc 7_1_4 256000 48 testv/ltv48_MC714.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP 7_1_4 48 netsimoutput testv/ltv48_MC714.wav_MC714_256000_48-48_7_1_4_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP 7_1_4 48 netsimoutput testv/ltv48_MC714.wav_MC714_256000_48-48_7_1_4_JBM5.tst // Multi-channel 7_1 bitrate switching, 48kHz in, 32kHz out, BINAURAL_ROOM_REVERB out, HR, JBM Prof 5 ../IVAS_cod -mc 7_1 ../scripts/switchPaths/sw_24k4_384k.bin 48 testv/ltv48_MC71.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -T testv/headrot.csv -no_delay_cmp -Tracefile tracefile_dec -VOIP binaural_room_reverb 32 netsimoutput testv/ltv48_MC71.wav_MC71_brsw_48-32_BinauralRoomReverb_Headrot_JBM5.tst +../IVAS_dec -T testv/headrot.csv -Tracefile tracefile_dec -VOIP binaural_room_reverb 32 netsimoutput testv/ltv48_MC71.wav_MC71_brsw_48-32_BinauralRoomReverb_Headrot_JBM5.tst // Multi-channel 7_1_4 bitrate switching, 48kHz in, 48kHz out, BINAURAL out, HR, JBM Prof 5 ../IVAS_cod -mc 7_1_4 ../scripts/switchPaths/sw_24k4_384k.bin 48 testv/ltv48_MC714.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -T testv/headrot.csv -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/ltv48_MC714.wav_MC714_brsw_48-48_BINAURAL_Headrot_JBM5.tst +../IVAS_dec -T testv/headrot.csv -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/ltv48_MC714.wav_MC714_brsw_48-48_BINAURAL_Headrot_JBM5.tst // MASA 1TC bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 32kHz out, 5_1 out, JBM Prof 5 ../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/ltv48_MASA1TC.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP 5_1 32 netsimoutput testv/ltv48_MASA1TC.wav_sw_48-32_5_1_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP 5_1 32 netsimoutput testv/ltv48_MASA1TC.wav_sw_48-32_5_1_JBM5.tst // MASA 1TC bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, STEREO out, JBM Prof 5 ../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/ltv48_MASA1TC.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP STEREO 48 netsimoutput testv/ltv48_MASA1TC.wav_sw_48-48_STEREO_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP STEREO 48 netsimoutput testv/ltv48_MASA1TC.wav_sw_48-48_STEREO_JBM5.tst // MASA 1TC bitrate switching from 13.2 kbps to 128 kbps, 48kHz in, 48kHz out, FOA out, JBM Prof 5 ../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met ../scripts/switchPaths/sw_13k2_to_128k_10fr.bin 48 testv/ltv48_MASA1TC.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_MASA1TC.wav_sw_48-48_FOA_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_MASA1TC.wav_sw_48-48_FOA_JBM5.tst // MASA 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 16kHz out, BINAURAL out, JBM Prof 5 ../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_MASA2TC.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 16 netsimoutput testv/ltv48_MASA2TC.wav_sw_48-16_BINAURAL_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 16 netsimoutput testv/ltv48_MASA2TC.wav_sw_48-16_BINAURAL_JBM5.tst // MASA 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 32kHz out, MONO out, JBM Prof 5 ../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_MASA2TC.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP MONO 32 netsimoutput testv/ltv48_MASA2TC.wav_sw_48-32_MONO_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP MONO 32 netsimoutput testv/ltv48_MASA2TC.wav_sw_48-32_MONO_JBM5.tst // MASA 2TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 48kHz out, EXT out, JBM Prof 5 ../IVAS_cod -masa 2 testv/ltv48_MASA2TC.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_MASA2TC.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/ltv48_MASA2TC.wav_sw_48-48_EXT_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/ltv48_MASA2TC.wav_sw_48-48_EXT_JBM5.tst // MASA 1TC bitrate switching from 13.2 kbps to 512 kbps, 48kHz in, 16kHz out, BINAURAL out, JBM Prof 5 ../IVAS_cod -masa 1 testv/ltv48_MASA1TC.met ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_MASA1TC.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 16 netsimoutput testv/ltv48_MASA1TC.wav_sw_48-16_BINAURAL_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 16 netsimoutput testv/ltv48_MASA1TC.wav_sw_48-16_BINAURAL_JBM5.tst // OMASA 2TC 1ISM at br sw techs 13.2 to 512 kbps start 24.4 kbps, 48kHz in, 48kHz out, BINAURAL_ROOM_IR out, JBM Prof 5 ../IVAS_cod -ism_masa 1 2 testv/ltv48_OMASA_1ISM_2TC_ISM1.csv testv/ltv48_OMASA_1ISM_2TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_24k4_omasatechs_1ism.bin 48 testv/ltv48_OMASA_1ISM_2TC.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL_ROOM_IR 48 netsimoutput testv/ltv48_OMASA_1ISM_2TC.wav_BINAURAL_ROOM_IR_sw_48-48_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL_ROOM_IR 48 netsimoutput testv/ltv48_OMASA_1ISM_2TC.wav_BINAURAL_ROOM_IR_sw_48-48_JBM5.tst // OMASA 2TC 2ISM at br sw techs 13.2 to 512 kbps start 48 kbps, 48kHz in, 48kHz out, 7.1 out, JBM Prof 5 ../IVAS_cod -ism_masa 2 2 testv/ltv48_OMASA_2ISM_2TC_ISM1.csv NULL testv/ltv48_OMASA_2ISM_2TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_48k_omasatechs_2ism.bin 48 testv/ltv48_OMASA_2ISM_2TC.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP 7_1 48 netsimoutput testv/ltv48_OMASA_2ISM_2TC.wav_7_1_sw_48-48_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP 7_1 48 netsimoutput testv/ltv48_OMASA_2ISM_2TC.wav_7_1_sw_48-48_JBM5.tst // OMASA 2TC 3ISM at br sw techs 13.2 to 512 kbps start 160 kbps, 48kHz in, 48kHz out, MONO out, JBM Prof 5 ../IVAS_cod -ism_masa 3 2 testv/ltv48_OMASA_3ISM_2TC_ISM1.csv testv/ltv48_OMASA_3ISM_2TC_ISM2.csv testv/ltv48_OMASA_3ISM_2TC_ISM3.csv testv/ltv48_OMASA_3ISM_2TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_160k_omasatechs_3ism.bin 48 testv/ltv48_OMASA_3ISM_2TC.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP MONO 48 netsimoutput testv/ltv48_OMASA_3ISM_2TC.wav_MONO_sw_48-48_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP MONO 48 netsimoutput testv/ltv48_OMASA_3ISM_2TC.wav_MONO_sw_48-48_JBM5.tst // OMASA 1TC 3ISM at br sw techs 13.2 to 512 kbps start 48 kbps, 48kHz in, 32kHz out, STEREO out, JBM Prof 5 ../IVAS_cod -ism_masa 3 1 testv/ltv48_OMASA_3ISM_1TC_ISM1.csv testv/ltv48_OMASA_3ISM_1TC_ISM2.csv testv/ltv48_OMASA_3ISM_1TC_ISM3.csv testv/ltv48_OMASA_3ISM_1TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_48k_omasatechs_3ism.bin 48 testv/ltv48_OMASA_3ISM_1TC.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP STEREO 32 netsimoutput testv/ltv48_OMASA_3ISM_1TC.wav_STEREO_sw_48-32_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP STEREO 32 netsimoutput testv/ltv48_OMASA_3ISM_1TC.wav_STEREO_sw_48-32_JBM5.tst // OMASA 2TC 3ISM at br sw techs 13.2 to 512 kbps start 24.4 kbps, 32kHz in, 48kHz out, 5.1.2 out, JBM Prof 5 ../IVAS_cod -ism_masa 3 2 testv/ltv48_OMASA_3ISM_2TC_ISM1.csv testv/ltv48_OMASA_3ISM_2TC_ISM2.csv testv/ltv48_OMASA_3ISM_2TC_ISM3.csv testv/ltv48_OMASA_3ISM_2TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_24k4_omasatechs_3ism.bin 32 testv/ltv32_OMASA_3ISM_2TC.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP 5_1_2 48 netsimoutput testv/ltv32_OMASA_3ISM_2TC.wav_5_1_2_sw_32-48_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP 5_1_2 48 netsimoutput testv/ltv32_OMASA_3ISM_2TC.wav_5_1_2_sw_32-48_JBM5.tst // OMASA 1TC 4ISM at br sw techs 13.2 to 512 kbps start 32 kbps, 48kHz in, 48kHz out, BINAURAL out, JBM Prof 5 ../IVAS_cod -ism_masa 4 1 testv/ltv48_OMASA_4ISM_1TC_ISM1.csv testv/ltv48_OMASA_4ISM_1TC_ISM2.csv testv/ltv48_OMASA_4ISM_1TC_ISM3.csv testv/ltv48_OMASA_4ISM_1TC_ISM4.csv testv/ltv48_OMASA_4ISM_1TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_32k_omasatechs_4ism.bin 48 testv/ltv48_OMASA_4ISM_1TC.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/ltv48_OMASA_4ISM_1TC.wav_BINAURAL_sw_48-48_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/ltv48_OMASA_4ISM_1TC.wav_BINAURAL_sw_48-48_JBM5.tst // OMASA 2TC 4ISM at br sw techs 13.2 to 512 kbps start 80 kbps, 48kHz in, 48kHz out, FOA out, JBM Prof 5 ../IVAS_cod -ism_masa 4 2 NULL testv/ltv48_OMASA_4ISM_2TC_ISM2.csv testv/ltv48_OMASA_4ISM_2TC_ISM3.csv testv/ltv48_OMASA_4ISM_2TC_ISM4.csv testv/ltv48_OMASA_4ISM_2TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_80k_omasatechs_4ism.bin 48 testv/ltv48_OMASA_4ISM_2TC.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_OMASA_4ISM_2TC.wav_FOA_sw_48-48_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_OMASA_4ISM_2TC.wav_FOA_sw_48-48_JBM5.tst // OMASA 2TC 4ISM at 256 kbps, 48kHz in, 48kHz out, EXT out, JBM Prof 5 ../IVAS_cod -ism_masa 4 2 testv/ltv48_OMASA_4ISM_2TC_ISM1.csv testv/ltv48_OMASA_4ISM_2TC_ISM2.csv NULL testv/ltv48_OMASA_4ISM_2TC_ISM4.csv testv/ltv48_OMASA_4ISM_2TC.met 256000 48 testv/ltv48_OMASA_4ISM_2TC.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/ltv48_OMASA_4ISM_2TC.wav_EXT_256000_48-48_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP EXT 48 netsimoutput testv/ltv48_OMASA_4ISM_2TC.wav_EXT_256000_48-48_JBM5.tst // OMASA 1TC 4ISM 48 kbps 48kHz in, 48kHz out, BINAURAL_ROOM_REVERB out custom configuration ../IVAS_cod -ism_masa 4 1 testv/ltv48_OMASA_4ISM_1TC_ISM1.csv testv/ltv48_OMASA_4ISM_1TC_ISM2.csv testv/ltv48_OMASA_4ISM_1TC_ISM3.csv testv/ltv48_OMASA_4ISM_1TC_ISM4.csv testv/ltv48_OMASA_4ISM_1TC.met 48000 48 testv/ltv48_OMASA_4ISM_1TC.wav bit @@ -1993,7 +1993,7 @@ eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_10pct.g // OSBA 2OA 2ISM bitrate switching, 32kHz in, 48kHz out, BINAURAL_ROOM_REVERB out, JBM Prof 5 ../IVAS_cod -ism_sba 2 2 testv/ltvISM1.csv testv/ltvISM2.csv ../scripts/switchPaths/sw_24k4_256k.bin 32 testv/ltv32_OSBA_2ISM_HOA2.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL_ROOM_REVERB 48 netsimoutput testv/ltv32_OSBA_2ISM_HOA2.wav_BINAURAL_brsw_32-48_JBM5.tst +../IVAS_dec -Tracefile tracefile_dec -VOIP BINAURAL_ROOM_REVERB 48 netsimoutput testv/ltv32_OSBA_2ISM_HOA2.wav_BINAURAL_brsw_32-48_JBM5.tst // OMASA 2TC 4ISM at 80 kbps, 48kHz in, 48kHz out, BINAURAL out, default object editing, 1SEP-PARAM @@ -2003,12 +2003,12 @@ networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit // OMASA 2TC 4ISM at 256 kbps, 48kHz in, 48kHz out, BINAURAL out, object editing, JBM Prof 5, DISC ../IVAS_cod -ism_masa 4 2 testv/ltv48_OMASA_4ISM_2TC_ISM1.csv testv/ltv48_OMASA_4ISM_2TC_ISM2.csv testv/ltv48_OMASA_4ISM_2TC_ISM3.csv testv/ltv48_OMASA_4ISM_2TC_ISM4.csv testv/ltv48_OMASA_4ISM_2TC.met 256000 48 testv/ltv48_OMASA_4ISM_2TC.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/ltv48_OMASA_4ISM_2TC.wav_BINAURAL_256000_48-48_OE_JBM5.tst +../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/ltv48_OMASA_4ISM_2TC.wav_BINAURAL_256000_48-48_OE_JBM5.tst // OMASA 2TC 2ISM at 96 kbps, 48kHz in, 48kHz out, FOA out, object editing, JBM Prof 5, DISC ../IVAS_cod -ism_masa 2 2 testv/ltv48_OMASA_2ISM_2TC_ISM1.csv testv/ltv48_OMASA_2ISM_2TC_ISM2.csv testv/ltv48_OMASA_2ISM_2TC.met 96000 48 testv/ltv48_OMASA_2ISM_2TC.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_OMASA_2ISM_2TC.wav_FOA_96000_48-48_OE_JBM5.tst +../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_OMASA_2ISM_2TC.wav_FOA_96000_48-48_OE_JBM5.tst // OMASA 2TC 2ISM br sw techs 13.2 to 512 kbps start 48 kbps, 48kHz in, 48kHz out, BINAURAL out, object editing ../IVAS_cod -ism_masa 2 2 testv/ltv48_OMASA_2ISM_2TC_ISM1.csv testv/ltv48_OMASA_2ISM_2TC_ISM2.csv testv/ltv48_OMASA_2ISM_2TC.met ../scripts/switchPaths/sw_13k2_512k_2fr_start_48k_omasatechs_2ism.bin 48 testv/ltv48_OMASA_2ISM_2TC.wav bit @@ -2021,7 +2021,7 @@ networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit // OSBA 2OA 3ISM at 128 kbps, 48kHz in, 48kHz out, FOA out, object editing, JBM Prof 5, DISC ../IVAS_cod -ism_sba 3 2 testv/ltv48_OSBA_3ISM_HOA2_ISM1.csv testv/ltv48_OSBA_3ISM_HOA2_ISM2.csv testv/ltv48_OSBA_3ISM_HOA2_ISM3.csv 128000 48 testv/ltv48_OSBA_3ISM_HOA2.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_OSBA_3ISM_HOA2.wav_FOA_128000_48-48_OE_JBM5.tst +../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_OSBA_3ISM_HOA2.wav_FOA_128000_48-48_OE_JBM5.tst // OSBA 2OA 3ISM at bitrate switching 13.2 to 512 kbps, 48kHz in, 48kHz out, BINAURAL out, object editing ../IVAS_cod -ism_sba 3 2 testv/ltv48_OSBA_3ISM_HOA2_ISM1.csv testv/ltv48_OSBA_3ISM_HOA2_ISM2.csv testv/ltv48_OSBA_3ISM_HOA2_ISM3.csv ../scripts/switchPaths/sw_13k2_512k.bin 48 testv/ltv48_OSBA_3ISM_HOA2.wav bit @@ -2039,12 +2039,12 @@ eid-xor -fer -vbr -bs g192 -ep g192 bit ../scripts/dly_error_profiles/ep_5pct.g1 // 3 ISM with metadata at 24.4 kbps, 48 kHz in, 48 kHz out, FOA out, object editing, JBM Prof 5, PARAM_ISM ../IVAS_cod -ism 3 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv 24400 48 testv/ltv48_3ISM.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_3ISM.wav_24400_48-48_FOA_OE_JBM5.tst +../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_3ISM.wav_24400_48-48_FOA_OE_JBM5.tst // 3 ISM with metadata at 384 kbps, 48 kHz in, 48 kHz out, FOA out, object editing, JBM Prof 5, DISC ../IVAS_cod -ism 3 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv 384000 48 testv/ltv48_3ISM.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -obj_edit NULL -no_delay_cmp -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_3ISM.wav_384000_48-48_FOA_OE_JBM5.tst +../IVAS_dec -obj_edit NULL -Tracefile tracefile_dec -VOIP FOA 48 netsimoutput testv/ltv48_3ISM.wav_384000_48-48_FOA_OE_JBM5.tst // 4 ISM with metadata bitrate switching from 32 kbps to 48 kbps, 48 kHz in, 48 kHz out, BINAURAL_ROOM_IR out, object editing ../IVAS_cod -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv ../scripts/switchPaths/sw_32-48k_10fr.bin 48 testv/ltv48_4ISM.wav bit @@ -2053,4 +2053,4 @@ networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit // 4 ISM with metadata bitrate switching from 48 kbps to 32 kbps, 48 kHz in, 48 kHz out, BINAURAL out, object editing, JBM Prof 5 ../IVAS_cod -ism 4 testv/ltvISM1.csv testv/ltvISM2.csv testv/ltvISM3.csv testv/ltvISM4.csv ../scripts/switchPaths/sw_48-32k_10fr.bin 48 testv/ltv48_4ISM.wav bit networkSimulator_g192 ../scripts/dly_error_profiles/dly_error_profile_5.dat bit netsimoutput tracefile_sim 2 0 -../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -no_delay_cmp -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/ltv48_4ISM.wav_sw_48-48_BINAURAL_OE_JBM5.tst +../IVAS_dec -obj_edit ../scripts/object_edit/combined_edit.txt -Tracefile tracefile_dec -VOIP BINAURAL 48 netsimoutput testv/ltv48_4ISM.wav_sw_48-48_BINAURAL_OE_JBM5.tst diff --git a/scripts/generate_spectral_testv.py b/scripts/generate_spectral_testv.py deleted file mode 100644 index 7ff40adda2bb091421f1fc11ac394c6e4a7ad611..0000000000000000000000000000000000000000 --- a/scripts/generate_spectral_testv.py +++ /dev/null @@ -1,49 +0,0 @@ -#!/usr/bin/env python3 -from pathlib import Path -from scipy.io.wavfile import read, write -import numpy as np - -MAX_NUM_CH = 20 # number of channel indices in file -MIN_DURATION_MS = 1200 # minimum duration needed for all indices at 16kHz -TESTV_DIR = Path(__file__).parent.joinpath("testv") - - -def create_vector(fs: int, num_ch: int): - in_file = TESTV_DIR / f"spectral_{fs}.wav" - - # requires spectral_{16,32,48}.wav - if not in_file.exists(): - raise FileNotFoundError(f"Source file {in_file} not found!") - # validate num_ch - if num_ch > MAX_NUM_CH or num_ch < 1: - raise ValueError( - f"Requested channel count of {num_ch} channels is invalid. Must be between 1 and {MAX_NUM_CH}!" - ) - - _, data = read(in_file) - - # split source file into parts - part_len = data.shape[0] // MAX_NUM_CH - parts = data.reshape(MAX_NUM_CH, part_len).T - - duration = fs * MIN_DURATION_MS - out = np.zeros([duration, num_ch], dtype=np.int16) - - # populate output vector, loop over the channel indices - # until the duration is reached - for i in range(duration // part_len): - for ch in range(num_ch): - if i % num_ch == ch: - out[i * part_len : (i + 1) * part_len, ch] = parts[:, ch] - - write(TESTV_DIR / f"spectral_test_{num_ch}ch_{fs}kHz.wav", fs * 1000, out) - - -def main(): - for fs in [16, 32, 48]: - for ch in range(1, 21): - create_vector(fs, ch) - - -if __name__ == "__main__": - main() diff --git a/scripts/lc3plus_lib_setup/get_lc3plus.sh b/scripts/lc3plus_lib_setup/get_lc3plus.sh index f654768707921d45b2f6cbfbe90881cc6a528649..d44aff06996dd9c812d29804c36602f9c3c18c38 100755 --- a/scripts/lc3plus_lib_setup/get_lc3plus.sh +++ b/scripts/lc3plus_lib_setup/get_lc3plus.sh @@ -6,13 +6,13 @@ printf "Cleaning old version of LC3plus\n" rm -rf lib_lc3plus printf "Downloading LC3plus code\n" -if true; then +if false; then # Waiting for official ETSI release. # TODO: add new URL, remove `if false` when package goes public - curl -o ./lc3plus_sources.zip https://www.etsi.org/deliver/etsi_ts/103600_103699/103634/01.05.01_60/ts_103634v010501p0.zip + curl -o ./lc3plus_sources.zip NEW_URL_HERE unzip lc3plus_sources.zip -d . rm lc3plus_sources.zip - cp -r "ETSI_Release/LC3plus_ETSI_src_v5f640bd48cc_20240516/src/floating_point" lib_lc3plus + cp -r "ETSI_Release//src/floating_point" lib_lc3plus rm -r ETSI_Release else # Temp solution for downloading WIP ETSI package @@ -59,7 +59,7 @@ sed -i 's/^#[[:space:]]\+/#/' {} # fix for sanitizer issues sed -i 's/st->low << 8/(LC3_INT)((LC3_UINT32)st->low << 8)/' lib_lc3plus/ari_codec.c -sed -i 's/~3/(uintptr_t)(~3)/' lib_lc3plus/lc3plus.c +sed -i 's/~3/(uintptr_t)(~3)/' lib_lc3plus/lc3.c # Add .clang-format file to lib_lc3plus to disable formatting there printf "Disabling clang-format in lib_lc3plus directory\n" diff --git a/scripts/pyivastest/IvasScriptsCommon.py b/scripts/pyivastest/IvasScriptsCommon.py index 0878fb04371d274d8acedb725697296e8c503d24..dd88681f94a041fe8128f05d2cb5c5062c8bbbab 100644 --- a/scripts/pyivastest/IvasScriptsCommon.py +++ b/scripts/pyivastest/IvasScriptsCommon.py @@ -647,7 +647,7 @@ def runner_setup(runner, args): "0", jbm_suffix, ] - dec_options = ["-Tracefile", "{dec_file_name}.tracefile_dec", "-no_delay_cmp", "-VOIP"] + dec_options = ["-Tracefile", "{dec_file_name}.tracefile_dec", "-VOIP"] add_to_proc_chain(bs_proc_chain, jbm_cmd, dec_options) if args["sidstart"]: @@ -771,7 +771,7 @@ def analyzer_setup(analyzer, args): "0", jbm_suffix, ] - dec_options = ["-Tracefile", "{dec_file_name}.tracefile_dec", "-no_delay_cmp", "-VOIP"] + dec_options = ["-Tracefile", "{dec_file_name}.tracefile_dec", "-VOIP"] add_to_proc_chain(bs_proc_chain, jbm_cmd, dec_options) if args["sidstart"]: diff --git a/scripts/split_rendering/lc3plus_basop/ivas_lc3plus_unit_test.c b/scripts/split_rendering/lc3plus_basop/ivas_lc3plus_unit_test.c index df8b7589a9511bc37785b567dc9cc2f8993856db..1bba6af9d451b4f61798e085c08a0c5848be034d 100644 --- a/scripts/split_rendering/lc3plus_basop/ivas_lc3plus_unit_test.c +++ b/scripts/split_rendering/lc3plus_basop/ivas_lc3plus_unit_test.c @@ -38,10 +38,17 @@ the United Nations Convention on Contracts on the International Sales of Goods. #include "isar_lc3plus_common.h" #include "isar_lc3plus_dec.h" #include "ivas_error_utils.h" +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS #include "lc3.h" +#endif +#ifdef SPLIT_REND_WITH_HEAD_ROT +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS #define MAX_SAMPLES_PER_CHANNEL 960 / 4 -#define DEFAULT_BPS 256000 +#else +#define MAX_SAMPLES_PER_CHANNEL 960 +#endif +#define DEFAULT_BPS 256000 #ifndef PCM_SAMPLE_TYPEDEF_DEFINED #define PCM_SAMPLE_TYPEDEF_DEFINED @@ -93,23 +100,27 @@ static int encodeAndDecodeOneStereoFrame( LC3PLUS_CONFIG config, uint32_t bps ) uint8_t *bitstream_out = malloc( bitstreamSizePerIvasFrame ); memset( bitstream_out, 0, bitstreamSizePerIvasFrame ); - int perChannelBitrate = lc3plus_enc_get_real_bitrate( encHandle->handles[0] ); - int perLc3plusFrameDataBlockOctets = encHandle->num_ftds * perChannelBitrate / 8 / ( 1000 * 1000 / config.lc3plus_frame_duration_us ); - int targetOctets = bps / 8 / ( 1000 * 1000 / config.isar_frame_duration_us ); - printf( "IVAS-FS=%i LC3plus-FS=%i ch=%i targetBps=%i targetOctets=%i\n", config.isar_frame_duration_us, config.lc3plus_frame_duration_us, config.channels, bps, targetOctets ); - printf( " coreBps=%i corePerChBps=%i coreCodecOctets=%i nFtds=%i \n", perChannelBitrate * encHandle->num_encs, perChannelBitrate, perLc3plusFrameDataBlockOctets, encHandle->num_ftds ); +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS + int perChannelBitrate = lc3plus_enc_get_real_bitrate(encHandle->handles[0]); + int perLc3plusFrameDataBlockOctets = encHandle->num_ftds * perChannelBitrate / 8 / (1000*1000/config.lc3plus_frame_duration_us); + int targetOctets = bps / 8 / (1000*1000/config.isar_frame_duration_us); + printf("IVAS-FS=%i LC3plus-FS=%i ch=%i targetBps=%i targetOctets=%i\n", config.isar_frame_duration_us, config.lc3plus_frame_duration_us, config.channels, bps, targetOctets); + printf(" coreBps=%i corePerChBps=%i coreCodecOctets=%i nFtds=%i \n", perChannelBitrate * encHandle->num_encs, perChannelBitrate, perLc3plusFrameDataBlockOctets, encHandle->num_ftds); int pfOctets = bitstreamSizePerIvasFrame - perLc3plusFrameDataBlockOctets; - int pfBps = pfOctets * 8 * ( 1000 * 1000 / config.isar_frame_duration_us ); - printf( " payloadFormatBps=%i payloadFormatOctets=%i \n\n", pfBps, pfOctets ); - if ( pfBps <= 0 ) + int pfBps = pfOctets * 8 * (1000*1000 / config.isar_frame_duration_us); + printf(" payloadFormatBps=%i payloadFormatOctets=%i \n\n", pfBps, pfOctets); + if(pfBps <= 0) { ISAR_LC3PLUS_ENC_Close( &encHandle ); return err; } Word16 Q_in[16]; - memset( Q_in, 0, sizeof( Q_in ) ); - err = ISAR_LC3PLUS_ENC_Encode( encHandle, pcm_in, bitstream_out, bitstreamSizePerIvasFrame, Q_in ); + memset(Q_in, 0, sizeof(Q_in) ); + err = ISAR_LC3PLUS_ENC_Encode( encHandle, pcm_in, bitstream_out, bitstreamSizePerIvasFrame, Q_in ); +#else + err = ISAR_LC3PLUS_ENC_Encode( encHandle, pcm_in, bitstream_out ); +#endif if ( IVAS_ERR_OK != err ) { ISAR_LC3PLUS_ENC_Close( &encHandle ); @@ -189,7 +200,11 @@ static int encodeAndDecodeOneStereoFrame( LC3PLUS_CONFIG config, uint32_t bps ) static int openCloseEncoder( void ) { ivas_error err; +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 }; +#else + LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20000, .channels = 1, .samplerate = 48000 }; +#endif uint32_t bps = 128000; ISAR_LC3PLUS_ENC_HANDLE encHandle; @@ -206,38 +221,55 @@ static int openCloseEncoder( void ) static int tryOpenEncoderWithInvalidBitrate( void ) { ivas_error err; +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 }; +#else + LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20000, .channels = 1, .samplerate = 48000 }; +#endif /* lc3plus max bitrate is 320000 per channel */ uint32_t invalid_high_bps = 700000; uint32_t invalid_low_bps = 8; +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS uint32_t limitedBitrate; +#endif ISAR_LC3PLUS_ENC_HANDLE encHandle; err = ISAR_LC3PLUS_ENC_Open( config, invalid_high_bps, &encHandle ); +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS /* setting an invalid bitrate should result in a limited bitrate*/ if ( IVAS_ERR_OK != err ) +#else + /* setting an invalid bitrate should trigger an error - which is what we expect */ + if ( IVAS_ERR_LC3PLUS_INVALID_BITRATE != err ) +#endif { return 1; } - limitedBitrate = lc3plus_enc_get_real_bitrate( encHandle->handles[0] ); - if ( limitedBitrate != 320000 ) +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS + limitedBitrate = lc3plus_enc_get_real_bitrate(encHandle->handles[0]); + if(limitedBitrate != 320000) { return 1; } - ISAR_LC3PLUS_ENC_Close( &encHandle ); +#endif + ISAR_LC3PLUS_ENC_Close(&encHandle); err = ISAR_LC3PLUS_ENC_Open( config, invalid_low_bps, &encHandle ); /* setting an invalid bitrate should trigger an error - which is what we expect */ if ( IVAS_ERR_LC3PLUS_INVALID_BITRATE != err ) { return 1; } - ISAR_LC3PLUS_ENC_Close( &encHandle ); + ISAR_LC3PLUS_ENC_Close(&encHandle); return 0; } static int tryOpenEncoderWithInvalidFrameDuration( void ) { ivas_error err; +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 }; +#else + LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20000, .channels = 1, .samplerate = 48000 }; +#endif config.lc3plus_frame_duration_us = 1234; /*unsupported frame duration*/ uint32_t bps = 320000; @@ -254,7 +286,11 @@ static int tryOpenEncoderWithInvalidFrameDuration( void ) static int tryOpenEncoderWithInvalidSampleRate( void ) { ivas_error err; +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 }; +#else + LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20000, .channels = 1, .samplerate = 48000 }; +#endif config.samplerate = 1234; /*unsupported sample rate */ uint32_t bps = 320000; @@ -294,14 +330,22 @@ static int tryCallEncoderApiWithInvalidParams( void ) return 1; } ISAR_LC3PLUS_ENC_Close( &invalidEncHandle ); +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS Word16 Q_in[16]; - memset( Q_in, 0, sizeof( Q_in ) ); - if ( IVAS_ERR_UNEXPECTED_NULL_POINTER != ISAR_LC3PLUS_ENC_Encode( invalidEncHandle, invalidPcm_in, invalidBitstream_out, bsSize, Q_in ) ) + memset(Q_in, 0, sizeof(Q_in) ); + if ( IVAS_ERR_UNEXPECTED_NULL_POINTER != ISAR_LC3PLUS_ENC_Encode( invalidEncHandle, invalidPcm_in, invalidBitstream_out, bsSize, Q_in ) ) +#else + if ( IVAS_ERR_UNEXPECTED_NULL_POINTER != ISAR_LC3PLUS_ENC_Encode( invalidEncHandle, invalidPcm_in, invalidBitstream_out ) ) +#endif { return 1; } - memset( Q_in, 0, sizeof( Q_in ) ); - if ( IVAS_ERR_UNEXPECTED_NULL_POINTER != ISAR_LC3PLUS_ENC_Encode( invalidEncHandle, pcm_in, invalidBitstream_out, bsSize, Q_in ) || IVAS_ERR_UNEXPECTED_NULL_POINTER != ISAR_LC3PLUS_ENC_Encode( invalidEncHandle, invalidPcm_in, bitstream_out, bsSize, Q_in ) || IVAS_ERR_UNEXPECTED_NULL_POINTER != ISAR_LC3PLUS_ENC_Encode( invalidEncHandle, pcm_in, bitstream_out, bsSize, Q_in ) ) +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS + memset(Q_in, 0, sizeof(Q_in) ); + if ( IVAS_ERR_UNEXPECTED_NULL_POINTER != ISAR_LC3PLUS_ENC_Encode( invalidEncHandle, pcm_in, invalidBitstream_out, bsSize, Q_in) || IVAS_ERR_UNEXPECTED_NULL_POINTER != ISAR_LC3PLUS_ENC_Encode( invalidEncHandle, invalidPcm_in, bitstream_out, bsSize, Q_in ) || IVAS_ERR_UNEXPECTED_NULL_POINTER != ISAR_LC3PLUS_ENC_Encode( invalidEncHandle, pcm_in, bitstream_out, bsSize, Q_in ) ) +#else + if ( IVAS_ERR_UNEXPECTED_NULL_POINTER != ISAR_LC3PLUS_ENC_Encode( invalidEncHandle, pcm_in, invalidBitstream_out ) || IVAS_ERR_UNEXPECTED_NULL_POINTER != ISAR_LC3PLUS_ENC_Encode( invalidEncHandle, invalidPcm_in, bitstream_out ) || IVAS_ERR_UNEXPECTED_NULL_POINTER != ISAR_LC3PLUS_ENC_Encode( invalidEncHandle, pcm_in, bitstream_out ) ) +#endif { return 1; } @@ -347,7 +391,11 @@ static int tryCallDecoderApiWithInvalidParams( void ) static int openCloseDecoderWithCaching( void ) { ivas_error err; +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 }; +#else + LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20000, .channels = 1, .samplerate = 48000 }; +#endif ISAR_LC3PLUS_DEC_HANDLE decHandle; err = ISAR_LC3PLUS_DEC_Open( config, #ifdef LC3PLUS_DEC_ALLOW_DISABLE_CACHING @@ -366,7 +414,11 @@ static int openCloseDecoderWithCaching( void ) static int openCloseDecoderWithoutCaching( void ) { ivas_error err; +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 }; +#else + LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20000, .channels = 1, .samplerate = 48000 }; +#endif ISAR_LC3PLUS_DEC_HANDLE decHandle; err = ISAR_LC3PLUS_DEC_Open( config, #ifdef LC3PLUS_DEC_ALLOW_DISABLE_CACHING @@ -386,7 +438,11 @@ static int openCloseDecoderWithoutCaching( void ) static int tryOpenDecoderWithInvalidFrameDuration( void ) { ivas_error err; +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 }; +#else + LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20000, .channels = 1, .samplerate = 48000 }; +#endif config.lc3plus_frame_duration_us = 1234; /*unsupported frame duration*/ ISAR_LC3PLUS_DEC_HANDLE decHandle; @@ -406,7 +462,11 @@ static int tryOpenDecoderWithInvalidFrameDuration( void ) static int tryOpenDecoderWithInvalidSampleRate( void ) { ivas_error err; +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 }; +#else + LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20000, .channels = 1, .samplerate = 48000 }; +#endif config.samplerate = 1234; /*unsupported sample rate*/ ISAR_LC3PLUS_DEC_HANDLE decHandle; @@ -426,7 +486,11 @@ static int tryOpenDecoderWithInvalidSampleRate( void ) static int encodeOneFrame( void ) { ivas_error err; +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 }; +#else + LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20000, .channels = 1, .samplerate = 48000 }; +#endif uint32_t bps = 128000; ISAR_LC3PLUS_ENC_HANDLE encHandle; @@ -447,10 +511,14 @@ static int encodeOneFrame( void ) return err; uint8_t *bitstream_out = malloc( bitstreamSizePerIvasFrame ); memset( bitstream_out, 0, bitstreamSizePerIvasFrame ); +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS Word16 Q_in[16]; - memset( Q_in, 0, sizeof( Q_in ) ); + memset(Q_in, 0, sizeof(Q_in) ); err = ISAR_LC3PLUS_ENC_Encode( encHandle, pcm, bitstream_out, bitstreamSizePerIvasFrame, Q_in ); +#else + err = ISAR_LC3PLUS_ENC_Encode( encHandle, pcm, bitstream_out ); +#endif if ( IVAS_ERR_OK != err ) return err; @@ -463,7 +531,11 @@ static int encodeOneFrame( void ) static int encodeAndDecodeOneMonoFrame( void ) { ivas_error err; +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 }; +#else + LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20000, .channels = 1, .samplerate = 48000 }; +#endif uint32_t bps = 128000; ISAR_LC3PLUS_ENC_HANDLE encHandle; @@ -487,9 +559,13 @@ static int encodeAndDecodeOneMonoFrame( void ) uint8_t *bitstream_out = malloc( bitstreamSizePerIvasFrame ); memset( bitstream_out, 0, bitstreamSizePerIvasFrame ); +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS Word16 Q_in[16]; - memset( Q_in, 0, sizeof( Q_in ) ); - err = ISAR_LC3PLUS_ENC_Encode( encHandle, pcm_in, bitstream_out, bitstreamSizePerIvasFrame, Q_in ); + memset(Q_in, 0, sizeof(Q_in) ); + err = ISAR_LC3PLUS_ENC_Encode( encHandle, pcm_in, bitstream_out, bitstreamSizePerIvasFrame, Q_in ); +#else + err = ISAR_LC3PLUS_ENC_Encode( encHandle, pcm_in, bitstream_out ); +#endif if ( IVAS_ERR_OK != err ) return err; ISAR_LC3PLUS_ENC_Close( &encHandle ); @@ -532,7 +608,11 @@ static int encodeAndDecodeOneMonoFrame( void ) static int encodeAndDecodeOneStereoFrameIvas20msLc3plus10ms_48kHz( void ) { +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20 * 1000, .channels = 2, .samplerate = 48000, .high_res_mode_enabled = 0 }; +#else + LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20 * 1000, .channels = 2, .samplerate = 48000 }; +#endif return encodeAndDecodeOneStereoFrame( config, DEFAULT_BPS ); } @@ -550,91 +630,147 @@ static int encodeAndDecodeOneStereoFrameIvas20msLc3plus10ms_16kHz( void ) static int encodeAndDecodeOneStereoFrameIvas5msLc3plus5ms_48kHz( void ) { +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5 * 1000, .channels = 2, .samplerate = 48000, .high_res_mode_enabled = 0 }; +#else + LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5 * 1000, .channels = 2, .samplerate = 48000 }; +#endif return encodeAndDecodeOneStereoFrame( config, DEFAULT_BPS ); } static int encodeAndDecodeOneStereoFrameIvas10msLc3plus10ms_48kHz( void ) { +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 2, .samplerate = 48000, .high_res_mode_enabled = 0 }; +#else + LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5 * 1000, .channels = 2, .samplerate = 48000 }; +#endif return encodeAndDecodeOneStereoFrame( config, DEFAULT_BPS ); } static int encodeAndDecodeOneMonoFrameIvas20msLc3plus10ms_48kHz( void ) { +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20 * 1000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 }; +#else + LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 20 * 1000, .channels = 1, .samplerate = 48000 }; +#endif return encodeAndDecodeOneStereoFrame( config, DEFAULT_BPS ); } static int encodeAndDecodeOneMonoFrameIvas5msLc3plus5ms_48kHz( void ) { +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5 * 1000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 }; +#else + LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 5 * 1000, .isar_frame_duration_us = 5 * 1000, .channels = 1, .samplerate = 48000 }; +#endif return encodeAndDecodeOneStereoFrame( config, DEFAULT_BPS ); } static int encodeAndDecodeOneStereoFrameIvas20msLc3plus2_5ms_48kHz( void ) { +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 2.5 * 1000, .isar_frame_duration_us = 20 * 1000, .channels = 2, .samplerate = 48000, .high_res_mode_enabled = 0 }; +#else + LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 2.5 * 1000, .isar_frame_duration_us = 20 * 1000, .channels = 2, .samplerate = 48000 }; +#endif return encodeAndDecodeOneStereoFrame( config, DEFAULT_BPS ); } static int encodeAndDecodeOneStereoFrameIvas10msLc3_10ms_48kHz_80kbpsPerChannel( void ) { +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 2, .samplerate = 48000, .high_res_mode_enabled = 0 }; - return encodeAndDecodeOneStereoFrame( config, config.channels * 82 * 1000 ); +#else + LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 2, .samplerate = 48000 }; +#endif + return encodeAndDecodeOneStereoFrame( config, config.channels * 82*1000 ); } static int encodeAndDecodeOneStereoFrameIvas10msLc3_10ms_48kHz_96kbpsPerChannel( void ) { +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 2, .samplerate = 48000, .high_res_mode_enabled = 0 }; - return encodeAndDecodeOneStereoFrame( config, config.channels * 98 * 1000 ); +#else + LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 2, .samplerate = 48000 }; +#endif + return encodeAndDecodeOneStereoFrame( config, config.channels * 98*1000 ); } static int encodeAndDecodeOneStereoFrameIvas10msLc3_10ms_48kHz_124kbpsPerChannel( void ) { +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 2, .samplerate = 48000, .high_res_mode_enabled = 0 }; - return encodeAndDecodeOneStereoFrame( config, config.channels * 126 * 1000 ); +#else + LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 2, .samplerate = 48000 }; +#endif + return encodeAndDecodeOneStereoFrame( config, config.channels * 126*1000 ); } +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS static int encodeAndDecodeOneStereoFrameIvas10msLc3_10ms_48kHz_800kbpsPerChannel( void ) { +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 2, .samplerate = 48000, .high_res_mode_enabled = 0 }; - return encodeAndDecodeOneStereoFrame( config, config.channels * 800 * 1000 ); +#else + LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 2, .samplerate = 48000 }; +#endif + return encodeAndDecodeOneStereoFrame( config, config.channels * 800*1000 ); } +#endif static int encodeAndDecodeOneStereoFrameIvas10msLc3_10ms_48kHz_204800bpsPerChannel( void ) { +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 }; +#else + LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 2, .samplerate = 48000 }; +#endif return encodeAndDecodeOneStereoFrame( config, config.channels * 204800 ); } static int encodeAndDecodeOneStereoFrameIvas10msLc3_10ms_48kHz_205600bpsPerChannel( void ) { +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 }; +#else + LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 2, .samplerate = 48000 }; +#endif return encodeAndDecodeOneStereoFrame( config, config.channels * 205600 ); } static int encodeAndDecodeOneStereoFrameIvas10msLc3_10ms_48kHz_206400bpsPerChannel( void ) { +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 }; +#else + LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 2, .samplerate = 48000 }; +#endif return encodeAndDecodeOneStereoFrame( config, config.channels * 206400 ); } static int encodeAndDecodeOneStereoFrameIvas10msLc3_10ms_48kHz_207200bpsPerChannel( void ) { +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 1, .samplerate = 48000, .high_res_mode_enabled = 0 }; +#else + LC3PLUS_CONFIG config = { .lc3plus_frame_duration_us = 10 * 1000, .isar_frame_duration_us = 10 * 1000, .channels = 2, .samplerate = 48000 }; +#endif return encodeAndDecodeOneStereoFrame( config, config.channels * 207200 ); } +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS #include "ivas_lc3plus_unit_test_payload_format.c" +#endif int main( int argc, char *argv[] ) { - (void) argc; - (void) argv; + (void)argc; + (void)argv; int ret = 0; ret = openCloseEncoder(); if ( ret != 0 ) @@ -705,9 +841,11 @@ int main( ret = encodeAndDecodeOneStereoFrameIvas10msLc3_10ms_48kHz_124kbpsPerChannel(); if ( ret != 0 ) return 1; +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS ret = encodeAndDecodeOneStereoFrameIvas10msLc3_10ms_48kHz_800kbpsPerChannel(); if ( ret != 0 ) return 1; +#endif /* start configs around the FDL threshold */ ret = encodeAndDecodeOneStereoFrameIvas10msLc3_10ms_48kHz_204800bpsPerChannel(); if ( ret != 0 ) @@ -722,8 +860,16 @@ int main( if ( ret != 0 ) return 1; /* end configs around the FDL threshold */ +#ifdef ISAR_BITSTREAM_UPDATE_LC3PLUS ret = run_all_payload_tests(); if ( ret != 0 ) return 1; +#endif return 0; } +#else +int main( void ) +{ + return EXIT_SUCCESS; +} +#endif /* SPLIT_REND_WITH_HEAD_ROT */ diff --git a/scripts/split_rendering/lc3plus_float/ivas_lc3plus_unit_test.c b/scripts/split_rendering/lc3plus_float/ivas_lc3plus_unit_test.c index c15f14b4ccfa6d8d0311950926fddb4c5cc0dc70..d2becedec9cbcc48f041b34601d5d3a5ff8adc35 100644 --- a/scripts/split_rendering/lc3plus_float/ivas_lc3plus_unit_test.c +++ b/scripts/split_rendering/lc3plus_float/ivas_lc3plus_unit_test.c @@ -38,7 +38,7 @@ the United Nations Convention on Contracts on the International Sales of Goods. #include "isar_lc3plus_common.h" #include "isar_lc3plus_dec.h" #include "ivas_error_utils.h" -#include "lc3plus.h" +#include "lc3.h" #define MAX_SAMPLES_PER_CHANNEL 960 / 4 #define DEFAULT_BPS 256000 diff --git a/scripts/testv/mixed_mc714_foa_masa2_ism4_48.txt b/scripts/testv/mixed_mc714_foa_masa2_ism4.txt similarity index 78% rename from scripts/testv/mixed_mc714_foa_masa2_ism4_48.txt rename to scripts/testv/mixed_mc714_foa_masa2_ism4.txt index 394c73cbd3d89e52f0ec07f00dccc54a98357c34..800e88ae7cf96a208680d099d74bd91299a08d5e 100644 --- a/scripts/testv/mixed_mc714_foa_masa2_ism4_48.txt +++ b/scripts/testv/mixed_mc714_foa_masa2_ism4.txt @@ -1,4 +1,4 @@ -mixed_mc714_foa_masa2_ism4_48.wav +mixed_mc714_foa_masa2_ism4.wav 7 MC 1 diff --git a/scripts/testv/mixed_mc714_foa_masa2_ism4_48.wav b/scripts/testv/mixed_mc714_foa_masa2_ism4.wav similarity index 100% rename from scripts/testv/mixed_mc714_foa_masa2_ism4_48.wav rename to scripts/testv/mixed_mc714_foa_masa2_ism4.wav diff --git a/scripts/testv/mixed_mc714_foa_masa2_ism4_16.txt b/scripts/testv/mixed_mc714_foa_masa2_ism4_16.txt deleted file mode 100644 index 90338b42f70d61fa58fc654abcd128b31d4b308a..0000000000000000000000000000000000000000 --- a/scripts/testv/mixed_mc714_foa_masa2_ism4_16.txt +++ /dev/null @@ -1,24 +0,0 @@ -mixed_mc714_foa_masa2_ism4_16.wav -7 -MC -1 -7_1_4 -SBA -13 -1 -MASA -17 -2 -stv2MASA2TC16c.met -ISM -19 -stvISM1.csv -ISM -20 -stvISM2.csv -ISM -21 -stvISM3.csv -ISM -22 -stvISM4.csv diff --git a/scripts/testv/mixed_mc714_foa_masa2_ism4_16.wav b/scripts/testv/mixed_mc714_foa_masa2_ism4_16.wav deleted file mode 100644 index 72f1946cbb990a3724a9fd43b9aa4ea541bf5590..0000000000000000000000000000000000000000 --- a/scripts/testv/mixed_mc714_foa_masa2_ism4_16.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b02c4e9420d2400dad9b44ca81e6a4333afc958f5e4fe0b8697b39351162bd8a -size 2112080 diff --git a/scripts/testv/mixed_mc714_foa_masa2_ism4_32.txt b/scripts/testv/mixed_mc714_foa_masa2_ism4_32.txt deleted file mode 100644 index 007fc4f8872aa23f37cc393f0deb6b43bc22c3f5..0000000000000000000000000000000000000000 --- a/scripts/testv/mixed_mc714_foa_masa2_ism4_32.txt +++ /dev/null @@ -1,24 +0,0 @@ -mixed_mc714_foa_masa2_ism4_32.wav -7 -MC -1 -7_1_4 -SBA -13 -1 -MASA -17 -2 -stv2MASA2TC32c.met -ISM -19 -stvISM1.csv -ISM -20 -stvISM2.csv -ISM -21 -stvISM3.csv -ISM -22 -stvISM4.csv diff --git a/scripts/testv/mixed_mc714_foa_masa2_ism4_32.wav b/scripts/testv/mixed_mc714_foa_masa2_ism4_32.wav deleted file mode 100644 index 957016a4152932ed5f1382603b219f16db43739f..0000000000000000000000000000000000000000 --- a/scripts/testv/mixed_mc714_foa_masa2_ism4_32.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5618c31bad587705379ea8e5f19e0e2347188051951babe707873e41a7f0c202 -size 4224080 diff --git a/scripts/testv/mixed_scene_48.txt b/scripts/testv/mixed_scene.txt similarity index 100% rename from scripts/testv/mixed_scene_48.txt rename to scripts/testv/mixed_scene.txt diff --git a/scripts/testv/mixed_scene_16.txt b/scripts/testv/mixed_scene_16.txt deleted file mode 100644 index be8f68cae786d426d68b6f3d7399ad1bab11b120..0000000000000000000000000000000000000000 --- a/scripts/testv/mixed_scene_16.txt +++ /dev/null @@ -1,15 +0,0 @@ -spectral_test_16ch_16kHz.wav -4 -ISM -1 -ism_0a_0e.csv -ISM -2 -1 -1,-30,0 -SBA -3 -1 -MC -7 -5_1_4 diff --git a/scripts/testv/mixed_scene_32.txt b/scripts/testv/mixed_scene_32.txt deleted file mode 100644 index 6a91de0acbfb707c65fa86755265326005aca77e..0000000000000000000000000000000000000000 --- a/scripts/testv/mixed_scene_32.txt +++ /dev/null @@ -1,15 +0,0 @@ -spectral_test_16ch_32kHz.wav -4 -ISM -1 -ism_0a_0e.csv -ISM -2 -1 -1,-30,0 -SBA -3 -1 -MC -7 -5_1_4 diff --git a/scripts/testv/mixed_scene_simple_48.txt b/scripts/testv/mixed_scene_simple.txt similarity index 100% rename from scripts/testv/mixed_scene_simple_48.txt rename to scripts/testv/mixed_scene_simple.txt diff --git a/scripts/testv/mixed_scene_simple_16.txt b/scripts/testv/mixed_scene_simple_16.txt deleted file mode 100644 index 4d26764b72d6cd7927bf7f5173d2fa8b4972640b..0000000000000000000000000000000000000000 --- a/scripts/testv/mixed_scene_simple_16.txt +++ /dev/null @@ -1,12 +0,0 @@ -spectral_test_4ch_16kHz.wav -3 -ISM -1 -ism_0a_0e.csv -ISM -2 -1 -1,-30,0 -MC -3 -STEREO diff --git a/scripts/testv/mixed_scene_simple_32.txt b/scripts/testv/mixed_scene_simple_32.txt deleted file mode 100644 index 5c7fca0cafdf19ad877db9aa656f30ae4c0f703b..0000000000000000000000000000000000000000 --- a/scripts/testv/mixed_scene_simple_32.txt +++ /dev/null @@ -1,12 +0,0 @@ -spectral_test_4ch_32kHz.wav -3 -ISM -1 -ism_0a_0e.csv -ISM -2 -1 -1,-30,0 -MC -3 -STEREO diff --git a/scripts/testv/spectral_16.wav b/scripts/testv/spectral_16.wav deleted file mode 100644 index 325a12c90e917e705af1c44950cc3754eb71fe20..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_16.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0017722149e228bef3554bd2d847dd7d492d20d009828fc742b6c786feb568f8 -size 44378 diff --git a/scripts/testv/spectral_32.wav b/scripts/testv/spectral_32.wav deleted file mode 100644 index a92ed3e4486033882b478b222823927990a132b4..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_32.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:566fb46f379053b0d60c908a604c831d82882340bfa41a9064579a75f0f85c3d -size 44378 diff --git a/scripts/testv/spectral_48.wav b/scripts/testv/spectral_48.wav deleted file mode 100644 index 2a848767b5858219c847ce181eef76ba8945bbfd..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_48.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5fb911227c296a9c7030e21b67e610b9506ad627d4c2ec093bc15b36afe71af3 -size 44378 diff --git a/scripts/testv/spectral_test_10ch_16kHz.wav b/scripts/testv/spectral_test_10ch_16kHz.wav deleted file mode 100644 index a6ba926824bdde86735d337efe11aab133447b00..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_10ch_16kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c2a6457131471a7ed929bccba5d601b095521698f01eb8767faf56c96eb9576a -size 384044 diff --git a/scripts/testv/spectral_test_10ch_32kHz.wav b/scripts/testv/spectral_test_10ch_32kHz.wav deleted file mode 100644 index 3738c3d774878a6767a402f4ffe1de423bd2c465..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_10ch_32kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2c58b9fb451cd386d53063266e1f23cbe7c33434536de7b967b15a197538cd1b -size 768044 diff --git a/scripts/testv/spectral_test_10ch_48kHz.wav b/scripts/testv/spectral_test_10ch_48kHz.wav index 71afa0dbdf40769e883b00bdb420fee7c23eb0cd..4f96b5075c5b35f574589788f8292cbd8e9b8958 100644 --- a/scripts/testv/spectral_test_10ch_48kHz.wav +++ b/scripts/testv/spectral_test_10ch_48kHz.wav @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:41d90e02a8f51719c74e32098a5e46c9d15908f26df259a89e8b1843dcf4e312 -size 1152044 +oid sha256:1dff871cc4787b53ef73920e9611938c85ab698024cb58384c29d74eb089cfe0 +size 960080 diff --git a/scripts/testv/spectral_test_11ch_16kHz.wav b/scripts/testv/spectral_test_11ch_16kHz.wav deleted file mode 100644 index 23587cd44f50d5f422ff1a16f51b01d67bb955cd..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_11ch_16kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a2cd1b561cbf1dfdd1613d52bae794ae2f6477b805428aa21bf2a0bf7d13fb39 -size 422444 diff --git a/scripts/testv/spectral_test_11ch_32kHz.wav b/scripts/testv/spectral_test_11ch_32kHz.wav deleted file mode 100644 index 70b50fe4426e0dc8e1825a03d9afcddbdddb0604..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_11ch_32kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ec5720e8c6647da0bb9f2903569dc6b8a45a4dd2170bb5fae2eb4447929579ef -size 844844 diff --git a/scripts/testv/spectral_test_11ch_48kHz.wav b/scripts/testv/spectral_test_11ch_48kHz.wav index 3d0b84fb7016d236af304ca8a37ec8882e879359..4406f9e2fa648af72c3d1e04328695077d3efd6f 100644 --- a/scripts/testv/spectral_test_11ch_48kHz.wav +++ b/scripts/testv/spectral_test_11ch_48kHz.wav @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:65892c68e1ff4aeb67b93e1a84206e61b66a60a38d15fcac6ab21141da114662 -size 1267244 +oid sha256:79501e014bb57ae483875fd0626b0135d1a3f5273584acd7b8f367a332fc9228 +size 1056044 diff --git a/scripts/testv/spectral_test_12ch_16kHz.wav b/scripts/testv/spectral_test_12ch_16kHz.wav deleted file mode 100644 index bc40c17346650209d2d2e5e20b162de8e41a4c60..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_12ch_16kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5373d1bf1f0a94f2f6790c19092c7c37d7c4d10e8d79f212fbfc22f00fc224c1 -size 460844 diff --git a/scripts/testv/spectral_test_12ch_32kHz.wav b/scripts/testv/spectral_test_12ch_32kHz.wav deleted file mode 100644 index 86a4f83bb44b3943af716336e700221df294837c..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_12ch_32kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:633987a4c427c5b14b57a93f8c4a3af7d1a72b098c01b5d20d7e351dfb48ffa6 -size 921644 diff --git a/scripts/testv/spectral_test_12ch_48kHz.wav b/scripts/testv/spectral_test_12ch_48kHz.wav index 67e315eb055e0b882357df739b6931d6fa061d7a..4ee3e1d862d82116315c9408b0d08beb398e0fc5 100644 --- a/scripts/testv/spectral_test_12ch_48kHz.wav +++ b/scripts/testv/spectral_test_12ch_48kHz.wav @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3fbfda7e9901e753e590d3aa406e21446b3d6287f43f4815ceb810105448b6b8 -size 1382444 +oid sha256:17b2c1303af29e39ff72075b12b58dc0595411711bdcfdf52ebcc30074d1e987 +size 1152080 diff --git a/scripts/testv/spectral_test_13ch_16kHz.wav b/scripts/testv/spectral_test_13ch_16kHz.wav deleted file mode 100644 index 800890c0d99837ca5ce5b016ad0fd0769b35cacd..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_13ch_16kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:002ca60f43e7ef036f4270b652d4e3545e8d7c3cfad9510ca0d259cf8903f728 -size 499244 diff --git a/scripts/testv/spectral_test_13ch_32kHz.wav b/scripts/testv/spectral_test_13ch_32kHz.wav deleted file mode 100644 index fca814015184187240de2ead6952621bedcf6eab..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_13ch_32kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:00d4b4e90fc15edbba619eb7f0fa50c61fd4c381dd4391481c12a892fcbf0512 -size 998444 diff --git a/scripts/testv/spectral_test_13ch_48kHz.wav b/scripts/testv/spectral_test_13ch_48kHz.wav index c53e586e456a64862498b933d6ef6af212a2e733..31719ea091e7ded128d2e74ee314984d7c8941d4 100644 --- a/scripts/testv/spectral_test_13ch_48kHz.wav +++ b/scripts/testv/spectral_test_13ch_48kHz.wav @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:67d246269af70498c709b3bed8d82cb3ed270002025b1db3a3ea4fb7f5b06fc8 -size 1497644 +oid sha256:0bad70578fa0882caf7fc09718005d188bec65419937df3c93a2b6d27eaca09c +size 1248044 diff --git a/scripts/testv/spectral_test_14ch_16kHz.wav b/scripts/testv/spectral_test_14ch_16kHz.wav deleted file mode 100644 index 45ed9a4f1888b1b00527296c506ee2f0e885666a..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_14ch_16kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:530bcdb707bc68c7372bab34dc2d42ab38cb1cea78f06e6e599e572e9292caab -size 537644 diff --git a/scripts/testv/spectral_test_14ch_32kHz.wav b/scripts/testv/spectral_test_14ch_32kHz.wav deleted file mode 100644 index 4fdcdaff9f990bc8fbb7bfd75d75c918c4c49c2e..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_14ch_32kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3655db116fbfcc41428f21ec6be164fe86230d0cc260c617f0db7dd42edb269a -size 1075244 diff --git a/scripts/testv/spectral_test_14ch_48kHz.wav b/scripts/testv/spectral_test_14ch_48kHz.wav deleted file mode 100644 index 70dcfcc453afc5f53d92849c5c91c65ac024dbe4..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_14ch_48kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2c9c88d58faff9a99cee069502ce3b13182a4865bf4e638fda3ecfcd0206652e -size 1612844 diff --git a/scripts/testv/spectral_test_15ch_16kHz.wav b/scripts/testv/spectral_test_15ch_16kHz.wav deleted file mode 100644 index b89c58d7ad89b94dc0870a25b156bafd43b09a6a..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_15ch_16kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:352d785509028cf127d2cc3fbb9b2d77516f768e5f03f3197c63e81ac875f98b -size 576044 diff --git a/scripts/testv/spectral_test_15ch_32kHz.wav b/scripts/testv/spectral_test_15ch_32kHz.wav deleted file mode 100644 index facb5ca854cd634324d7cd2834fd5ad9c15221a7..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_15ch_32kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b2df93bfa230f1a3f37c67b0080f816684b72b1a28b1fca85fbcc9f9142471db -size 1152044 diff --git a/scripts/testv/spectral_test_15ch_48kHz.wav b/scripts/testv/spectral_test_15ch_48kHz.wav index a8186c7ffe0c6a74406905a739e9001b947bde76..b74d476014f974bbf6cce358b79a8c6ae4d10773 100644 --- a/scripts/testv/spectral_test_15ch_48kHz.wav +++ b/scripts/testv/spectral_test_15ch_48kHz.wav @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:760a914819b582eb2f64796f5497f569210e8a6f80e73e6ab5573003eac3eaa2 -size 1728044 +oid sha256:7ab7acc0e905b617a3f1053fb1c61e8ac9f4da9c7f22d1290ad4fe457e933b35 +size 1440044 diff --git a/scripts/testv/spectral_test_16ch_16kHz.wav b/scripts/testv/spectral_test_16ch_16kHz.wav deleted file mode 100644 index 68046cf8fffa2314a8fab72497021cfa825d14ce..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_16ch_16kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d0132eef4bd1eb73933abad05afe014448e0f0ea6ca722ae07ca43f7e05cb27b -size 614444 diff --git a/scripts/testv/spectral_test_16ch_32kHz.wav b/scripts/testv/spectral_test_16ch_32kHz.wav deleted file mode 100644 index 4f180d3057428078509d9d4216a861c4cc58cd8d..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_16ch_32kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3f12cc22a8a156ff06bd19b6da85025b043b84bd8ae3762df5ccd2b6232717a4 -size 1228844 diff --git a/scripts/testv/spectral_test_16ch_48kHz.wav b/scripts/testv/spectral_test_16ch_48kHz.wav index 12dd0968d44d0315268ed3e2b7a13d58e78b7110..9a367181c9832cd204fb8c4aacb5d42a251193b5 100644 --- a/scripts/testv/spectral_test_16ch_48kHz.wav +++ b/scripts/testv/spectral_test_16ch_48kHz.wav @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ba514e33af6fb9a8c65625a66cba3f7c4167f91082a567398cf0c397cb6754bf -size 1843244 +oid sha256:0df9a7fc7739481190e8a04bbe31dc352481e362114fcbca827f54b7bc32a9e8 +size 1536080 diff --git a/scripts/testv/spectral_test_17ch_16kHz.wav b/scripts/testv/spectral_test_17ch_16kHz.wav deleted file mode 100644 index 38e1d59e4b46bbaa3f9fb633de154e92b477d869..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_17ch_16kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:799b0759dcf5c559295c849f35435b34c9e6277c3ba36515d52a89f592edb03a -size 652844 diff --git a/scripts/testv/spectral_test_17ch_32kHz.wav b/scripts/testv/spectral_test_17ch_32kHz.wav deleted file mode 100644 index 0cfefe2a5fe333bc0dad440c9d9ca6766b2f5476..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_17ch_32kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8f3205a5f9f835efb6985ac3c13c206707c99b7fc7698182edda482e4ed48df0 -size 1305644 diff --git a/scripts/testv/spectral_test_17ch_48kHz.wav b/scripts/testv/spectral_test_17ch_48kHz.wav index 12cffb2cce47d3d32a253952d599c639861166c0..fea9dfc9e3674fa311ad394aeab13ba103a62cd0 100644 --- a/scripts/testv/spectral_test_17ch_48kHz.wav +++ b/scripts/testv/spectral_test_17ch_48kHz.wav @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:95a525516d7c8df6cac2e4dc242a95f5fba9964fff1ab07332b00bff229fe941 -size 1958444 +oid sha256:cfc3d214fc0c3b480a4e69ee4bc20632dfa7e14d18c739cb441c4407e0aa26da +size 1632044 diff --git a/scripts/testv/spectral_test_18ch_16kHz.wav b/scripts/testv/spectral_test_18ch_16kHz.wav deleted file mode 100644 index b3aab50af8a469491c5ec17fc5e21ec57fb8af29..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_18ch_16kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d6aee3babee4e8cddf74cf465429a8e54066e346ed1df73aff902043dd15a9ac -size 691244 diff --git a/scripts/testv/spectral_test_18ch_32kHz.wav b/scripts/testv/spectral_test_18ch_32kHz.wav deleted file mode 100644 index 4ed9da350b107649351e170c00c8011d9a44ce0d..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_18ch_32kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2c398f3e6bb699eb09f10f59f6321a796a9af875854c3a435bf261e32b543fa5 -size 1382444 diff --git a/scripts/testv/spectral_test_18ch_48kHz.wav b/scripts/testv/spectral_test_18ch_48kHz.wav index fbe130fee346df74b86d52259645e4c53f3bbda2..ef088d567c18b4931fde7ca68f3dca051a189af3 100644 --- a/scripts/testv/spectral_test_18ch_48kHz.wav +++ b/scripts/testv/spectral_test_18ch_48kHz.wav @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cd30ad6fc922b2fd12c6af42787a47a340b277e7d2c77ce76bc72c3886e0876d -size 2073644 +oid sha256:9461a003e8a75cc389842b704f5523f8ad61125c2b13aa8bdbf99d5b4ab357ae +size 1728044 diff --git a/scripts/testv/spectral_test_19ch_16kHz.wav b/scripts/testv/spectral_test_19ch_16kHz.wav deleted file mode 100644 index 4e646387ef197a71473c112518b3dda374e95f13..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_19ch_16kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:768b709a86265eb0f4ccf59b8b119922a6f155e8fa2f03c17467cc49ad1ee6c0 -size 729644 diff --git a/scripts/testv/spectral_test_19ch_32kHz.wav b/scripts/testv/spectral_test_19ch_32kHz.wav deleted file mode 100644 index d0c2342e61c2e5d843e81a70a8145467fcb64f11..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_19ch_32kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6f51fe306d6a6a91922d8fc7ca32bce02f46b44a4ed1b72a662dc704ba983624 -size 1459244 diff --git a/scripts/testv/spectral_test_19ch_48kHz.wav b/scripts/testv/spectral_test_19ch_48kHz.wav index afa0dfe5139e7b844cbb9c78ca07ab93f242fd66..757617df7928c9733bc60f61fbc5584fd3710a15 100644 --- a/scripts/testv/spectral_test_19ch_48kHz.wav +++ b/scripts/testv/spectral_test_19ch_48kHz.wav @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3dd5e5458118c1f325a7a6b25dd2bf980552ee192242bcf3bed1a3a92433ee1a -size 2188844 +oid sha256:dccd5e3b49ef78f1887a32fff3946cc45e7d66f82785f49555b217288a13524d +size 1824044 diff --git a/scripts/testv/spectral_test_1ch_16kHz.wav b/scripts/testv/spectral_test_1ch_16kHz.wav deleted file mode 100644 index 9aec361ca3ff58219366ae673d115bf4c7a3a96f..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_1ch_16kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2584e4087e0f1f55f4ad5e8d547e367639aee535950f2ec4a9bef056f939466d -size 38444 diff --git a/scripts/testv/spectral_test_1ch_32kHz.wav b/scripts/testv/spectral_test_1ch_32kHz.wav deleted file mode 100644 index 86e7953ec9e4aa502fefbde5bfe34959d6df302a..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_1ch_32kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4dfae46494b4ae4875f1cc43adc28159051dd85c0d3b979d87ab971250a2f389 -size 76844 diff --git a/scripts/testv/spectral_test_1ch_48kHz.wav b/scripts/testv/spectral_test_1ch_48kHz.wav index eb5e5e7d9a3edab04ad73032dfc365360be3e83f..ae67b5138c51c3ea5924105fb12c773288316796 100644 --- a/scripts/testv/spectral_test_1ch_48kHz.wav +++ b/scripts/testv/spectral_test_1ch_48kHz.wav @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c3379b95cff7505e468b006594721fc770f341c1896e1688d8034df6bc1d3cd2 -size 115244 +oid sha256:dd111053f9742063020e4ffb0f2705971ccaa87b5fbb78bb34626e0e3f7742e7 +size 96044 diff --git a/scripts/testv/spectral_test_20ch_16kHz.wav b/scripts/testv/spectral_test_20ch_16kHz.wav deleted file mode 100644 index 380203a696a9459d60d34c62eb2840916aef45b2..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_20ch_16kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4b70a4a49944f3462e1a1ea1c35d4e2c6a39d85deca19b50dad699eafb1524a0 -size 768044 diff --git a/scripts/testv/spectral_test_20ch_32kHz.wav b/scripts/testv/spectral_test_20ch_32kHz.wav deleted file mode 100644 index cabdd1181020177bf27669055260640e6f921774..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_20ch_32kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b5576848a7b4328c1842b864bc7601c32a6599e24f61597541928344013f11d8 -size 1536044 diff --git a/scripts/testv/spectral_test_20ch_48kHz.wav b/scripts/testv/spectral_test_20ch_48kHz.wav index 3af611ee688d374f9f14874edac8d762475da189..30e986372ccff7af0632179f9ab34289f2524fe5 100644 --- a/scripts/testv/spectral_test_20ch_48kHz.wav +++ b/scripts/testv/spectral_test_20ch_48kHz.wav @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:70e8d68b9ac8cc2a685e629f9d410e6f54132a236dd1f4ba017f1d28d6b5c55e -size 2304044 +oid sha256:39ce9d81bdd6c15196fd6a7e43ae0012a014245f10e66590ebe375ccd0aff6cd +size 1920044 diff --git a/scripts/testv/spectral_test_2ch_16kHz.wav b/scripts/testv/spectral_test_2ch_16kHz.wav deleted file mode 100644 index a2c60bab420c90a28279b2abe5e36e0897d2e52d..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_2ch_16kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6e4b3c257f526f4a77b65b7e0462e80fa163fb82ad3c592886ad5cfb838e406f -size 76844 diff --git a/scripts/testv/spectral_test_2ch_32kHz.wav b/scripts/testv/spectral_test_2ch_32kHz.wav deleted file mode 100644 index 7a4a2337bf2f65344e84b803c79542f92674e0f9..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_2ch_32kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cbebe863c7fa5b1ca63eedf4024b28cd2e09cc3253abe34e5c6457705cb0ab3b -size 153644 diff --git a/scripts/testv/spectral_test_2ch_48kHz.wav b/scripts/testv/spectral_test_2ch_48kHz.wav index 601e7f80fe7f45141cd5316eb2a2aa092a8ad941..334a479916b988c6d9fd9ac24f00f9fc50d82a52 100644 --- a/scripts/testv/spectral_test_2ch_48kHz.wav +++ b/scripts/testv/spectral_test_2ch_48kHz.wav @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:09ff2b2243aa6d6ce56bf44cd45cd72a7b61912d9fa33c3404b7bb17723c59cd -size 230444 +oid sha256:2f612f319abdd28cf859d75ae912364fd73b2b591200e307ab6903c629bc10e4 +size 192044 diff --git a/scripts/testv/spectral_test_3ch_16kHz.wav b/scripts/testv/spectral_test_3ch_16kHz.wav deleted file mode 100644 index 8f1b872ef11256afc0a5e421865a692d3ca187a8..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_3ch_16kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0ee0ac1ac76caa5b0bb50223f8f9874e8ead48d677df36ec38e4a44c3c48fb3c -size 115244 diff --git a/scripts/testv/spectral_test_3ch_32kHz.wav b/scripts/testv/spectral_test_3ch_32kHz.wav deleted file mode 100644 index 2d2ca8644f878aa64003bafccb86f4cd870cf329..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_3ch_32kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f5ca4b9cf53263c2f2e5a3b63b660689d518f9aba0cb5029f2b8f2c204375fea -size 230444 diff --git a/scripts/testv/spectral_test_3ch_48kHz.wav b/scripts/testv/spectral_test_3ch_48kHz.wav index ebc73250cdd5a2b85060e968d2076933722b2974..b68e211f2ef655f19f3905f8ce6c65a8f62b8d2e 100644 --- a/scripts/testv/spectral_test_3ch_48kHz.wav +++ b/scripts/testv/spectral_test_3ch_48kHz.wav @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4ec492b9b55d3dddc35fae0383fcea9c4b7a701ef9ee9c55065a72c83f187b9e -size 345644 +oid sha256:16559e4b0603e7d1079c9df98fd5763b84194e882b3e6d8086f6ddd6455bbb4f +size 288080 diff --git a/scripts/testv/spectral_test_4ch_16kHz.wav b/scripts/testv/spectral_test_4ch_16kHz.wav deleted file mode 100644 index ab62999b686f410ab02bc26094c14935d054ead3..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_4ch_16kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fb9356bb8653972ba616405cd77791b1b5cdcdb9cef587dfed6fc29060b1e373 -size 153644 diff --git a/scripts/testv/spectral_test_4ch_32kHz.wav b/scripts/testv/spectral_test_4ch_32kHz.wav deleted file mode 100644 index 8c2298ea0d10b6199758d46db29daeeba2cb490e..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_4ch_32kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ef6ec6af256eea5df2901a0428e99e7420e236d79a06529230d3b7958c057455 -size 307244 diff --git a/scripts/testv/spectral_test_4ch_48kHz.wav b/scripts/testv/spectral_test_4ch_48kHz.wav index 00b23a83d8a3864dff94453b699994e2da65a70d..6b9296e281b1c9a798605ef9c6b8f2ebfcfc6dce 100644 --- a/scripts/testv/spectral_test_4ch_48kHz.wav +++ b/scripts/testv/spectral_test_4ch_48kHz.wav @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:651e7150ba2c4eeb358c89631e6d7d5f31677806df980e5a9aeb6d8a86a80ae3 -size 460844 +oid sha256:80437a0e2cbb2adb8d9b6ca8a8fab8da229d88af6a14ce64f1cd703f4645bebf +size 384080 diff --git a/scripts/testv/spectral_test_5ch_16kHz.wav b/scripts/testv/spectral_test_5ch_16kHz.wav deleted file mode 100644 index 0ffc071234fee76cbac7901d12df35bed3f73be4..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_5ch_16kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b50d18cf89507aaa6e340ea4e8cb5cf4d9cb2df1242743e2bf998cf44e3af287 -size 192044 diff --git a/scripts/testv/spectral_test_5ch_32kHz.wav b/scripts/testv/spectral_test_5ch_32kHz.wav deleted file mode 100644 index e8187f6ec591b53d2461b037e68a924d644cfa8c..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_5ch_32kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1d014540ea0037e3f058a53c075ae661044c55dd846edf9f4e71270da01c4306 -size 384044 diff --git a/scripts/testv/spectral_test_5ch_48kHz.wav b/scripts/testv/spectral_test_5ch_48kHz.wav index 12546219972ae3eb4e5fcc3b46fbaaf953e0ff3f..f76de9fb586e76ec540634d05c0bfb9f9738c0d1 100644 --- a/scripts/testv/spectral_test_5ch_48kHz.wav +++ b/scripts/testv/spectral_test_5ch_48kHz.wav @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4e19abc074510f7e87d0a9ced4ea84ade519789ecc073feb6bf702680ad81138 -size 576044 +oid sha256:36254bd6bbc80967d9148635286ae9b192c05c31fe8ae0f2c88203cacf1789ce +size 480044 diff --git a/scripts/testv/spectral_test_6ch_16kHz.wav b/scripts/testv/spectral_test_6ch_16kHz.wav deleted file mode 100644 index d3ac05ac20a8533ccf5141f554bdc3a6a56df259..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_6ch_16kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:884b45e3f38a993b7243624f28d69a18542763ba4cfcd5cd7891c3b8b6734272 -size 230444 diff --git a/scripts/testv/spectral_test_6ch_32kHz.wav b/scripts/testv/spectral_test_6ch_32kHz.wav deleted file mode 100644 index 69aa08a250204b427d7365330a9c98ae02195167..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_6ch_32kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:54af93d7c91a91dca4936235ceac368899b30601380ec9ae81cb4332c31d995f -size 460844 diff --git a/scripts/testv/spectral_test_6ch_48kHz.wav b/scripts/testv/spectral_test_6ch_48kHz.wav index ab05758c404a0ec6b6e57db197dde5335e92e589..41ed7967c9402172e88920175139ce84921d268b 100644 --- a/scripts/testv/spectral_test_6ch_48kHz.wav +++ b/scripts/testv/spectral_test_6ch_48kHz.wav @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:206d0754dad7afdbb7e44484868193c82c47e720179ce3d52aab7e91d64d4f45 -size 691244 +oid sha256:28c44d1f897897fa8331889ab4de4464f7cee9bd80ea0936f715e4e9860b1c9f +size 576080 diff --git a/scripts/testv/spectral_test_7ch_16kHz.wav b/scripts/testv/spectral_test_7ch_16kHz.wav deleted file mode 100644 index 0f3c57b4a9115aa137cd3dafbff1b755a92d0ec6..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_7ch_16kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ef40b88590102dd0b67e93a72f8c190b115d3483bc68be2b0303912994362836 -size 268844 diff --git a/scripts/testv/spectral_test_7ch_32kHz.wav b/scripts/testv/spectral_test_7ch_32kHz.wav deleted file mode 100644 index b51f0c30a93a6ade898e80195c3d05a9f5c81cb9..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_7ch_32kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:449ea814633d97a6c16bfb2eb2ffa8077e2cabe8433df2a0037193b61a4bb141 -size 537644 diff --git a/scripts/testv/spectral_test_7ch_48kHz.wav b/scripts/testv/spectral_test_7ch_48kHz.wav index ce96e7177d972a8370df03d85138e56beb59da23..8edc91421e7eab53874be91d1589242201430f8b 100644 --- a/scripts/testv/spectral_test_7ch_48kHz.wav +++ b/scripts/testv/spectral_test_7ch_48kHz.wav @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ae257bbd5b26228d17eab40d54be3bbb55f3633017642374d4c9538a2a57d0a1 -size 806444 +oid sha256:4eb0a56b818be22c7092006af364f2b58a0513330d60c3e0e2977a5f542f1e47 +size 672044 diff --git a/scripts/testv/spectral_test_8ch_16kHz.wav b/scripts/testv/spectral_test_8ch_16kHz.wav deleted file mode 100644 index dcc81a80995302e87095a67dda5c6539095134c9..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_8ch_16kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:02ec123048db5dfcb32f8dbe3faa224e8ddac06f6aedd49fa8d1c65f1c58c5bb -size 307244 diff --git a/scripts/testv/spectral_test_8ch_32kHz.wav b/scripts/testv/spectral_test_8ch_32kHz.wav deleted file mode 100644 index 5897e491a0e84e0b3e9d6daa0bdc8ba8a6946258..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_8ch_32kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:af18448fd6e66baeaf9f9013d993324cbc22f1c22e32ef4d6453a152c1bfa9e1 -size 614444 diff --git a/scripts/testv/spectral_test_8ch_48kHz.wav b/scripts/testv/spectral_test_8ch_48kHz.wav index 639d953b77377c7e86b97aab9dfd72f22dc246b4..6bf42f52fab1e8c68ad068d245012c8d0a084761 100644 --- a/scripts/testv/spectral_test_8ch_48kHz.wav +++ b/scripts/testv/spectral_test_8ch_48kHz.wav @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7edd18012757ae8daf612d8d7635d65e1d51aa34b623c1a90b9a8c2faa879ad3 -size 921644 +oid sha256:220829574ff2adebece2c38afa607f0e2df00443519c5ffe795ce6db9a329666 +size 768080 diff --git a/scripts/testv/spectral_test_9ch_16kHz.wav b/scripts/testv/spectral_test_9ch_16kHz.wav deleted file mode 100644 index f0a05945bb362ad221af2c4f7c3038012a3c2aac..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_9ch_16kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a07ecf93b5d8e169080e8b3c47f04a32d1f9ffc3dfd7c567acbda8bfb9ce24aa -size 345644 diff --git a/scripts/testv/spectral_test_9ch_32kHz.wav b/scripts/testv/spectral_test_9ch_32kHz.wav deleted file mode 100644 index d54a5f50ba15c807ca08a703d3a0fc561a79de7a..0000000000000000000000000000000000000000 --- a/scripts/testv/spectral_test_9ch_32kHz.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6fbf36b7dd3f1807d2e8be1714730ae563e8d8ffb8f493dcd32fa7ef06ccac9a -size 691244 diff --git a/scripts/testv/spectral_test_9ch_48kHz.wav b/scripts/testv/spectral_test_9ch_48kHz.wav index d5b2a44761baaa8c9bf0218905802edf74911164..5c7d9f2a711e6fc34e70f57cafdc002706b161a3 100644 --- a/scripts/testv/spectral_test_9ch_48kHz.wav +++ b/scripts/testv/spectral_test_9ch_48kHz.wav @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1d089476de299c2eaf1c343ae6757f6ec0bb96bde3fcebb11a8fc2ace0ce02ef -size 1036844 +oid sha256:a99522fe24aa91c8be4cca8aaa9b6817e85bdf3e255f8705dee1b82b4e39dbab +size 864080 diff --git a/scripts/testv/stv1ISM16s.wav b/scripts/testv/stv1ISM16s.wav deleted file mode 100644 index 34967e4179b57f7d7463451f48d999b365594386..0000000000000000000000000000000000000000 --- a/scripts/testv/stv1ISM16s.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d6e4b82b810e1bc599b566f701a27d7fc830880c063c39f54aedfdd5a8e8623f -size 960044 diff --git a/scripts/testv/stv1ISM32s.wav b/scripts/testv/stv1ISM32s.wav deleted file mode 100644 index 7859a4b9fdf4b8e77b20c8081f1c031cf5bfd19b..0000000000000000000000000000000000000000 --- a/scripts/testv/stv1ISM32s.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:910cbe1007e3f1d075a53bc0169a00320ecddca9f96e414adcda86a218af5d36 -size 1920044 diff --git a/scripts/testv/stv2ISM16s.wav b/scripts/testv/stv2ISM16s.wav deleted file mode 100644 index 82a3e8d86489f14304ef083e0e2b250cf858a3fa..0000000000000000000000000000000000000000 --- a/scripts/testv/stv2ISM16s.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7ebacbedba37caef6da1e303c18a08e0d2246291c6a39555bc306ae9cf370669 -size 1920044 diff --git a/scripts/testv/stv2ISM32s.wav b/scripts/testv/stv2ISM32s.wav deleted file mode 100644 index 47383055f166d34d9269321c4942db68349090a1..0000000000000000000000000000000000000000 --- a/scripts/testv/stv2ISM32s.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7e69278e5fc62b13f0d51486689217a48c584079f6ad062af42f693ce36e5884 -size 3840044 diff --git a/scripts/testv/stv3ISM16s.wav b/scripts/testv/stv3ISM16s.wav deleted file mode 100644 index ec6a1c0c5bf48f39845e57933762faf0c4ea142f..0000000000000000000000000000000000000000 --- a/scripts/testv/stv3ISM16s.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:11ab0ebf626eea9c47dd8a3e4fc6a645d2d34cb92fde2eaca2674e070245503a -size 2880080 diff --git a/scripts/testv/stv3ISM32s.wav b/scripts/testv/stv3ISM32s.wav deleted file mode 100644 index ca26cf8443937aa0020b895f085cfba1052b80d3..0000000000000000000000000000000000000000 --- a/scripts/testv/stv3ISM32s.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:14bd28f1d05cf13ae88a43ee9951a23afb5d18c768032ff6b73a543d81c0e20a -size 5760080 diff --git a/scripts/testv/stv3OA48c_mono.wav b/scripts/testv/stv3OA48c_mono.wav deleted file mode 100644 index 32ae0033011f88117c58a9827dcbcc16f49650dc..0000000000000000000000000000000000000000 --- a/scripts/testv/stv3OA48c_mono.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c8acde6119ad9a2f2daab08912da7ff2b580447f94a7961b4ab9747eb84a134a -size 30720844 diff --git a/scripts/testv/stv4ISM16s.wav b/scripts/testv/stv4ISM16s.wav deleted file mode 100644 index b86adad4157bc1810ab4ebe9c9aa27c04c605773..0000000000000000000000000000000000000000 --- a/scripts/testv/stv4ISM16s.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7819679af57a883048c23dec9624e0e2362edde9d91d285feccf1f3431966fee -size 3840080 diff --git a/scripts/testv/stv4ISM32s.wav b/scripts/testv/stv4ISM32s.wav deleted file mode 100644 index 5c0c8c208b38404f17ce4537979cf3bca3561b5b..0000000000000000000000000000000000000000 --- a/scripts/testv/stv4ISM32s.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ad58be9dbb83163300832ea2af55ad98fb050e56bd03dbbf949ff64762f6926c -size 7680080 diff --git a/scripts/testv/stv512MC16c.wav b/scripts/testv/stv512MC16c.wav deleted file mode 100644 index 9c6d2e766363d8c8217c0511dc611948c93284c2..0000000000000000000000000000000000000000 --- a/scripts/testv/stv512MC16c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b06cb427a52de9e368d2e94be36e6ff5193a8bc265d035f429d1b631baa55d72 -size 768080 diff --git a/scripts/testv/stv512MC32c.wav b/scripts/testv/stv512MC32c.wav deleted file mode 100644 index 3e8542bf1aeb8843693e06c678e872b9929b74c0..0000000000000000000000000000000000000000 --- a/scripts/testv/stv512MC32c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:de8d3726e565c0198ddf9b9ddd93ea6594dc39a8ee1eb7471f9e5a3bd290710e -size 1536080 diff --git a/scripts/testv/stv514MC16c.wav b/scripts/testv/stv514MC16c.wav deleted file mode 100644 index 71188ea1e25d4b62ec5cf22b9070b4a52fe22f20..0000000000000000000000000000000000000000 --- a/scripts/testv/stv514MC16c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7850f0d36254ad9c038b69216993c49d317f0852d2ca85e320e33c27b06e2f66 -size 960080 diff --git a/scripts/testv/stv514MC32c.wav b/scripts/testv/stv514MC32c.wav deleted file mode 100644 index 6e79e4e418e921d9d6dc61e49cbe74fa9f36e340..0000000000000000000000000000000000000000 --- a/scripts/testv/stv514MC32c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1df8fea325f6f9deb9157f80e80b4ee1e127e0438a863327bc6dd51e97a59bc5 -size 1920080 diff --git a/scripts/testv/stv51MC16c.wav b/scripts/testv/stv51MC16c.wav deleted file mode 100644 index ffba13d84fdec8db7bdb46b64e5c1e26bf76c0a6..0000000000000000000000000000000000000000 --- a/scripts/testv/stv51MC16c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:49fd942a6c4ebb52c1f8ca231588d3c0fd6561739d440a60ef4859e867a01a32 -size 3840080 diff --git a/scripts/testv/stv714MC16c.wav b/scripts/testv/stv714MC16c.wav deleted file mode 100644 index a4ee86d2fb3eb787afa343e251e6366c091b10f1..0000000000000000000000000000000000000000 --- a/scripts/testv/stv714MC16c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:25e5a8c847e572d3fa26658c2bfd6fa782e2dbea84f4b8f0edfb70758ec7c850 -size 1152080 diff --git a/scripts/testv/stv714MC32c.wav b/scripts/testv/stv714MC32c.wav deleted file mode 100644 index faedba157de479b1bf2be0b509733cb35bc2d646..0000000000000000000000000000000000000000 --- a/scripts/testv/stv714MC32c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b91c0dd73f763af5422e65c276c83742165f383c5dea9e5fd4e9db9cf020c819 -size 2304080 diff --git a/scripts/testv/stv71MC16c.wav b/scripts/testv/stv71MC16c.wav deleted file mode 100644 index 5d617361ad32c5785d34c487eee038732b5ad84e..0000000000000000000000000000000000000000 --- a/scripts/testv/stv71MC16c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d834a53f11b316649ac707e6bd948712145c08244caad351ddcedf89ff7ed341 -size 768080 diff --git a/scripts/testv/stv71MC32c.wav b/scripts/testv/stv71MC32c.wav deleted file mode 100644 index 6e2dfc17600a6337a2d63a87d2a02880a9a6c47b..0000000000000000000000000000000000000000 --- a/scripts/testv/stv71MC32c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:32ead6d82b6a444f9cb7ced597df7e896ccb594eabd54b7769f97a0548ee2343 -size 1536080 diff --git a/scripts/testv/stvOMASA_1ISM_1MASA1TC16c.met b/scripts/testv/stvOMASA_1ISM_1MASA1TC16c.met deleted file mode 100644 index f2ce23bd2054140614b7d2ad88769d5d2db77990..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_1ISM_1MASA1TC16c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6349efe3448d28979b80744bcdc29d57f1c025704939b42d7b913d7fc3f23ccc -size 102300 diff --git a/scripts/testv/stvOMASA_1ISM_1MASA1TC16c.wav b/scripts/testv/stvOMASA_1ISM_1MASA1TC16c.wav deleted file mode 100644 index c2a042824fa91150753757d8e0fbeea83b8f670d..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_1ISM_1MASA1TC16c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9c56cac93352b2a385ba40190bbbd90bb94cc9915b4ad5e28649647e5512a123 -size 192044 diff --git a/scripts/testv/stvOMASA_1ISM_1MASA1TC16c_ISM1.csv b/scripts/testv/stvOMASA_1ISM_1MASA1TC16c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_1ISM_1MASA1TC16c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_1ISM_1MASA1TC32c.met b/scripts/testv/stvOMASA_1ISM_1MASA1TC32c.met deleted file mode 100644 index f2ce23bd2054140614b7d2ad88769d5d2db77990..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_1ISM_1MASA1TC32c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6349efe3448d28979b80744bcdc29d57f1c025704939b42d7b913d7fc3f23ccc -size 102300 diff --git a/scripts/testv/stvOMASA_1ISM_1MASA1TC32c.wav b/scripts/testv/stvOMASA_1ISM_1MASA1TC32c.wav deleted file mode 100644 index 44c05587f8fcf73766c989f679cdd89faf3ad6a3..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_1ISM_1MASA1TC32c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2b42e9ea7939632e618477f0b397cec2989dd3a16d6f8e3995a41c59a0f696e2 -size 384044 diff --git a/scripts/testv/stvOMASA_1ISM_1MASA1TC32c_ISM1.csv b/scripts/testv/stvOMASA_1ISM_1MASA1TC32c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_1ISM_1MASA1TC32c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_1ISM_1MASA2TC16c.met b/scripts/testv/stvOMASA_1ISM_1MASA2TC16c.met deleted file mode 100644 index 00acdae5394c5d40e9193d7dd9cd1fee6d182c24..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_1ISM_1MASA2TC16c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5a1f87bfe360dbd221a94583aa68a58ef050e968a63351730d643f2dc2cac4e1 -size 204600 diff --git a/scripts/testv/stvOMASA_1ISM_1MASA2TC16c.wav b/scripts/testv/stvOMASA_1ISM_1MASA2TC16c.wav deleted file mode 100644 index e199a8315f97dbe511e9f12a36e4c5cb48cc1dcc..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_1ISM_1MASA2TC16c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:14c5871edbd033f8c379e4eaf0c0a248ebb61809e96449f2278352c223cf26cf -size 576080 diff --git a/scripts/testv/stvOMASA_1ISM_1MASA2TC16c_ISM1.csv b/scripts/testv/stvOMASA_1ISM_1MASA2TC16c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_1ISM_1MASA2TC16c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_1ISM_1MASA2TC32c.met b/scripts/testv/stvOMASA_1ISM_1MASA2TC32c.met deleted file mode 100644 index 00acdae5394c5d40e9193d7dd9cd1fee6d182c24..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_1ISM_1MASA2TC32c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5a1f87bfe360dbd221a94583aa68a58ef050e968a63351730d643f2dc2cac4e1 -size 204600 diff --git a/scripts/testv/stvOMASA_1ISM_1MASA2TC32c.wav b/scripts/testv/stvOMASA_1ISM_1MASA2TC32c.wav deleted file mode 100644 index a99f9d1b177a4de71d810f20c145c236472f1492..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_1ISM_1MASA2TC32c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d538cc9f95fc7462a031912f8954029daf77190acd0a4041d4537f34f77f281b -size 1152080 diff --git a/scripts/testv/stvOMASA_1ISM_1MASA2TC32c_ISM1.csv b/scripts/testv/stvOMASA_1ISM_1MASA2TC32c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_1ISM_1MASA2TC32c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_1ISM_2MASA1TC16c.met b/scripts/testv/stvOMASA_1ISM_2MASA1TC16c.met deleted file mode 100644 index 64688774087538a671ebfda830ff11b4f836f438..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_1ISM_2MASA1TC16c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d125a4c4e3989ac55f9c2617f464431feae4ede9b2e15d087d3271c0a4a56303 -size 319800 diff --git a/scripts/testv/stvOMASA_1ISM_2MASA1TC16c.wav b/scripts/testv/stvOMASA_1ISM_2MASA1TC16c.wav deleted file mode 100644 index 46a49f4ad7308e48112e7a739cb538060b30eb98..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_1ISM_2MASA1TC16c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e6a112c927d875df5fe654b63f3f92c04557db4944f5c1390caf7e3f34b53e34 -size 384044 diff --git a/scripts/testv/stvOMASA_1ISM_2MASA1TC16c_ISM1.csv b/scripts/testv/stvOMASA_1ISM_2MASA1TC16c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_1ISM_2MASA1TC16c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_1ISM_2MASA1TC32c.met b/scripts/testv/stvOMASA_1ISM_2MASA1TC32c.met deleted file mode 100644 index 64688774087538a671ebfda830ff11b4f836f438..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_1ISM_2MASA1TC32c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d125a4c4e3989ac55f9c2617f464431feae4ede9b2e15d087d3271c0a4a56303 -size 319800 diff --git a/scripts/testv/stvOMASA_1ISM_2MASA1TC32c_ISM1.csv b/scripts/testv/stvOMASA_1ISM_2MASA1TC32c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_1ISM_2MASA1TC32c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_1ISM_2MASA2TC16c.met b/scripts/testv/stvOMASA_1ISM_2MASA2TC16c.met deleted file mode 100644 index 1b62022af572fc4f198e4212cca88d51913ec3c4..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_1ISM_2MASA2TC16c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2eb412d646d7a32c77413dea54dc44cf45dc49e6d8c2de19abe4f4b93a91fa4a -size 159900 diff --git a/scripts/testv/stvOMASA_1ISM_2MASA2TC16c.wav b/scripts/testv/stvOMASA_1ISM_2MASA2TC16c.wav deleted file mode 100644 index aa1d31a2e0286dd78a00ade156b4f6845325aed5..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_1ISM_2MASA2TC16c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e947718dec05ad627498172337750a08c5cc8405196cdcd2e59d2a1fe483c40e -size 288080 diff --git a/scripts/testv/stvOMASA_1ISM_2MASA2TC16c_ISM1.csv b/scripts/testv/stvOMASA_1ISM_2MASA2TC16c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_1ISM_2MASA2TC16c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_1ISM_2MASA2TC32c.met b/scripts/testv/stvOMASA_1ISM_2MASA2TC32c.met deleted file mode 100644 index 1b62022af572fc4f198e4212cca88d51913ec3c4..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_1ISM_2MASA2TC32c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2eb412d646d7a32c77413dea54dc44cf45dc49e6d8c2de19abe4f4b93a91fa4a -size 159900 diff --git a/scripts/testv/stvOMASA_1ISM_2MASA2TC32c.wav b/scripts/testv/stvOMASA_1ISM_2MASA2TC32c.wav deleted file mode 100644 index e80d302e4a998922992271fb467d8a2cc5252050..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_1ISM_2MASA2TC32c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:980c1e3a03b954dabcd310f5ba8bb65020818926589ecb576586a3b17dc131db -size 576080 diff --git a/scripts/testv/stvOMASA_1ISM_2MASA2TC32c_ISM1.csv b/scripts/testv/stvOMASA_1ISM_2MASA2TC32c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_1ISM_2MASA2TC32c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_2ISM_1MASA1TC16c.met b/scripts/testv/stvOMASA_2ISM_1MASA1TC16c.met deleted file mode 100644 index f2ce23bd2054140614b7d2ad88769d5d2db77990..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_1MASA1TC16c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6349efe3448d28979b80744bcdc29d57f1c025704939b42d7b913d7fc3f23ccc -size 102300 diff --git a/scripts/testv/stvOMASA_2ISM_1MASA1TC16c_ISM1.csv b/scripts/testv/stvOMASA_2ISM_1MASA1TC16c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_1MASA1TC16c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_2ISM_1MASA1TC16c_ISM2.csv b/scripts/testv/stvOMASA_2ISM_1MASA1TC16c_ISM2.csv deleted file mode 100644 index f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_1MASA1TC16c_ISM2.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,4.80,16.00,0.00,1.00,0.00,0.00,0 -0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0 -0.00,14.40,15.96,0.00,1.00,4.80,9.60,0 -0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0 -0.00,24.00,15.91,0.00,1.00,14.40,19.20,0 -0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0 -0.00,33.60,15.87,0.00,1.00,19.20,28.80,0 -0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0 -0.00,43.20,15.83,0.00,1.00,28.80,38.40,0 -0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0 -0.00,52.80,15.79,0.00,1.00,38.40,48.00,0 -0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0 -0.00,62.40,15.74,0.00,1.00,48.00,57.60,0 -4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0 -4.80,72.00,15.70,0.00,1.00,57.60,67.20,0 -4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0 -9.60,81.60,15.66,0.00,1.00,72.00,76.80,0 -19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0 -134.40,86.40,15.62,0.00,1.00,86.40,86.40,0 -168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0 -172.80,76.80,15.57,0.00,1.00,100.80,86.40,0 -177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0 -177.60,67.20,15.53,0.00,1.00,110.40,76.80,0 -177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0 -177.60,57.60,15.49,0.00,1.00,124.80,67.20,0 -177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0 -177.60,48.00,15.44,0.00,1.00,134.40,57.60,0 -177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0 -177.60,38.40,15.40,0.00,1.00,144.00,48.00,0 -177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0 -177.60,28.80,15.36,0.00,1.00,153.60,38.40,0 -177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0 -177.60,19.20,15.32,0.00,1.00,158.40,28.80,0 -177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0 -177.60,9.60,15.27,0.00,1.00,168.00,19.20,0 -177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0 -177.60,0.00,15.23,0.00,1.00,172.80,9.60,0 --177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0 --177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0 --177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0 --177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0 --177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0 --177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0 --177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0 --177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0 --177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0 --177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0 --177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0 --177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0 --177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0 --177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0 --177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0 --177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0 --172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0 --168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0 --134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0 --19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0 --9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0 --4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0 --4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0 --4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0 --0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0 --0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0 --0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0 --0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0 --0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0 --0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0 --0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0 --0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0 --0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0 --0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0 --0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0 --0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0 --0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0 --0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,14.40,0.00,1.00,0.00,0.00,0 --0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0 --0.00,14.40,14.36,0.00,1.00,9.60,9.60,0 --0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0 --0.00,24.00,14.31,0.00,1.00,14.40,19.20,0 --0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0 --0.00,33.60,14.27,0.00,1.00,24.00,28.80,0 --4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0 --4.80,43.20,14.23,0.00,1.00,28.80,38.40,0 --4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0 --4.80,52.80,14.18,0.00,1.00,38.40,48.00,0 --4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0 --4.80,62.40,14.14,0.00,1.00,48.00,57.60,0 --9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0 --9.60,72.00,14.10,0.00,1.00,62.40,67.20,0 --14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0 --24.00,81.60,14.06,0.00,1.00,72.00,76.80,0 --43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0 --110.40,86.40,14.01,0.00,1.00,86.40,86.40,0 --148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0 --163.20,76.80,13.97,0.00,1.00,96.00,81.60,0 --168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0 --172.80,67.20,13.93,0.00,1.00,110.40,72.00,0 --172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0 --172.80,57.60,13.89,0.00,1.00,120.00,62.40,0 --172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0 --177.60,48.00,13.84,0.00,1.00,134.40,52.80,0 --177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0 --177.60,38.40,13.80,0.00,1.00,144.00,43.20,0 --177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0 --177.60,28.80,13.76,0.00,1.00,148.80,33.60,0 --177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0 --177.60,19.20,13.71,0.00,1.00,158.40,24.00,0 --177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0 --177.60,9.60,13.67,0.00,1.00,168.00,14.40,0 --177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0 --177.60,0.00,13.63,0.00,1.00,172.80,4.80,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0 -177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0 -177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0 -177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0 -177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0 -177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0 -177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0 -172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0 -172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0 -172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0 -172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0 -168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0 -163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0 -148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0 -110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0 -43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0 -24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0 -14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0 -9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0 -9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0 -4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0 -4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0 -4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0 -4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0 -4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0 -0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0 -0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0 -0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0 -0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0 -0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,12.80,0.00,1.00,0.00,0.00,0 --0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0 --0.00,14.40,12.75,0.00,1.00,9.60,9.60,0 --4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0 --4.80,24.00,12.71,0.00,1.00,14.40,19.20,0 --4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0 --4.80,33.60,12.67,0.00,1.00,24.00,28.80,0 --4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0 --9.60,43.20,12.62,0.00,1.00,33.60,38.40,0 --9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0 --9.60,52.80,12.58,0.00,1.00,43.20,48.00,0 --14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0 --14.40,62.40,12.54,0.00,1.00,52.80,57.60,0 --19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0 --24.00,72.00,12.50,0.00,1.00,62.40,67.20,0 --33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0 --43.20,76.80,12.45,0.00,1.00,72.00,72.00,0 --67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0 --96.00,81.60,12.41,0.00,1.00,86.40,81.60,0 --124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0 --144.00,76.80,12.37,0.00,1.00,96.00,76.80,0 --153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0 --158.40,67.20,12.33,0.00,1.00,110.40,72.00,0 --163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0 --168.00,57.60,12.28,0.00,1.00,120.00,62.40,0 --168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0 --168.00,48.00,12.24,0.00,1.00,129.60,52.80,0 --172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0 --172.80,38.40,12.20,0.00,1.00,139.20,43.20,0 --172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0 --172.80,28.80,12.15,0.00,1.00,148.80,33.60,0 --177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0 --177.60,19.20,12.11,0.00,1.00,158.40,24.00,0 --177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0 --177.60,9.60,12.07,0.00,1.00,168.00,14.40,0 --177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0 --177.60,0.00,12.03,0.00,1.00,172.80,4.80,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0 -177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0 -172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0 -172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0 -168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0 -168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0 -168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0 -163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0 -158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0 -153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0 -144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0 -124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0 -96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0 -67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0 -43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0 -33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0 -24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0 -19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0 -14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0 -14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0 -9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0 -9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0 -9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0 -4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0 -4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0 -0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,11.19,0.00,1.00,0.00,0.00,0 --0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0 --4.80,14.40,11.15,0.00,1.00,9.60,9.60,0 --4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0 --4.80,24.00,11.11,0.00,1.00,14.40,19.20,0 --4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0 --9.60,33.60,11.07,0.00,1.00,24.00,28.80,0 --9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0 --14.40,43.20,11.02,0.00,1.00,33.60,38.40,0 --14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0 --14.40,52.80,10.98,0.00,1.00,43.20,48.00,0 --19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0 --24.00,57.60,10.94,0.00,1.00,52.80,52.80,0 --28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0 --33.60,67.20,10.89,0.00,1.00,62.40,62.40,0 --43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0 --57.60,72.00,10.85,0.00,1.00,76.80,72.00,0 --76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0 --96.00,76.80,10.81,0.00,1.00,86.40,76.80,0 --115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0 --129.60,72.00,10.77,0.00,1.00,96.00,76.80,0 --139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0 --148.80,67.20,10.72,0.00,1.00,105.60,67.20,0 --153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0 --158.40,57.60,10.68,0.00,1.00,120.00,62.40,0 --163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0 --163.20,48.00,10.64,0.00,1.00,129.60,52.80,0 --168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0 --168.00,38.40,10.60,0.00,1.00,139.20,43.20,0 --172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0 --172.80,28.80,10.55,0.00,1.00,148.80,33.60,0 --172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0 --172.80,19.20,10.51,0.00,1.00,158.40,24.00,0 --177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0 --177.60,9.60,10.47,0.00,1.00,163.20,14.40,0 --177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0 --177.60,0.00,10.42,0.00,1.00,172.80,4.80,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0 -168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0 -168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0 -163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0 -163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0 -158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0 -153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0 -148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0 -139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0 -129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0 -115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0 -96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0 -76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0 -57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0 -43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0 -33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0 -28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0 -24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0 -19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0 -14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0 -14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0 -14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0 -9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0 -9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0 -4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0 -4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0 -0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,9.59,0.00,1.00,0.00,0.00,0 --4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0 --4.80,14.40,9.55,0.00,1.00,9.60,9.60,0 --4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0 --9.60,24.00,9.51,0.00,1.00,19.20,19.20,0 --9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0 --9.60,33.60,9.46,0.00,1.00,24.00,28.80,0 --14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0 --14.40,38.40,9.42,0.00,1.00,33.60,33.60,0 --19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0 --24.00,48.00,9.38,0.00,1.00,43.20,43.20,0 --24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0 --28.80,57.60,9.34,0.00,1.00,52.80,52.80,0 --38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0 --43.20,62.40,9.29,0.00,1.00,67.20,62.40,0 --52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0 --62.40,72.00,9.25,0.00,1.00,76.80,67.20,0 --76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0 --96.00,72.00,9.21,0.00,1.00,86.40,72.00,0 --110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0 --120.00,67.20,9.16,0.00,1.00,96.00,72.00,0 --134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0 --139.20,62.40,9.12,0.00,1.00,105.60,67.20,0 --148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0 --153.60,57.60,9.08,0.00,1.00,115.20,57.60,0 --158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0 --158.40,48.00,9.04,0.00,1.00,129.60,52.80,0 --163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0 --163.20,38.40,8.99,0.00,1.00,139.20,43.20,0 --168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0 --168.00,28.80,8.95,0.00,1.00,148.80,33.60,0 --172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0 --172.80,19.20,8.91,0.00,1.00,153.60,24.00,0 --172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0 --177.60,9.60,8.87,0.00,1.00,163.20,14.40,0 --177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0 --177.60,0.00,8.82,0.00,1.00,172.80,4.80,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0 -168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0 -163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0 -163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0 -158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0 -158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0 -153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0 -148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0 -139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0 -134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0 -120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0 -110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0 -96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0 -76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0 -62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0 -52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0 -43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0 -38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0 -28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0 -24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0 -24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0 -19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0 -14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0 -14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0 -9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0 -9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0 -9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0 -0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,7.99,0.00,1.00,0.00,0.00,0 --4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0 --4.80,14.40,7.95,0.00,1.00,9.60,9.60,0 --9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0 --9.60,24.00,7.90,0.00,1.00,19.20,19.20,0 --14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0 --14.40,28.80,7.86,0.00,1.00,28.80,24.00,0 --19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0 --19.20,38.40,7.82,0.00,1.00,38.40,33.60,0 --24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0 --28.80,48.00,7.78,0.00,1.00,48.00,43.20,0 --33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0 --38.40,52.80,7.73,0.00,1.00,57.60,52.80,0 --43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0 --48.00,62.40,7.69,0.00,1.00,67.20,57.60,0 --57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0 --67.20,67.20,7.65,0.00,1.00,76.80,62.40,0 --81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0 --91.20,67.20,7.60,0.00,1.00,86.40,67.20,0 --105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0 --115.20,67.20,7.56,0.00,1.00,96.00,67.20,0 --124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0 --134.40,57.60,7.52,0.00,1.00,105.60,62.40,0 --139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0 --144.00,52.80,7.48,0.00,1.00,115.20,57.60,0 --148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0 --153.60,43.20,7.43,0.00,1.00,124.80,48.00,0 --158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0 --163.20,38.40,7.39,0.00,1.00,134.40,38.40,0 --163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0 --168.00,28.80,7.35,0.00,1.00,144.00,33.60,0 --168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0 --172.80,19.20,7.31,0.00,1.00,153.60,24.00,0 --172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0 --177.60,9.60,7.26,0.00,1.00,163.20,14.40,0 --177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0 --177.60,0.00,7.22,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0 -163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0 -158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0 -153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0 -148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0 -144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0 -139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0 -134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0 -124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0 -115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0 -105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0 -91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0 -81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0 -67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0 -57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0 -48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0 -43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0 -38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0 -33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0 -28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0 -24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0 -19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0 -19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0 -14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0 -9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0 -0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,6.39,0.00,1.00,0.00,0.00,0 --4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0 --4.80,14.40,6.34,0.00,1.00,9.60,9.60,0 --9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0 --9.60,19.20,6.30,0.00,1.00,19.20,14.40,0 --14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0 --19.20,28.80,6.26,0.00,1.00,28.80,24.00,0 --19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0 --24.00,38.40,6.22,0.00,1.00,38.40,33.60,0 --28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0 --33.60,43.20,6.17,0.00,1.00,48.00,38.40,0 --38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0 --43.20,52.80,6.13,0.00,1.00,57.60,48.00,0 --48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0 --52.80,57.60,6.09,0.00,1.00,67.20,52.80,0 --62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0 --72.00,62.40,6.05,0.00,1.00,76.80,57.60,0 --81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0 --91.20,62.40,6.00,0.00,1.00,86.40,62.40,0 --100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0 --110.40,62.40,5.96,0.00,1.00,96.00,62.40,0 --120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0 --129.60,57.60,5.92,0.00,1.00,105.60,57.60,0 --134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0 --139.20,48.00,5.87,0.00,1.00,115.20,52.80,0 --144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0 --148.80,43.20,5.83,0.00,1.00,124.80,48.00,0 --153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0 --158.40,33.60,5.79,0.00,1.00,134.40,38.40,0 --163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0 --163.20,28.80,5.75,0.00,1.00,144.00,28.80,0 --168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0 --168.00,19.20,5.70,0.00,1.00,153.60,24.00,0 --172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0 --172.80,9.60,5.66,0.00,1.00,163.20,14.40,0 --177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0 --177.60,0.00,5.62,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0 -163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0 -158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0 -148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0 -144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0 -139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0 -134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0 -129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0 -120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0 -110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0 -100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0 -91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0 -81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0 -72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0 -62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0 -52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0 -48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0 -43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0 -38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0 -33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0 -28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0 -24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0 -19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0 -19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0 -9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0 -4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0 -0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,4.79,0.00,1.00,0.00,0.00,0 --4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0 --9.60,14.40,4.74,0.00,1.00,9.60,9.60,0 --9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0 --14.40,19.20,4.70,0.00,1.00,19.20,14.40,0 --14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0 --19.20,28.80,4.66,0.00,1.00,28.80,24.00,0 --24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0 --28.80,33.60,4.61,0.00,1.00,38.40,28.80,0 --28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0 --33.60,43.20,4.57,0.00,1.00,48.00,38.40,0 --38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0 --48.00,48.00,4.53,0.00,1.00,57.60,43.20,0 --52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0 --57.60,52.80,4.49,0.00,1.00,67.20,48.00,0 --67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0 --76.80,57.60,4.44,0.00,1.00,76.80,52.80,0 --81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0 --91.20,57.60,4.40,0.00,1.00,86.40,57.60,0 --100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0 --110.40,57.60,4.36,0.00,1.00,96.00,57.60,0 --115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0 --124.80,52.80,4.32,0.00,1.00,105.60,52.80,0 --129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0 --139.20,48.00,4.27,0.00,1.00,115.20,48.00,0 --144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0 --148.80,38.40,4.23,0.00,1.00,124.80,43.20,0 --153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0 --153.60,33.60,4.19,0.00,1.00,134.40,38.40,0 --158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0 --163.20,24.00,4.14,0.00,1.00,144.00,28.80,0 --163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0 --168.00,19.20,4.10,0.00,1.00,153.60,24.00,0 --172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0 --172.80,9.60,4.06,0.00,1.00,163.20,14.40,0 --177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0 --177.60,0.00,4.02,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0 -163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0 -163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0 -158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0 -148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0 -144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0 -139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0 -129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0 -124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0 -115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0 -110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0 -100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0 -91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0 -81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0 -76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0 -67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0 -57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0 -52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0 -48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0 -38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0 -33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0 -28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0 -28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0 -24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0 -19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0 -14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0 -14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0 -9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0 -0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.18,0.00,1.00,0.00,0.00,0 --4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0 --9.60,9.60,3.14,0.00,1.00,9.60,9.60,0 --9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0 --14.40,19.20,3.10,0.00,1.00,19.20,14.40,0 --19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0 --24.00,24.00,3.05,0.00,1.00,28.80,24.00,0 --24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0 --28.80,33.60,3.01,0.00,1.00,38.40,28.80,0 --33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0 --38.40,38.40,2.97,0.00,1.00,48.00,33.60,0 --43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0 --48.00,43.20,2.93,0.00,1.00,57.60,43.20,0 --52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0 --62.40,48.00,2.88,0.00,1.00,67.20,48.00,0 --67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0 --76.80,52.80,2.84,0.00,1.00,76.80,48.00,0 --86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0 --91.20,52.80,2.80,0.00,1.00,86.40,52.80,0 --100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0 --105.60,52.80,2.76,0.00,1.00,96.00,52.80,0 --115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0 --120.00,48.00,2.71,0.00,1.00,105.60,48.00,0 --129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0 --134.40,43.20,2.67,0.00,1.00,115.20,43.20,0 --139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0 --144.00,38.40,2.63,0.00,1.00,124.80,38.40,0 --148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0 --153.60,33.60,2.58,0.00,1.00,134.40,33.60,0 --158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0 --158.40,24.00,2.54,0.00,1.00,144.00,28.80,0 --163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0 --168.00,19.20,2.50,0.00,1.00,153.60,19.20,0 --168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.46,0.00,1.00,163.20,14.40,0 --177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.41,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0 -158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0 -148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0 -144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0 -139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0 -134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0 -129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0 -120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0 -115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0 -105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0 -100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0 -91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0 -86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0 -76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0 -67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0 -62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0 -52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0 -48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0 -43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0 -38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0 -33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0 -28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0 -24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0 -24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0 -19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0 -0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.58,0.00,1.00,0.00,0.00,0 --4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.54,0.00,1.00,9.60,4.80,0 --14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0 --14.40,19.20,1.50,0.00,1.00,19.20,14.40,0 --19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0 --24.00,24.00,1.45,0.00,1.00,28.80,19.20,0 --28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0 --33.60,28.80,1.41,0.00,1.00,38.40,28.80,0 --38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0 --43.20,38.40,1.37,0.00,1.00,48.00,33.60,0 --48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0 --52.80,43.20,1.32,0.00,1.00,57.60,38.40,0 --57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0 --62.40,43.20,1.28,0.00,1.00,67.20,43.20,0 --72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0 --76.80,48.00,1.24,0.00,1.00,76.80,43.20,0 --86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0 --91.20,48.00,1.20,0.00,1.00,86.40,48.00,0 --100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0 --105.60,48.00,1.15,0.00,1.00,96.00,48.00,0 --110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0 --120.00,43.20,1.11,0.00,1.00,105.60,43.20,0 --124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0 --129.60,38.40,1.07,0.00,1.00,115.20,43.20,0 --134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0 --139.20,33.60,1.03,0.00,1.00,124.80,38.40,0 --144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0 --148.80,28.80,0.98,0.00,1.00,134.40,33.60,0 --153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0 --158.40,24.00,0.94,0.00,1.00,144.00,24.00,0 --163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0 --163.20,14.40,0.90,0.00,1.00,153.60,19.20,0 --168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.85,0.00,1.00,163.20,14.40,0 --172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.81,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0 -148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0 -144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0 -139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0 -134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0 -129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0 -124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0 -120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0 -110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0 -105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0 -100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0 -91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0 -86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0 -76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0 -72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0 -62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0 -57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0 -52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0 -48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0 -43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0 -38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0 -28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0 -19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0 -0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,0.00,0.00,1.00,0.00,0.00,0 --4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0 --9.60,9.60,0.04,0.00,1.00,9.60,4.80,0 --14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0 --19.20,14.40,0.09,0.00,1.00,19.20,14.40,0 --24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0 --24.00,24.00,0.13,0.00,1.00,28.80,19.20,0 --28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0 --33.60,28.80,0.17,0.00,1.00,38.40,24.00,0 --38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0 --43.20,33.60,0.21,0.00,1.00,48.00,28.80,0 --48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0 --52.80,38.40,0.26,0.00,1.00,57.60,33.60,0 --62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0 --67.20,38.40,0.30,0.00,1.00,67.20,38.40,0 --72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0 --76.80,43.20,0.34,0.00,1.00,76.80,38.40,0 --86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0 --91.20,43.20,0.38,0.00,1.00,86.40,43.20,0 --96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0 --105.60,43.20,0.43,0.00,1.00,96.00,43.20,0 --110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0 --115.20,38.40,0.47,0.00,1.00,105.60,38.40,0 --124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0 --129.60,38.40,0.51,0.00,1.00,115.20,38.40,0 --134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0 --139.20,33.60,0.56,0.00,1.00,124.80,33.60,0 --144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0 --148.80,28.80,0.60,0.00,1.00,134.40,28.80,0 --153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0 --158.40,19.20,0.64,0.00,1.00,144.00,24.00,0 --158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0 --163.20,14.40,0.68,0.00,1.00,153.60,19.20,0 --168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.73,0.00,1.00,163.20,9.60,0 --172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.77,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0 -158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0 -158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0 -148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0 -144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0 -139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0 -134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0 -129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0 -124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0 -115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0 -110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0 -105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0 -96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0 -91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0 -86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0 -76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0 -72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0 -67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0 -62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0 -52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0 -48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0 -43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0 -38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0 -28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0 -19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0 -0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.60,0.00,1.00,0.00,0.00,0 --9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.64,0.00,1.00,9.60,4.80,0 --14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0 --19.20,14.40,1.69,0.00,1.00,19.20,9.60,0 --24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0 --28.80,19.20,1.73,0.00,1.00,28.80,19.20,0 --33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0 --38.40,24.00,1.77,0.00,1.00,38.40,24.00,0 --43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0 --48.00,28.80,1.82,0.00,1.00,48.00,28.80,0 --52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0 --57.60,33.60,1.86,0.00,1.00,57.60,28.80,0 --62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0 --67.20,38.40,1.90,0.00,1.00,67.20,33.60,0 --72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0 --81.60,38.40,1.94,0.00,1.00,76.80,38.40,0 --86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0 --91.20,38.40,1.99,0.00,1.00,86.40,38.40,0 --96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0 --105.60,38.40,2.03,0.00,1.00,96.00,38.40,0 --110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0 --115.20,33.60,2.07,0.00,1.00,105.60,33.60,0 --120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0 --124.80,33.60,2.11,0.00,1.00,115.20,33.60,0 --129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0 --134.40,28.80,2.16,0.00,1.00,124.80,28.80,0 --139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0 --144.00,24.00,2.20,0.00,1.00,134.40,24.00,0 --148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0 --153.60,19.20,2.24,0.00,1.00,144.00,19.20,0 --158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0 --163.20,14.40,2.29,0.00,1.00,153.60,14.40,0 --168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.33,0.00,1.00,163.20,9.60,0 --172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.37,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0 -153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0 -144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0 -134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0 -124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0 -120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0 -115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0 -110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0 -105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0 -96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0 -91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0 -86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0 -81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0 -72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0 -67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0 -62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0 -57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0 -52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0 -48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0 -43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0 -38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0 -33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0 -28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0 -14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.20,0.00,1.00,0.00,0.00,0 --9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0 --14.40,9.60,3.25,0.00,1.00,9.60,4.80,0 --14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0 --19.20,14.40,3.29,0.00,1.00,19.20,9.60,0 --24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0 --28.80,19.20,3.33,0.00,1.00,28.80,14.40,0 --33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0 --38.40,24.00,3.38,0.00,1.00,38.40,19.20,0 --43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0 --48.00,24.00,3.42,0.00,1.00,48.00,24.00,0 --52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0 --57.60,28.80,3.46,0.00,1.00,57.60,28.80,0 --62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0 --67.20,33.60,3.50,0.00,1.00,67.20,28.80,0 --72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0 --81.60,33.60,3.55,0.00,1.00,76.80,33.60,0 --86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0 --91.20,33.60,3.59,0.00,1.00,86.40,33.60,0 --96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0 --100.80,33.60,3.63,0.00,1.00,96.00,33.60,0 --110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0 --115.20,33.60,3.67,0.00,1.00,105.60,28.80,0 --120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0 --124.80,28.80,3.72,0.00,1.00,115.20,28.80,0 --129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0 --134.40,24.00,3.76,0.00,1.00,124.80,24.00,0 --139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0 --144.00,19.20,3.80,0.00,1.00,134.40,24.00,0 --148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0 --153.60,14.40,3.85,0.00,1.00,144.00,19.20,0 --158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0 --163.20,9.60,3.89,0.00,1.00,153.60,14.40,0 --168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0 --168.00,4.80,3.93,0.00,1.00,163.20,9.60,0 --172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0 --177.60,0.00,3.97,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0 -124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0 -120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0 -115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0 -110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0 -100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0 -96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0 -91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0 -86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0 -81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0 -72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0 -67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0 -62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0 -57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0 -52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0 -48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0 -43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0 -38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0 -33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0 -28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0 -24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0 -14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0 -14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0 --4.80,0.00,4.81,0.00,1.00,0.00,0.00,0 --9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0 --14.40,4.80,4.85,0.00,1.00,9.60,4.80,0 --19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0 --19.20,9.60,4.89,0.00,1.00,19.20,9.60,0 --24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0 --28.80,14.40,4.93,0.00,1.00,28.80,14.40,0 --33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0 --38.40,19.20,4.98,0.00,1.00,38.40,14.40,0 --43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0 --48.00,24.00,5.02,0.00,1.00,48.00,19.20,0 --52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0 --57.60,24.00,5.06,0.00,1.00,57.60,24.00,0 --62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0 --72.00,28.80,5.11,0.00,1.00,67.20,24.00,0 --76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0 --81.60,28.80,5.15,0.00,1.00,76.80,28.80,0 --86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0 --91.20,28.80,5.19,0.00,1.00,86.40,28.80,0 --96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0 --100.80,28.80,5.23,0.00,1.00,96.00,28.80,0 --105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0 --115.20,28.80,5.28,0.00,1.00,105.60,28.80,0 --120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0 --124.80,24.00,5.32,0.00,1.00,115.20,24.00,0 --129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0 --134.40,24.00,5.36,0.00,1.00,124.80,24.00,0 --139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0 --144.00,19.20,5.40,0.00,1.00,134.40,19.20,0 --148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0 --153.60,14.40,5.45,0.00,1.00,144.00,14.40,0 --158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0 --163.20,9.60,5.49,0.00,1.00,153.60,9.60,0 --163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0 --168.00,4.80,5.53,0.00,1.00,163.20,9.60,0 --172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0 --177.60,0.00,5.58,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0 -163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0 -129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0 -124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0 -120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0 -115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0 -105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0 -100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0 -96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0 -91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0 -86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0 -81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0 -76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0 -72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0 -62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0 -57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0 -52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0 -48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0 -43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0 -38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0 -33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0 -28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0 -24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0 -19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0 -19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0 -0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,6.41,0.00,1.00,0.00,0.00,0 --9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0 --14.40,4.80,6.45,0.00,1.00,9.60,4.80,0 --19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0 --24.00,9.60,6.49,0.00,1.00,19.20,9.60,0 --28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0 --33.60,14.40,6.54,0.00,1.00,28.80,9.60,0 --33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0 --38.40,14.40,6.58,0.00,1.00,38.40,14.40,0 --43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0 --48.00,19.20,6.62,0.00,1.00,48.00,14.40,0 --57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0 --62.40,19.20,6.66,0.00,1.00,57.60,19.20,0 --67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0 --72.00,24.00,6.71,0.00,1.00,67.20,19.20,0 --76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0 --81.60,24.00,6.75,0.00,1.00,76.80,24.00,0 --86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0 --91.20,24.00,6.79,0.00,1.00,86.40,24.00,0 --96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0 --100.80,24.00,6.84,0.00,1.00,96.00,24.00,0 --105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0 --110.40,24.00,6.88,0.00,1.00,105.60,24.00,0 --115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0 --120.00,19.20,6.92,0.00,1.00,115.20,19.20,0 --129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0 --134.40,19.20,6.96,0.00,1.00,124.80,19.20,0 --139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0 --144.00,14.40,7.01,0.00,1.00,134.40,14.40,0 --148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0 --148.80,14.40,7.05,0.00,1.00,144.00,14.40,0 --153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0 --158.40,9.60,7.09,0.00,1.00,153.60,9.60,0 --163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0 --168.00,4.80,7.13,0.00,1.00,163.20,4.80,0 --172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0 --177.60,0.00,7.18,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0 -163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0 -158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0 -148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0 -144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0 -134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0 -129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0 -120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0 -115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0 -110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0 -105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0 -100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0 -96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0 -91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0 -86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0 -81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0 -76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0 -72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0 -67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0 -62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0 -57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0 -48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0 -43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0 -38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0 -33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0 -33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0 -28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0 -24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0 -19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0 -0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,8.01,0.00,1.00,0.00,0.00,0 --9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0 --14.40,4.80,8.05,0.00,1.00,9.60,4.80,0 --19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0 --24.00,9.60,8.10,0.00,1.00,19.20,4.80,0 --28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0 --33.60,9.60,8.14,0.00,1.00,24.00,9.60,0 --38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0 --43.20,14.40,8.18,0.00,1.00,33.60,9.60,0 --48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0 --52.80,14.40,8.22,0.00,1.00,43.20,14.40,0 --57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0 --62.40,19.20,8.27,0.00,1.00,52.80,14.40,0 --67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0 --72.00,19.20,8.31,0.00,1.00,62.40,14.40,0 --76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0 --81.60,19.20,8.35,0.00,1.00,76.80,19.20,0 --86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0 --91.20,19.20,8.40,0.00,1.00,86.40,19.20,0 --96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0 --100.80,19.20,8.44,0.00,1.00,96.00,19.20,0 --105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0 --110.40,19.20,8.48,0.00,1.00,105.60,19.20,0 --115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0 --120.00,14.40,8.52,0.00,1.00,120.00,14.40,0 --124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0 --129.60,14.40,8.57,0.00,1.00,129.60,14.40,0 --134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0 --139.20,14.40,8.61,0.00,1.00,139.20,14.40,0 --144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0 --148.80,9.60,8.65,0.00,1.00,148.80,9.60,0 --153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0 --158.40,4.80,8.69,0.00,1.00,158.40,9.60,0 --163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0 --168.00,4.80,8.74,0.00,1.00,163.20,4.80,0 --172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0 -148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0 -144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0 -139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0 -134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0 -129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0 -124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0 -120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0 -115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0 -110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0 -105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0 -100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0 -96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0 -91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0 -86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0 -81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0 -76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0 -72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0 -67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0 -62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0 -52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0 -48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0 -43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0 -38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0 -33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0 -28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0 -24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0 -19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0 -9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0 -0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,9.61,0.00,1.00,0.00,0.00,0 --9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0 --14.40,4.80,9.66,0.00,1.00,9.60,0.00,0 --19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0 --24.00,4.80,9.70,0.00,1.00,14.40,4.80,0 --28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0 --33.60,9.60,9.74,0.00,1.00,24.00,4.80,0 --38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0 --43.20,9.60,9.78,0.00,1.00,33.60,9.60,0 --48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0 --52.80,9.60,9.83,0.00,1.00,43.20,9.60,0 --57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0 --62.40,14.40,9.87,0.00,1.00,52.80,9.60,0 --67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0 --72.00,14.40,9.91,0.00,1.00,62.40,14.40,0 --76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0 --81.60,14.40,9.95,0.00,1.00,76.80,14.40,0 --86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0 --91.20,14.40,10.00,0.00,1.00,86.40,14.40,0 --96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0 --100.80,14.40,10.04,0.00,1.00,96.00,14.40,0 --105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0 --110.40,14.40,10.08,0.00,1.00,110.40,14.40,0 --115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0 --120.00,14.40,10.13,0.00,1.00,120.00,9.60,0 --124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0 --129.60,9.60,10.17,0.00,1.00,129.60,9.60,0 --134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0 --139.20,9.60,10.21,0.00,1.00,139.20,9.60,0 --144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0 --148.80,9.60,10.25,0.00,1.00,148.80,9.60,0 --153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0 --158.40,4.80,10.30,0.00,1.00,158.40,4.80,0 --163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0 --168.00,4.80,10.34,0.00,1.00,168.00,4.80,0 --172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0 -148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0 -144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0 -139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0 -134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0 -129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0 -124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0 -120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0 -115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0 -110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0 -105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0 -100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0 -96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0 -91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0 -86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0 -81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0 -76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0 -72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0 -67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0 -62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0 -48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0 -43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0 -38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0 -33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0 -28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0 -24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0 -19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0 -14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,11.21,0.00,1.00,0.00,0.00,0 --9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0 --14.40,0.00,11.26,0.00,1.00,9.60,0.00,0 --19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0 --24.00,4.80,11.30,0.00,1.00,14.40,4.80,0 --28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0 --33.60,4.80,11.34,0.00,1.00,24.00,4.80,0 --38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0 --43.20,4.80,11.39,0.00,1.00,33.60,4.80,0 --48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0 --52.80,9.60,11.43,0.00,1.00,43.20,4.80,0 --57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0 --62.40,9.60,11.47,0.00,1.00,52.80,4.80,0 --67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0 --72.00,9.60,11.51,0.00,1.00,62.40,9.60,0 --76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0 --81.60,9.60,11.56,0.00,1.00,72.00,9.60,0 --86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0 --91.20,9.60,11.60,0.00,1.00,86.40,9.60,0 --96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0 --100.80,9.60,11.64,0.00,1.00,96.00,9.60,0 --105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0 --110.40,9.60,11.68,0.00,1.00,110.40,9.60,0 --115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0 --120.00,9.60,11.73,0.00,1.00,120.00,9.60,0 --124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0 --129.60,9.60,11.77,0.00,1.00,129.60,4.80,0 --134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0 --139.20,4.80,11.81,0.00,1.00,139.20,4.80,0 --144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0 --148.80,4.80,11.86,0.00,1.00,148.80,4.80,0 --153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0 --158.40,4.80,11.90,0.00,1.00,158.40,4.80,0 --163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0 --168.00,0.00,11.94,0.00,1.00,168.00,4.80,0 --172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0 -158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0 -148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0 -144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0 -139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0 -134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0 -129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0 -124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0 -120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0 -115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0 -110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0 -105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0 -100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0 -96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0 -91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0 -86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0 -81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0 -76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0 -72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0 -67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0 -62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0 -57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0 -43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0 -33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0 -28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0 -24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0 -19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,12.82,0.00,1.00,0.00,0.00,0 --9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0 --14.40,0.00,12.86,0.00,1.00,9.60,0.00,0 --19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0 --24.00,0.00,12.90,0.00,1.00,14.40,0.00,0 --28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0 --33.60,4.80,12.95,0.00,1.00,24.00,0.00,0 --38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0 --43.20,4.80,12.99,0.00,1.00,28.80,0.00,0 --48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0 --52.80,4.80,13.03,0.00,1.00,38.40,4.80,0 --57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0 --62.40,4.80,13.07,0.00,1.00,48.00,4.80,0 --67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0 --72.00,4.80,13.12,0.00,1.00,62.40,4.80,0 --76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0 --81.60,4.80,13.16,0.00,1.00,72.00,4.80,0 --86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0 --91.20,4.80,13.20,0.00,1.00,86.40,4.80,0 --96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0 --100.80,4.80,13.24,0.00,1.00,96.00,4.80,0 --105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0 --110.40,4.80,13.29,0.00,1.00,110.40,4.80,0 --115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0 --120.00,4.80,13.33,0.00,1.00,120.00,4.80,0 --124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0 --129.60,4.80,13.37,0.00,1.00,134.40,4.80,0 --134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0 --139.20,4.80,13.42,0.00,1.00,144.00,4.80,0 --144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0 --148.80,4.80,13.46,0.00,1.00,153.60,0.00,0 --153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0 --158.40,0.00,13.50,0.00,1.00,158.40,0.00,0 --163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0 --168.00,0.00,13.54,0.00,1.00,168.00,0.00,0 --172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0 -163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0 -158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0 -153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0 -148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0 -144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0 -139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0 -134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0 -129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0 -124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0 -120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0 -115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0 -110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0 -105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0 -100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0 -96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0 -91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0 -86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0 -81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0 -76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0 -72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0 -67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0 -57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0 -52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0 -43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0 -33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0 -28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0 -24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0 -19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0 -14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0 -9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,14.42,0.00,1.00,0.00,0.00,0 --9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0 --14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0 --19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0 --24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0 --28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0 --33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0 --38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0 --43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0 --48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0 --52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0 --57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0 --62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0 --67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0 --72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0 --76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0 --81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0 --86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0 --91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0 --96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0 --100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0 --105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0 --110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0 --115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0 --120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0 --124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0 --129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0 --134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0 --139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0 --144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0 --148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0 --153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0 --158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0 --163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0 --168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0 --172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0 -177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0 -172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0 -168.00,0.00,15.25,0.00,1.00,4.80,0.00,0 -163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0 -158.40,0.00,15.30,0.00,1.00,9.60,0.00,0 -153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0 -148.80,0.00,15.34,0.00,1.00,19.20,0.00,0 -144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0 -139.20,0.00,15.38,0.00,1.00,28.80,0.00,0 -134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0 -129.60,0.00,15.42,0.00,1.00,33.60,0.00,0 -124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0 -120.00,0.00,15.47,0.00,1.00,43.20,0.00,0 -115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0 -110.40,0.00,15.51,0.00,1.00,57.60,0.00,0 -105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0 -100.80,0.00,15.55,0.00,1.00,67.20,0.00,0 -96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0 -91.20,0.00,15.59,0.00,1.00,81.60,0.00,0 -86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0 -81.60,0.00,15.64,0.00,1.00,96.00,0.00,0 -76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0 -72.00,0.00,15.68,0.00,1.00,110.40,0.00,0 -67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0 -62.40,0.00,15.72,0.00,1.00,120.00,0.00,0 -57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0 -52.80,0.00,15.77,0.00,1.00,134.40,0.00,0 -48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0 -43.20,0.00,15.81,0.00,1.00,144.00,0.00,0 -38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0 -33.60,0.00,15.85,0.00,1.00,153.60,0.00,0 -28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0 -24.00,0.00,15.89,0.00,1.00,158.40,0.00,0 -19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0 -14.40,0.00,15.94,0.00,1.00,168.00,0.00,0 -9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0 -4.80,0.00,15.98,0.00,1.00,172.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 diff --git a/scripts/testv/stvOMASA_2ISM_1MASA1TC32c.met b/scripts/testv/stvOMASA_2ISM_1MASA1TC32c.met deleted file mode 100644 index f2ce23bd2054140614b7d2ad88769d5d2db77990..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_1MASA1TC32c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6349efe3448d28979b80744bcdc29d57f1c025704939b42d7b913d7fc3f23ccc -size 102300 diff --git a/scripts/testv/stvOMASA_2ISM_1MASA1TC32c.wav b/scripts/testv/stvOMASA_2ISM_1MASA1TC32c.wav deleted file mode 100644 index ab42d5c5716fc3ebf1364914721d65e4b2b5e784..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_1MASA1TC32c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a47a7a39fa8dea28b6aef65da7e379d2d5c9ebde026bf80796092857ab0b751c -size 576080 diff --git a/scripts/testv/stvOMASA_2ISM_1MASA1TC32c_ISM1.csv b/scripts/testv/stvOMASA_2ISM_1MASA1TC32c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_1MASA1TC32c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_2ISM_1MASA1TC32c_ISM2.csv b/scripts/testv/stvOMASA_2ISM_1MASA1TC32c_ISM2.csv deleted file mode 100644 index f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_1MASA1TC32c_ISM2.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,4.80,16.00,0.00,1.00,0.00,0.00,0 -0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0 -0.00,14.40,15.96,0.00,1.00,4.80,9.60,0 -0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0 -0.00,24.00,15.91,0.00,1.00,14.40,19.20,0 -0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0 -0.00,33.60,15.87,0.00,1.00,19.20,28.80,0 -0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0 -0.00,43.20,15.83,0.00,1.00,28.80,38.40,0 -0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0 -0.00,52.80,15.79,0.00,1.00,38.40,48.00,0 -0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0 -0.00,62.40,15.74,0.00,1.00,48.00,57.60,0 -4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0 -4.80,72.00,15.70,0.00,1.00,57.60,67.20,0 -4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0 -9.60,81.60,15.66,0.00,1.00,72.00,76.80,0 -19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0 -134.40,86.40,15.62,0.00,1.00,86.40,86.40,0 -168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0 -172.80,76.80,15.57,0.00,1.00,100.80,86.40,0 -177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0 -177.60,67.20,15.53,0.00,1.00,110.40,76.80,0 -177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0 -177.60,57.60,15.49,0.00,1.00,124.80,67.20,0 -177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0 -177.60,48.00,15.44,0.00,1.00,134.40,57.60,0 -177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0 -177.60,38.40,15.40,0.00,1.00,144.00,48.00,0 -177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0 -177.60,28.80,15.36,0.00,1.00,153.60,38.40,0 -177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0 -177.60,19.20,15.32,0.00,1.00,158.40,28.80,0 -177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0 -177.60,9.60,15.27,0.00,1.00,168.00,19.20,0 -177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0 -177.60,0.00,15.23,0.00,1.00,172.80,9.60,0 --177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0 --177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0 --177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0 --177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0 --177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0 --177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0 --177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0 --177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0 --177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0 --177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0 --177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0 --177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0 --177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0 --177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0 --177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0 --177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0 --172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0 --168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0 --134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0 --19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0 --9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0 --4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0 --4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0 --4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0 --0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0 --0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0 --0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0 --0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0 --0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0 --0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0 --0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0 --0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0 --0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0 --0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0 --0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0 --0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0 --0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0 --0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,14.40,0.00,1.00,0.00,0.00,0 --0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0 --0.00,14.40,14.36,0.00,1.00,9.60,9.60,0 --0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0 --0.00,24.00,14.31,0.00,1.00,14.40,19.20,0 --0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0 --0.00,33.60,14.27,0.00,1.00,24.00,28.80,0 --4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0 --4.80,43.20,14.23,0.00,1.00,28.80,38.40,0 --4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0 --4.80,52.80,14.18,0.00,1.00,38.40,48.00,0 --4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0 --4.80,62.40,14.14,0.00,1.00,48.00,57.60,0 --9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0 --9.60,72.00,14.10,0.00,1.00,62.40,67.20,0 --14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0 --24.00,81.60,14.06,0.00,1.00,72.00,76.80,0 --43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0 --110.40,86.40,14.01,0.00,1.00,86.40,86.40,0 --148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0 --163.20,76.80,13.97,0.00,1.00,96.00,81.60,0 --168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0 --172.80,67.20,13.93,0.00,1.00,110.40,72.00,0 --172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0 --172.80,57.60,13.89,0.00,1.00,120.00,62.40,0 --172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0 --177.60,48.00,13.84,0.00,1.00,134.40,52.80,0 --177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0 --177.60,38.40,13.80,0.00,1.00,144.00,43.20,0 --177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0 --177.60,28.80,13.76,0.00,1.00,148.80,33.60,0 --177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0 --177.60,19.20,13.71,0.00,1.00,158.40,24.00,0 --177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0 --177.60,9.60,13.67,0.00,1.00,168.00,14.40,0 --177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0 --177.60,0.00,13.63,0.00,1.00,172.80,4.80,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0 -177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0 -177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0 -177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0 -177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0 -177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0 -177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0 -172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0 -172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0 -172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0 -172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0 -168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0 -163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0 -148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0 -110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0 -43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0 -24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0 -14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0 -9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0 -9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0 -4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0 -4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0 -4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0 -4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0 -4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0 -0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0 -0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0 -0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0 -0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0 -0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,12.80,0.00,1.00,0.00,0.00,0 --0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0 --0.00,14.40,12.75,0.00,1.00,9.60,9.60,0 --4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0 --4.80,24.00,12.71,0.00,1.00,14.40,19.20,0 --4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0 --4.80,33.60,12.67,0.00,1.00,24.00,28.80,0 --4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0 --9.60,43.20,12.62,0.00,1.00,33.60,38.40,0 --9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0 --9.60,52.80,12.58,0.00,1.00,43.20,48.00,0 --14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0 --14.40,62.40,12.54,0.00,1.00,52.80,57.60,0 --19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0 --24.00,72.00,12.50,0.00,1.00,62.40,67.20,0 --33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0 --43.20,76.80,12.45,0.00,1.00,72.00,72.00,0 --67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0 --96.00,81.60,12.41,0.00,1.00,86.40,81.60,0 --124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0 --144.00,76.80,12.37,0.00,1.00,96.00,76.80,0 --153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0 --158.40,67.20,12.33,0.00,1.00,110.40,72.00,0 --163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0 --168.00,57.60,12.28,0.00,1.00,120.00,62.40,0 --168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0 --168.00,48.00,12.24,0.00,1.00,129.60,52.80,0 --172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0 --172.80,38.40,12.20,0.00,1.00,139.20,43.20,0 --172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0 --172.80,28.80,12.15,0.00,1.00,148.80,33.60,0 --177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0 --177.60,19.20,12.11,0.00,1.00,158.40,24.00,0 --177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0 --177.60,9.60,12.07,0.00,1.00,168.00,14.40,0 --177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0 --177.60,0.00,12.03,0.00,1.00,172.80,4.80,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0 -177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0 -172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0 -172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0 -168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0 -168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0 -168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0 -163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0 -158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0 -153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0 -144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0 -124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0 -96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0 -67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0 -43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0 -33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0 -24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0 -19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0 -14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0 -14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0 -9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0 -9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0 -9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0 -4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0 -4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0 -0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,11.19,0.00,1.00,0.00,0.00,0 --0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0 --4.80,14.40,11.15,0.00,1.00,9.60,9.60,0 --4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0 --4.80,24.00,11.11,0.00,1.00,14.40,19.20,0 --4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0 --9.60,33.60,11.07,0.00,1.00,24.00,28.80,0 --9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0 --14.40,43.20,11.02,0.00,1.00,33.60,38.40,0 --14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0 --14.40,52.80,10.98,0.00,1.00,43.20,48.00,0 --19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0 --24.00,57.60,10.94,0.00,1.00,52.80,52.80,0 --28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0 --33.60,67.20,10.89,0.00,1.00,62.40,62.40,0 --43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0 --57.60,72.00,10.85,0.00,1.00,76.80,72.00,0 --76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0 --96.00,76.80,10.81,0.00,1.00,86.40,76.80,0 --115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0 --129.60,72.00,10.77,0.00,1.00,96.00,76.80,0 --139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0 --148.80,67.20,10.72,0.00,1.00,105.60,67.20,0 --153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0 --158.40,57.60,10.68,0.00,1.00,120.00,62.40,0 --163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0 --163.20,48.00,10.64,0.00,1.00,129.60,52.80,0 --168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0 --168.00,38.40,10.60,0.00,1.00,139.20,43.20,0 --172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0 --172.80,28.80,10.55,0.00,1.00,148.80,33.60,0 --172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0 --172.80,19.20,10.51,0.00,1.00,158.40,24.00,0 --177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0 --177.60,9.60,10.47,0.00,1.00,163.20,14.40,0 --177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0 --177.60,0.00,10.42,0.00,1.00,172.80,4.80,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0 -168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0 -168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0 -163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0 -163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0 -158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0 -153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0 -148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0 -139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0 -129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0 -115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0 -96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0 -76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0 -57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0 -43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0 -33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0 -28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0 -24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0 -19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0 -14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0 -14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0 -14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0 -9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0 -9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0 -4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0 -4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0 -0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,9.59,0.00,1.00,0.00,0.00,0 --4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0 --4.80,14.40,9.55,0.00,1.00,9.60,9.60,0 --4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0 --9.60,24.00,9.51,0.00,1.00,19.20,19.20,0 --9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0 --9.60,33.60,9.46,0.00,1.00,24.00,28.80,0 --14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0 --14.40,38.40,9.42,0.00,1.00,33.60,33.60,0 --19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0 --24.00,48.00,9.38,0.00,1.00,43.20,43.20,0 --24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0 --28.80,57.60,9.34,0.00,1.00,52.80,52.80,0 --38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0 --43.20,62.40,9.29,0.00,1.00,67.20,62.40,0 --52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0 --62.40,72.00,9.25,0.00,1.00,76.80,67.20,0 --76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0 --96.00,72.00,9.21,0.00,1.00,86.40,72.00,0 --110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0 --120.00,67.20,9.16,0.00,1.00,96.00,72.00,0 --134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0 --139.20,62.40,9.12,0.00,1.00,105.60,67.20,0 --148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0 --153.60,57.60,9.08,0.00,1.00,115.20,57.60,0 --158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0 --158.40,48.00,9.04,0.00,1.00,129.60,52.80,0 --163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0 --163.20,38.40,8.99,0.00,1.00,139.20,43.20,0 --168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0 --168.00,28.80,8.95,0.00,1.00,148.80,33.60,0 --172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0 --172.80,19.20,8.91,0.00,1.00,153.60,24.00,0 --172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0 --177.60,9.60,8.87,0.00,1.00,163.20,14.40,0 --177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0 --177.60,0.00,8.82,0.00,1.00,172.80,4.80,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0 -168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0 -163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0 -163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0 -158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0 -158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0 -153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0 -148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0 -139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0 -134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0 -120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0 -110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0 -96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0 -76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0 -62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0 -52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0 -43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0 -38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0 -28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0 -24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0 -24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0 -19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0 -14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0 -14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0 -9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0 -9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0 -9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0 -0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,7.99,0.00,1.00,0.00,0.00,0 --4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0 --4.80,14.40,7.95,0.00,1.00,9.60,9.60,0 --9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0 --9.60,24.00,7.90,0.00,1.00,19.20,19.20,0 --14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0 --14.40,28.80,7.86,0.00,1.00,28.80,24.00,0 --19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0 --19.20,38.40,7.82,0.00,1.00,38.40,33.60,0 --24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0 --28.80,48.00,7.78,0.00,1.00,48.00,43.20,0 --33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0 --38.40,52.80,7.73,0.00,1.00,57.60,52.80,0 --43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0 --48.00,62.40,7.69,0.00,1.00,67.20,57.60,0 --57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0 --67.20,67.20,7.65,0.00,1.00,76.80,62.40,0 --81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0 --91.20,67.20,7.60,0.00,1.00,86.40,67.20,0 --105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0 --115.20,67.20,7.56,0.00,1.00,96.00,67.20,0 --124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0 --134.40,57.60,7.52,0.00,1.00,105.60,62.40,0 --139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0 --144.00,52.80,7.48,0.00,1.00,115.20,57.60,0 --148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0 --153.60,43.20,7.43,0.00,1.00,124.80,48.00,0 --158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0 --163.20,38.40,7.39,0.00,1.00,134.40,38.40,0 --163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0 --168.00,28.80,7.35,0.00,1.00,144.00,33.60,0 --168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0 --172.80,19.20,7.31,0.00,1.00,153.60,24.00,0 --172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0 --177.60,9.60,7.26,0.00,1.00,163.20,14.40,0 --177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0 --177.60,0.00,7.22,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0 -163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0 -158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0 -153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0 -148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0 -144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0 -139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0 -134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0 -124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0 -115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0 -105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0 -91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0 -81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0 -67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0 -57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0 -48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0 -43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0 -38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0 -33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0 -28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0 -24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0 -19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0 -19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0 -14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0 -9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0 -0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,6.39,0.00,1.00,0.00,0.00,0 --4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0 --4.80,14.40,6.34,0.00,1.00,9.60,9.60,0 --9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0 --9.60,19.20,6.30,0.00,1.00,19.20,14.40,0 --14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0 --19.20,28.80,6.26,0.00,1.00,28.80,24.00,0 --19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0 --24.00,38.40,6.22,0.00,1.00,38.40,33.60,0 --28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0 --33.60,43.20,6.17,0.00,1.00,48.00,38.40,0 --38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0 --43.20,52.80,6.13,0.00,1.00,57.60,48.00,0 --48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0 --52.80,57.60,6.09,0.00,1.00,67.20,52.80,0 --62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0 --72.00,62.40,6.05,0.00,1.00,76.80,57.60,0 --81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0 --91.20,62.40,6.00,0.00,1.00,86.40,62.40,0 --100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0 --110.40,62.40,5.96,0.00,1.00,96.00,62.40,0 --120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0 --129.60,57.60,5.92,0.00,1.00,105.60,57.60,0 --134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0 --139.20,48.00,5.87,0.00,1.00,115.20,52.80,0 --144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0 --148.80,43.20,5.83,0.00,1.00,124.80,48.00,0 --153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0 --158.40,33.60,5.79,0.00,1.00,134.40,38.40,0 --163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0 --163.20,28.80,5.75,0.00,1.00,144.00,28.80,0 --168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0 --168.00,19.20,5.70,0.00,1.00,153.60,24.00,0 --172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0 --172.80,9.60,5.66,0.00,1.00,163.20,14.40,0 --177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0 --177.60,0.00,5.62,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0 -163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0 -158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0 -148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0 -144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0 -139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0 -134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0 -129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0 -120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0 -110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0 -100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0 -91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0 -81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0 -72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0 -62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0 -52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0 -48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0 -43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0 -38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0 -33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0 -28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0 -24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0 -19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0 -19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0 -9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0 -4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0 -0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,4.79,0.00,1.00,0.00,0.00,0 --4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0 --9.60,14.40,4.74,0.00,1.00,9.60,9.60,0 --9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0 --14.40,19.20,4.70,0.00,1.00,19.20,14.40,0 --14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0 --19.20,28.80,4.66,0.00,1.00,28.80,24.00,0 --24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0 --28.80,33.60,4.61,0.00,1.00,38.40,28.80,0 --28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0 --33.60,43.20,4.57,0.00,1.00,48.00,38.40,0 --38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0 --48.00,48.00,4.53,0.00,1.00,57.60,43.20,0 --52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0 --57.60,52.80,4.49,0.00,1.00,67.20,48.00,0 --67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0 --76.80,57.60,4.44,0.00,1.00,76.80,52.80,0 --81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0 --91.20,57.60,4.40,0.00,1.00,86.40,57.60,0 --100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0 --110.40,57.60,4.36,0.00,1.00,96.00,57.60,0 --115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0 --124.80,52.80,4.32,0.00,1.00,105.60,52.80,0 --129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0 --139.20,48.00,4.27,0.00,1.00,115.20,48.00,0 --144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0 --148.80,38.40,4.23,0.00,1.00,124.80,43.20,0 --153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0 --153.60,33.60,4.19,0.00,1.00,134.40,38.40,0 --158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0 --163.20,24.00,4.14,0.00,1.00,144.00,28.80,0 --163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0 --168.00,19.20,4.10,0.00,1.00,153.60,24.00,0 --172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0 --172.80,9.60,4.06,0.00,1.00,163.20,14.40,0 --177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0 --177.60,0.00,4.02,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0 -163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0 -163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0 -158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0 -148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0 -144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0 -139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0 -129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0 -124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0 -115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0 -110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0 -100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0 -91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0 -81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0 -76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0 -67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0 -57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0 -52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0 -48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0 -38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0 -33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0 -28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0 -28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0 -24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0 -19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0 -14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0 -14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0 -9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0 -0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.18,0.00,1.00,0.00,0.00,0 --4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0 --9.60,9.60,3.14,0.00,1.00,9.60,9.60,0 --9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0 --14.40,19.20,3.10,0.00,1.00,19.20,14.40,0 --19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0 --24.00,24.00,3.05,0.00,1.00,28.80,24.00,0 --24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0 --28.80,33.60,3.01,0.00,1.00,38.40,28.80,0 --33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0 --38.40,38.40,2.97,0.00,1.00,48.00,33.60,0 --43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0 --48.00,43.20,2.93,0.00,1.00,57.60,43.20,0 --52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0 --62.40,48.00,2.88,0.00,1.00,67.20,48.00,0 --67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0 --76.80,52.80,2.84,0.00,1.00,76.80,48.00,0 --86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0 --91.20,52.80,2.80,0.00,1.00,86.40,52.80,0 --100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0 --105.60,52.80,2.76,0.00,1.00,96.00,52.80,0 --115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0 --120.00,48.00,2.71,0.00,1.00,105.60,48.00,0 --129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0 --134.40,43.20,2.67,0.00,1.00,115.20,43.20,0 --139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0 --144.00,38.40,2.63,0.00,1.00,124.80,38.40,0 --148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0 --153.60,33.60,2.58,0.00,1.00,134.40,33.60,0 --158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0 --158.40,24.00,2.54,0.00,1.00,144.00,28.80,0 --163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0 --168.00,19.20,2.50,0.00,1.00,153.60,19.20,0 --168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.46,0.00,1.00,163.20,14.40,0 --177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.41,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0 -158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0 -148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0 -144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0 -139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0 -134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0 -129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0 -120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0 -115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0 -105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0 -100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0 -91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0 -86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0 -76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0 -67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0 -62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0 -52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0 -48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0 -43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0 -38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0 -33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0 -28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0 -24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0 -24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0 -19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0 -0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.58,0.00,1.00,0.00,0.00,0 --4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.54,0.00,1.00,9.60,4.80,0 --14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0 --14.40,19.20,1.50,0.00,1.00,19.20,14.40,0 --19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0 --24.00,24.00,1.45,0.00,1.00,28.80,19.20,0 --28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0 --33.60,28.80,1.41,0.00,1.00,38.40,28.80,0 --38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0 --43.20,38.40,1.37,0.00,1.00,48.00,33.60,0 --48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0 --52.80,43.20,1.32,0.00,1.00,57.60,38.40,0 --57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0 --62.40,43.20,1.28,0.00,1.00,67.20,43.20,0 --72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0 --76.80,48.00,1.24,0.00,1.00,76.80,43.20,0 --86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0 --91.20,48.00,1.20,0.00,1.00,86.40,48.00,0 --100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0 --105.60,48.00,1.15,0.00,1.00,96.00,48.00,0 --110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0 --120.00,43.20,1.11,0.00,1.00,105.60,43.20,0 --124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0 --129.60,38.40,1.07,0.00,1.00,115.20,43.20,0 --134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0 --139.20,33.60,1.03,0.00,1.00,124.80,38.40,0 --144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0 --148.80,28.80,0.98,0.00,1.00,134.40,33.60,0 --153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0 --158.40,24.00,0.94,0.00,1.00,144.00,24.00,0 --163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0 --163.20,14.40,0.90,0.00,1.00,153.60,19.20,0 --168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.85,0.00,1.00,163.20,14.40,0 --172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.81,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0 -148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0 -144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0 -139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0 -134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0 -129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0 -124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0 -120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0 -110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0 -105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0 -100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0 -91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0 -86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0 -76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0 -72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0 -62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0 -57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0 -52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0 -48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0 -43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0 -38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0 -28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0 -19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0 -0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,0.00,0.00,1.00,0.00,0.00,0 --4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0 --9.60,9.60,0.04,0.00,1.00,9.60,4.80,0 --14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0 --19.20,14.40,0.09,0.00,1.00,19.20,14.40,0 --24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0 --24.00,24.00,0.13,0.00,1.00,28.80,19.20,0 --28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0 --33.60,28.80,0.17,0.00,1.00,38.40,24.00,0 --38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0 --43.20,33.60,0.21,0.00,1.00,48.00,28.80,0 --48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0 --52.80,38.40,0.26,0.00,1.00,57.60,33.60,0 --62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0 --67.20,38.40,0.30,0.00,1.00,67.20,38.40,0 --72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0 --76.80,43.20,0.34,0.00,1.00,76.80,38.40,0 --86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0 --91.20,43.20,0.38,0.00,1.00,86.40,43.20,0 --96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0 --105.60,43.20,0.43,0.00,1.00,96.00,43.20,0 --110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0 --115.20,38.40,0.47,0.00,1.00,105.60,38.40,0 --124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0 --129.60,38.40,0.51,0.00,1.00,115.20,38.40,0 --134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0 --139.20,33.60,0.56,0.00,1.00,124.80,33.60,0 --144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0 --148.80,28.80,0.60,0.00,1.00,134.40,28.80,0 --153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0 --158.40,19.20,0.64,0.00,1.00,144.00,24.00,0 --158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0 --163.20,14.40,0.68,0.00,1.00,153.60,19.20,0 --168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.73,0.00,1.00,163.20,9.60,0 --172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.77,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0 -158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0 -158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0 -148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0 -144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0 -139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0 -134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0 -129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0 -124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0 -115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0 -110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0 -105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0 -96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0 -91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0 -86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0 -76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0 -72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0 -67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0 -62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0 -52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0 -48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0 -43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0 -38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0 -28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0 -19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0 -0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.60,0.00,1.00,0.00,0.00,0 --9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.64,0.00,1.00,9.60,4.80,0 --14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0 --19.20,14.40,1.69,0.00,1.00,19.20,9.60,0 --24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0 --28.80,19.20,1.73,0.00,1.00,28.80,19.20,0 --33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0 --38.40,24.00,1.77,0.00,1.00,38.40,24.00,0 --43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0 --48.00,28.80,1.82,0.00,1.00,48.00,28.80,0 --52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0 --57.60,33.60,1.86,0.00,1.00,57.60,28.80,0 --62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0 --67.20,38.40,1.90,0.00,1.00,67.20,33.60,0 --72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0 --81.60,38.40,1.94,0.00,1.00,76.80,38.40,0 --86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0 --91.20,38.40,1.99,0.00,1.00,86.40,38.40,0 --96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0 --105.60,38.40,2.03,0.00,1.00,96.00,38.40,0 --110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0 --115.20,33.60,2.07,0.00,1.00,105.60,33.60,0 --120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0 --124.80,33.60,2.11,0.00,1.00,115.20,33.60,0 --129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0 --134.40,28.80,2.16,0.00,1.00,124.80,28.80,0 --139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0 --144.00,24.00,2.20,0.00,1.00,134.40,24.00,0 --148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0 --153.60,19.20,2.24,0.00,1.00,144.00,19.20,0 --158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0 --163.20,14.40,2.29,0.00,1.00,153.60,14.40,0 --168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.33,0.00,1.00,163.20,9.60,0 --172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.37,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0 -153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0 -144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0 -134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0 -124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0 -120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0 -115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0 -110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0 -105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0 -96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0 -91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0 -86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0 -81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0 -72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0 -67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0 -62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0 -57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0 -52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0 -48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0 -43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0 -38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0 -33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0 -28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0 -14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.20,0.00,1.00,0.00,0.00,0 --9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0 --14.40,9.60,3.25,0.00,1.00,9.60,4.80,0 --14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0 --19.20,14.40,3.29,0.00,1.00,19.20,9.60,0 --24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0 --28.80,19.20,3.33,0.00,1.00,28.80,14.40,0 --33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0 --38.40,24.00,3.38,0.00,1.00,38.40,19.20,0 --43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0 --48.00,24.00,3.42,0.00,1.00,48.00,24.00,0 --52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0 --57.60,28.80,3.46,0.00,1.00,57.60,28.80,0 --62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0 --67.20,33.60,3.50,0.00,1.00,67.20,28.80,0 --72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0 --81.60,33.60,3.55,0.00,1.00,76.80,33.60,0 --86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0 --91.20,33.60,3.59,0.00,1.00,86.40,33.60,0 --96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0 --100.80,33.60,3.63,0.00,1.00,96.00,33.60,0 --110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0 --115.20,33.60,3.67,0.00,1.00,105.60,28.80,0 --120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0 --124.80,28.80,3.72,0.00,1.00,115.20,28.80,0 --129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0 --134.40,24.00,3.76,0.00,1.00,124.80,24.00,0 --139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0 --144.00,19.20,3.80,0.00,1.00,134.40,24.00,0 --148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0 --153.60,14.40,3.85,0.00,1.00,144.00,19.20,0 --158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0 --163.20,9.60,3.89,0.00,1.00,153.60,14.40,0 --168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0 --168.00,4.80,3.93,0.00,1.00,163.20,9.60,0 --172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0 --177.60,0.00,3.97,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0 -124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0 -120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0 -115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0 -110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0 -100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0 -96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0 -91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0 -86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0 -81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0 -72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0 -67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0 -62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0 -57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0 -52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0 -48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0 -43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0 -38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0 -33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0 -28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0 -24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0 -14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0 -14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0 --4.80,0.00,4.81,0.00,1.00,0.00,0.00,0 --9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0 --14.40,4.80,4.85,0.00,1.00,9.60,4.80,0 --19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0 --19.20,9.60,4.89,0.00,1.00,19.20,9.60,0 --24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0 --28.80,14.40,4.93,0.00,1.00,28.80,14.40,0 --33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0 --38.40,19.20,4.98,0.00,1.00,38.40,14.40,0 --43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0 --48.00,24.00,5.02,0.00,1.00,48.00,19.20,0 --52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0 --57.60,24.00,5.06,0.00,1.00,57.60,24.00,0 --62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0 --72.00,28.80,5.11,0.00,1.00,67.20,24.00,0 --76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0 --81.60,28.80,5.15,0.00,1.00,76.80,28.80,0 --86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0 --91.20,28.80,5.19,0.00,1.00,86.40,28.80,0 --96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0 --100.80,28.80,5.23,0.00,1.00,96.00,28.80,0 --105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0 --115.20,28.80,5.28,0.00,1.00,105.60,28.80,0 --120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0 --124.80,24.00,5.32,0.00,1.00,115.20,24.00,0 --129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0 --134.40,24.00,5.36,0.00,1.00,124.80,24.00,0 --139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0 --144.00,19.20,5.40,0.00,1.00,134.40,19.20,0 --148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0 --153.60,14.40,5.45,0.00,1.00,144.00,14.40,0 --158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0 --163.20,9.60,5.49,0.00,1.00,153.60,9.60,0 --163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0 --168.00,4.80,5.53,0.00,1.00,163.20,9.60,0 --172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0 --177.60,0.00,5.58,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0 -163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0 -129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0 -124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0 -120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0 -115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0 -105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0 -100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0 -96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0 -91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0 -86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0 -81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0 -76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0 -72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0 -62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0 -57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0 -52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0 -48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0 -43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0 -38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0 -33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0 -28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0 -24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0 -19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0 -19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0 -0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,6.41,0.00,1.00,0.00,0.00,0 --9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0 --14.40,4.80,6.45,0.00,1.00,9.60,4.80,0 --19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0 --24.00,9.60,6.49,0.00,1.00,19.20,9.60,0 --28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0 --33.60,14.40,6.54,0.00,1.00,28.80,9.60,0 --33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0 --38.40,14.40,6.58,0.00,1.00,38.40,14.40,0 --43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0 --48.00,19.20,6.62,0.00,1.00,48.00,14.40,0 --57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0 --62.40,19.20,6.66,0.00,1.00,57.60,19.20,0 --67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0 --72.00,24.00,6.71,0.00,1.00,67.20,19.20,0 --76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0 --81.60,24.00,6.75,0.00,1.00,76.80,24.00,0 --86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0 --91.20,24.00,6.79,0.00,1.00,86.40,24.00,0 --96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0 --100.80,24.00,6.84,0.00,1.00,96.00,24.00,0 --105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0 --110.40,24.00,6.88,0.00,1.00,105.60,24.00,0 --115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0 --120.00,19.20,6.92,0.00,1.00,115.20,19.20,0 --129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0 --134.40,19.20,6.96,0.00,1.00,124.80,19.20,0 --139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0 --144.00,14.40,7.01,0.00,1.00,134.40,14.40,0 --148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0 --148.80,14.40,7.05,0.00,1.00,144.00,14.40,0 --153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0 --158.40,9.60,7.09,0.00,1.00,153.60,9.60,0 --163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0 --168.00,4.80,7.13,0.00,1.00,163.20,4.80,0 --172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0 --177.60,0.00,7.18,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0 -163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0 -158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0 -148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0 -144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0 -134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0 -129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0 -120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0 -115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0 -110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0 -105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0 -100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0 -96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0 -91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0 -86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0 -81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0 -76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0 -72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0 -67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0 -62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0 -57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0 -48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0 -43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0 -38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0 -33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0 -33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0 -28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0 -24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0 -19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0 -0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,8.01,0.00,1.00,0.00,0.00,0 --9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0 --14.40,4.80,8.05,0.00,1.00,9.60,4.80,0 --19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0 --24.00,9.60,8.10,0.00,1.00,19.20,4.80,0 --28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0 --33.60,9.60,8.14,0.00,1.00,24.00,9.60,0 --38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0 --43.20,14.40,8.18,0.00,1.00,33.60,9.60,0 --48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0 --52.80,14.40,8.22,0.00,1.00,43.20,14.40,0 --57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0 --62.40,19.20,8.27,0.00,1.00,52.80,14.40,0 --67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0 --72.00,19.20,8.31,0.00,1.00,62.40,14.40,0 --76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0 --81.60,19.20,8.35,0.00,1.00,76.80,19.20,0 --86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0 --91.20,19.20,8.40,0.00,1.00,86.40,19.20,0 --96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0 --100.80,19.20,8.44,0.00,1.00,96.00,19.20,0 --105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0 --110.40,19.20,8.48,0.00,1.00,105.60,19.20,0 --115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0 --120.00,14.40,8.52,0.00,1.00,120.00,14.40,0 --124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0 --129.60,14.40,8.57,0.00,1.00,129.60,14.40,0 --134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0 --139.20,14.40,8.61,0.00,1.00,139.20,14.40,0 --144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0 --148.80,9.60,8.65,0.00,1.00,148.80,9.60,0 --153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0 --158.40,4.80,8.69,0.00,1.00,158.40,9.60,0 --163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0 --168.00,4.80,8.74,0.00,1.00,163.20,4.80,0 --172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0 -148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0 -144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0 -139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0 -134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0 -129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0 -124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0 -120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0 -115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0 -110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0 -105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0 -100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0 -96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0 -91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0 -86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0 -81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0 -76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0 -72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0 -67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0 -62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0 -52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0 -48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0 -43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0 -38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0 -33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0 -28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0 -24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0 -19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0 -9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0 -0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,9.61,0.00,1.00,0.00,0.00,0 --9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0 --14.40,4.80,9.66,0.00,1.00,9.60,0.00,0 --19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0 --24.00,4.80,9.70,0.00,1.00,14.40,4.80,0 --28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0 --33.60,9.60,9.74,0.00,1.00,24.00,4.80,0 --38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0 --43.20,9.60,9.78,0.00,1.00,33.60,9.60,0 --48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0 --52.80,9.60,9.83,0.00,1.00,43.20,9.60,0 --57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0 --62.40,14.40,9.87,0.00,1.00,52.80,9.60,0 --67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0 --72.00,14.40,9.91,0.00,1.00,62.40,14.40,0 --76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0 --81.60,14.40,9.95,0.00,1.00,76.80,14.40,0 --86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0 --91.20,14.40,10.00,0.00,1.00,86.40,14.40,0 --96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0 --100.80,14.40,10.04,0.00,1.00,96.00,14.40,0 --105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0 --110.40,14.40,10.08,0.00,1.00,110.40,14.40,0 --115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0 --120.00,14.40,10.13,0.00,1.00,120.00,9.60,0 --124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0 --129.60,9.60,10.17,0.00,1.00,129.60,9.60,0 --134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0 --139.20,9.60,10.21,0.00,1.00,139.20,9.60,0 --144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0 --148.80,9.60,10.25,0.00,1.00,148.80,9.60,0 --153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0 --158.40,4.80,10.30,0.00,1.00,158.40,4.80,0 --163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0 --168.00,4.80,10.34,0.00,1.00,168.00,4.80,0 --172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0 -148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0 -144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0 -139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0 -134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0 -129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0 -124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0 -120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0 -115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0 -110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0 -105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0 -100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0 -96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0 -91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0 -86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0 -81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0 -76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0 -72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0 -67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0 -62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0 -48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0 -43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0 -38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0 -33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0 -28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0 -24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0 -19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0 -14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,11.21,0.00,1.00,0.00,0.00,0 --9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0 --14.40,0.00,11.26,0.00,1.00,9.60,0.00,0 --19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0 --24.00,4.80,11.30,0.00,1.00,14.40,4.80,0 --28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0 --33.60,4.80,11.34,0.00,1.00,24.00,4.80,0 --38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0 --43.20,4.80,11.39,0.00,1.00,33.60,4.80,0 --48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0 --52.80,9.60,11.43,0.00,1.00,43.20,4.80,0 --57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0 --62.40,9.60,11.47,0.00,1.00,52.80,4.80,0 --67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0 --72.00,9.60,11.51,0.00,1.00,62.40,9.60,0 --76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0 --81.60,9.60,11.56,0.00,1.00,72.00,9.60,0 --86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0 --91.20,9.60,11.60,0.00,1.00,86.40,9.60,0 --96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0 --100.80,9.60,11.64,0.00,1.00,96.00,9.60,0 --105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0 --110.40,9.60,11.68,0.00,1.00,110.40,9.60,0 --115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0 --120.00,9.60,11.73,0.00,1.00,120.00,9.60,0 --124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0 --129.60,9.60,11.77,0.00,1.00,129.60,4.80,0 --134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0 --139.20,4.80,11.81,0.00,1.00,139.20,4.80,0 --144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0 --148.80,4.80,11.86,0.00,1.00,148.80,4.80,0 --153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0 --158.40,4.80,11.90,0.00,1.00,158.40,4.80,0 --163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0 --168.00,0.00,11.94,0.00,1.00,168.00,4.80,0 --172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0 -158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0 -148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0 -144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0 -139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0 -134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0 -129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0 -124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0 -120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0 -115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0 -110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0 -105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0 -100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0 -96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0 -91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0 -86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0 -81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0 -76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0 -72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0 -67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0 -62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0 -57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0 -43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0 -33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0 -28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0 -24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0 -19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,12.82,0.00,1.00,0.00,0.00,0 --9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0 --14.40,0.00,12.86,0.00,1.00,9.60,0.00,0 --19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0 --24.00,0.00,12.90,0.00,1.00,14.40,0.00,0 --28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0 --33.60,4.80,12.95,0.00,1.00,24.00,0.00,0 --38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0 --43.20,4.80,12.99,0.00,1.00,28.80,0.00,0 --48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0 --52.80,4.80,13.03,0.00,1.00,38.40,4.80,0 --57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0 --62.40,4.80,13.07,0.00,1.00,48.00,4.80,0 --67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0 --72.00,4.80,13.12,0.00,1.00,62.40,4.80,0 --76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0 --81.60,4.80,13.16,0.00,1.00,72.00,4.80,0 --86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0 --91.20,4.80,13.20,0.00,1.00,86.40,4.80,0 --96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0 --100.80,4.80,13.24,0.00,1.00,96.00,4.80,0 --105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0 --110.40,4.80,13.29,0.00,1.00,110.40,4.80,0 --115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0 --120.00,4.80,13.33,0.00,1.00,120.00,4.80,0 --124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0 --129.60,4.80,13.37,0.00,1.00,134.40,4.80,0 --134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0 --139.20,4.80,13.42,0.00,1.00,144.00,4.80,0 --144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0 --148.80,4.80,13.46,0.00,1.00,153.60,0.00,0 --153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0 --158.40,0.00,13.50,0.00,1.00,158.40,0.00,0 --163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0 --168.00,0.00,13.54,0.00,1.00,168.00,0.00,0 --172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0 -163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0 -158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0 -153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0 -148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0 -144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0 -139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0 -134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0 -129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0 -124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0 -120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0 -115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0 -110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0 -105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0 -100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0 -96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0 -91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0 -86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0 -81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0 -76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0 -72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0 -67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0 -57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0 -52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0 -43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0 -33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0 -28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0 -24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0 -19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0 -14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0 -9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,14.42,0.00,1.00,0.00,0.00,0 --9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0 --14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0 --19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0 --24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0 --28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0 --33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0 --38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0 --43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0 --48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0 --52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0 --57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0 --62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0 --67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0 --72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0 --76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0 --81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0 --86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0 --91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0 --96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0 --100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0 --105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0 --110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0 --115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0 --120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0 --124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0 --129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0 --134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0 --139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0 --144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0 --148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0 --153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0 --158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0 --163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0 --168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0 --172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0 -177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0 -172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0 -168.00,0.00,15.25,0.00,1.00,4.80,0.00,0 -163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0 -158.40,0.00,15.30,0.00,1.00,9.60,0.00,0 -153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0 -148.80,0.00,15.34,0.00,1.00,19.20,0.00,0 -144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0 -139.20,0.00,15.38,0.00,1.00,28.80,0.00,0 -134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0 -129.60,0.00,15.42,0.00,1.00,33.60,0.00,0 -124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0 -120.00,0.00,15.47,0.00,1.00,43.20,0.00,0 -115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0 -110.40,0.00,15.51,0.00,1.00,57.60,0.00,0 -105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0 -100.80,0.00,15.55,0.00,1.00,67.20,0.00,0 -96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0 -91.20,0.00,15.59,0.00,1.00,81.60,0.00,0 -86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0 -81.60,0.00,15.64,0.00,1.00,96.00,0.00,0 -76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0 -72.00,0.00,15.68,0.00,1.00,110.40,0.00,0 -67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0 -62.40,0.00,15.72,0.00,1.00,120.00,0.00,0 -57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0 -52.80,0.00,15.77,0.00,1.00,134.40,0.00,0 -48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0 -43.20,0.00,15.81,0.00,1.00,144.00,0.00,0 -38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0 -33.60,0.00,15.85,0.00,1.00,153.60,0.00,0 -28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0 -24.00,0.00,15.89,0.00,1.00,158.40,0.00,0 -19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0 -14.40,0.00,15.94,0.00,1.00,168.00,0.00,0 -9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0 -4.80,0.00,15.98,0.00,1.00,172.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 diff --git a/scripts/testv/stvOMASA_2ISM_1MASA2TC16c.met b/scripts/testv/stvOMASA_2ISM_1MASA2TC16c.met deleted file mode 100644 index 00acdae5394c5d40e9193d7dd9cd1fee6d182c24..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_1MASA2TC16c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5a1f87bfe360dbd221a94583aa68a58ef050e968a63351730d643f2dc2cac4e1 -size 204600 diff --git a/scripts/testv/stvOMASA_2ISM_1MASA2TC16c.wav b/scripts/testv/stvOMASA_2ISM_1MASA2TC16c.wav deleted file mode 100644 index 14a7d3a29f4417db8b1e59af76f75a5d81cafbd0..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_1MASA2TC16c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:53e6c4c0b5bddaa2cb1ba5b990941bc15d6a4ba5f65510a89061283acbf336bc -size 768080 diff --git a/scripts/testv/stvOMASA_2ISM_1MASA2TC16c_ISM1.csv b/scripts/testv/stvOMASA_2ISM_1MASA2TC16c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_1MASA2TC16c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_2ISM_1MASA2TC16c_ISM2.csv b/scripts/testv/stvOMASA_2ISM_1MASA2TC16c_ISM2.csv deleted file mode 100644 index f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_1MASA2TC16c_ISM2.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,4.80,16.00,0.00,1.00,0.00,0.00,0 -0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0 -0.00,14.40,15.96,0.00,1.00,4.80,9.60,0 -0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0 -0.00,24.00,15.91,0.00,1.00,14.40,19.20,0 -0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0 -0.00,33.60,15.87,0.00,1.00,19.20,28.80,0 -0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0 -0.00,43.20,15.83,0.00,1.00,28.80,38.40,0 -0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0 -0.00,52.80,15.79,0.00,1.00,38.40,48.00,0 -0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0 -0.00,62.40,15.74,0.00,1.00,48.00,57.60,0 -4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0 -4.80,72.00,15.70,0.00,1.00,57.60,67.20,0 -4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0 -9.60,81.60,15.66,0.00,1.00,72.00,76.80,0 -19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0 -134.40,86.40,15.62,0.00,1.00,86.40,86.40,0 -168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0 -172.80,76.80,15.57,0.00,1.00,100.80,86.40,0 -177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0 -177.60,67.20,15.53,0.00,1.00,110.40,76.80,0 -177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0 -177.60,57.60,15.49,0.00,1.00,124.80,67.20,0 -177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0 -177.60,48.00,15.44,0.00,1.00,134.40,57.60,0 -177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0 -177.60,38.40,15.40,0.00,1.00,144.00,48.00,0 -177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0 -177.60,28.80,15.36,0.00,1.00,153.60,38.40,0 -177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0 -177.60,19.20,15.32,0.00,1.00,158.40,28.80,0 -177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0 -177.60,9.60,15.27,0.00,1.00,168.00,19.20,0 -177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0 -177.60,0.00,15.23,0.00,1.00,172.80,9.60,0 --177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0 --177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0 --177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0 --177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0 --177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0 --177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0 --177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0 --177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0 --177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0 --177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0 --177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0 --177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0 --177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0 --177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0 --177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0 --177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0 --172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0 --168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0 --134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0 --19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0 --9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0 --4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0 --4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0 --4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0 --0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0 --0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0 --0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0 --0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0 --0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0 --0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0 --0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0 --0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0 --0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0 --0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0 --0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0 --0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0 --0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0 --0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,14.40,0.00,1.00,0.00,0.00,0 --0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0 --0.00,14.40,14.36,0.00,1.00,9.60,9.60,0 --0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0 --0.00,24.00,14.31,0.00,1.00,14.40,19.20,0 --0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0 --0.00,33.60,14.27,0.00,1.00,24.00,28.80,0 --4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0 --4.80,43.20,14.23,0.00,1.00,28.80,38.40,0 --4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0 --4.80,52.80,14.18,0.00,1.00,38.40,48.00,0 --4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0 --4.80,62.40,14.14,0.00,1.00,48.00,57.60,0 --9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0 --9.60,72.00,14.10,0.00,1.00,62.40,67.20,0 --14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0 --24.00,81.60,14.06,0.00,1.00,72.00,76.80,0 --43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0 --110.40,86.40,14.01,0.00,1.00,86.40,86.40,0 --148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0 --163.20,76.80,13.97,0.00,1.00,96.00,81.60,0 --168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0 --172.80,67.20,13.93,0.00,1.00,110.40,72.00,0 --172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0 --172.80,57.60,13.89,0.00,1.00,120.00,62.40,0 --172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0 --177.60,48.00,13.84,0.00,1.00,134.40,52.80,0 --177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0 --177.60,38.40,13.80,0.00,1.00,144.00,43.20,0 --177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0 --177.60,28.80,13.76,0.00,1.00,148.80,33.60,0 --177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0 --177.60,19.20,13.71,0.00,1.00,158.40,24.00,0 --177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0 --177.60,9.60,13.67,0.00,1.00,168.00,14.40,0 --177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0 --177.60,0.00,13.63,0.00,1.00,172.80,4.80,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0 -177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0 -177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0 -177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0 -177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0 -177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0 -177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0 -172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0 -172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0 -172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0 -172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0 -168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0 -163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0 -148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0 -110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0 -43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0 -24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0 -14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0 -9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0 -9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0 -4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0 -4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0 -4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0 -4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0 -4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0 -0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0 -0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0 -0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0 -0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0 -0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,12.80,0.00,1.00,0.00,0.00,0 --0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0 --0.00,14.40,12.75,0.00,1.00,9.60,9.60,0 --4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0 --4.80,24.00,12.71,0.00,1.00,14.40,19.20,0 --4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0 --4.80,33.60,12.67,0.00,1.00,24.00,28.80,0 --4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0 --9.60,43.20,12.62,0.00,1.00,33.60,38.40,0 --9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0 --9.60,52.80,12.58,0.00,1.00,43.20,48.00,0 --14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0 --14.40,62.40,12.54,0.00,1.00,52.80,57.60,0 --19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0 --24.00,72.00,12.50,0.00,1.00,62.40,67.20,0 --33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0 --43.20,76.80,12.45,0.00,1.00,72.00,72.00,0 --67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0 --96.00,81.60,12.41,0.00,1.00,86.40,81.60,0 --124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0 --144.00,76.80,12.37,0.00,1.00,96.00,76.80,0 --153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0 --158.40,67.20,12.33,0.00,1.00,110.40,72.00,0 --163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0 --168.00,57.60,12.28,0.00,1.00,120.00,62.40,0 --168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0 --168.00,48.00,12.24,0.00,1.00,129.60,52.80,0 --172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0 --172.80,38.40,12.20,0.00,1.00,139.20,43.20,0 --172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0 --172.80,28.80,12.15,0.00,1.00,148.80,33.60,0 --177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0 --177.60,19.20,12.11,0.00,1.00,158.40,24.00,0 --177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0 --177.60,9.60,12.07,0.00,1.00,168.00,14.40,0 --177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0 --177.60,0.00,12.03,0.00,1.00,172.80,4.80,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0 -177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0 -172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0 -172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0 -168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0 -168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0 -168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0 -163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0 -158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0 -153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0 -144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0 -124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0 -96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0 -67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0 -43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0 -33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0 -24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0 -19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0 -14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0 -14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0 -9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0 -9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0 -9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0 -4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0 -4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0 -0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,11.19,0.00,1.00,0.00,0.00,0 --0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0 --4.80,14.40,11.15,0.00,1.00,9.60,9.60,0 --4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0 --4.80,24.00,11.11,0.00,1.00,14.40,19.20,0 --4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0 --9.60,33.60,11.07,0.00,1.00,24.00,28.80,0 --9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0 --14.40,43.20,11.02,0.00,1.00,33.60,38.40,0 --14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0 --14.40,52.80,10.98,0.00,1.00,43.20,48.00,0 --19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0 --24.00,57.60,10.94,0.00,1.00,52.80,52.80,0 --28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0 --33.60,67.20,10.89,0.00,1.00,62.40,62.40,0 --43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0 --57.60,72.00,10.85,0.00,1.00,76.80,72.00,0 --76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0 --96.00,76.80,10.81,0.00,1.00,86.40,76.80,0 --115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0 --129.60,72.00,10.77,0.00,1.00,96.00,76.80,0 --139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0 --148.80,67.20,10.72,0.00,1.00,105.60,67.20,0 --153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0 --158.40,57.60,10.68,0.00,1.00,120.00,62.40,0 --163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0 --163.20,48.00,10.64,0.00,1.00,129.60,52.80,0 --168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0 --168.00,38.40,10.60,0.00,1.00,139.20,43.20,0 --172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0 --172.80,28.80,10.55,0.00,1.00,148.80,33.60,0 --172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0 --172.80,19.20,10.51,0.00,1.00,158.40,24.00,0 --177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0 --177.60,9.60,10.47,0.00,1.00,163.20,14.40,0 --177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0 --177.60,0.00,10.42,0.00,1.00,172.80,4.80,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0 -168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0 -168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0 -163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0 -163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0 -158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0 -153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0 -148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0 -139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0 -129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0 -115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0 -96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0 -76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0 -57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0 -43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0 -33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0 -28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0 -24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0 -19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0 -14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0 -14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0 -14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0 -9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0 -9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0 -4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0 -4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0 -0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,9.59,0.00,1.00,0.00,0.00,0 --4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0 --4.80,14.40,9.55,0.00,1.00,9.60,9.60,0 --4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0 --9.60,24.00,9.51,0.00,1.00,19.20,19.20,0 --9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0 --9.60,33.60,9.46,0.00,1.00,24.00,28.80,0 --14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0 --14.40,38.40,9.42,0.00,1.00,33.60,33.60,0 --19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0 --24.00,48.00,9.38,0.00,1.00,43.20,43.20,0 --24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0 --28.80,57.60,9.34,0.00,1.00,52.80,52.80,0 --38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0 --43.20,62.40,9.29,0.00,1.00,67.20,62.40,0 --52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0 --62.40,72.00,9.25,0.00,1.00,76.80,67.20,0 --76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0 --96.00,72.00,9.21,0.00,1.00,86.40,72.00,0 --110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0 --120.00,67.20,9.16,0.00,1.00,96.00,72.00,0 --134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0 --139.20,62.40,9.12,0.00,1.00,105.60,67.20,0 --148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0 --153.60,57.60,9.08,0.00,1.00,115.20,57.60,0 --158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0 --158.40,48.00,9.04,0.00,1.00,129.60,52.80,0 --163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0 --163.20,38.40,8.99,0.00,1.00,139.20,43.20,0 --168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0 --168.00,28.80,8.95,0.00,1.00,148.80,33.60,0 --172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0 --172.80,19.20,8.91,0.00,1.00,153.60,24.00,0 --172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0 --177.60,9.60,8.87,0.00,1.00,163.20,14.40,0 --177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0 --177.60,0.00,8.82,0.00,1.00,172.80,4.80,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0 -168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0 -163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0 -163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0 -158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0 -158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0 -153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0 -148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0 -139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0 -134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0 -120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0 -110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0 -96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0 -76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0 -62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0 -52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0 -43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0 -38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0 -28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0 -24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0 -24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0 -19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0 -14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0 -14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0 -9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0 -9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0 -9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0 -0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,7.99,0.00,1.00,0.00,0.00,0 --4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0 --4.80,14.40,7.95,0.00,1.00,9.60,9.60,0 --9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0 --9.60,24.00,7.90,0.00,1.00,19.20,19.20,0 --14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0 --14.40,28.80,7.86,0.00,1.00,28.80,24.00,0 --19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0 --19.20,38.40,7.82,0.00,1.00,38.40,33.60,0 --24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0 --28.80,48.00,7.78,0.00,1.00,48.00,43.20,0 --33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0 --38.40,52.80,7.73,0.00,1.00,57.60,52.80,0 --43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0 --48.00,62.40,7.69,0.00,1.00,67.20,57.60,0 --57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0 --67.20,67.20,7.65,0.00,1.00,76.80,62.40,0 --81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0 --91.20,67.20,7.60,0.00,1.00,86.40,67.20,0 --105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0 --115.20,67.20,7.56,0.00,1.00,96.00,67.20,0 --124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0 --134.40,57.60,7.52,0.00,1.00,105.60,62.40,0 --139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0 --144.00,52.80,7.48,0.00,1.00,115.20,57.60,0 --148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0 --153.60,43.20,7.43,0.00,1.00,124.80,48.00,0 --158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0 --163.20,38.40,7.39,0.00,1.00,134.40,38.40,0 --163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0 --168.00,28.80,7.35,0.00,1.00,144.00,33.60,0 --168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0 --172.80,19.20,7.31,0.00,1.00,153.60,24.00,0 --172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0 --177.60,9.60,7.26,0.00,1.00,163.20,14.40,0 --177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0 --177.60,0.00,7.22,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0 -163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0 -158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0 -153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0 -148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0 -144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0 -139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0 -134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0 -124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0 -115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0 -105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0 -91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0 -81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0 -67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0 -57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0 -48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0 -43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0 -38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0 -33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0 -28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0 -24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0 -19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0 -19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0 -14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0 -9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0 -0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,6.39,0.00,1.00,0.00,0.00,0 --4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0 --4.80,14.40,6.34,0.00,1.00,9.60,9.60,0 --9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0 --9.60,19.20,6.30,0.00,1.00,19.20,14.40,0 --14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0 --19.20,28.80,6.26,0.00,1.00,28.80,24.00,0 --19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0 --24.00,38.40,6.22,0.00,1.00,38.40,33.60,0 --28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0 --33.60,43.20,6.17,0.00,1.00,48.00,38.40,0 --38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0 --43.20,52.80,6.13,0.00,1.00,57.60,48.00,0 --48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0 --52.80,57.60,6.09,0.00,1.00,67.20,52.80,0 --62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0 --72.00,62.40,6.05,0.00,1.00,76.80,57.60,0 --81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0 --91.20,62.40,6.00,0.00,1.00,86.40,62.40,0 --100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0 --110.40,62.40,5.96,0.00,1.00,96.00,62.40,0 --120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0 --129.60,57.60,5.92,0.00,1.00,105.60,57.60,0 --134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0 --139.20,48.00,5.87,0.00,1.00,115.20,52.80,0 --144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0 --148.80,43.20,5.83,0.00,1.00,124.80,48.00,0 --153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0 --158.40,33.60,5.79,0.00,1.00,134.40,38.40,0 --163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0 --163.20,28.80,5.75,0.00,1.00,144.00,28.80,0 --168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0 --168.00,19.20,5.70,0.00,1.00,153.60,24.00,0 --172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0 --172.80,9.60,5.66,0.00,1.00,163.20,14.40,0 --177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0 --177.60,0.00,5.62,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0 -163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0 -158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0 -148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0 -144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0 -139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0 -134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0 -129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0 -120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0 -110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0 -100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0 -91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0 -81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0 -72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0 -62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0 -52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0 -48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0 -43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0 -38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0 -33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0 -28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0 -24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0 -19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0 -19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0 -9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0 -4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0 -0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,4.79,0.00,1.00,0.00,0.00,0 --4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0 --9.60,14.40,4.74,0.00,1.00,9.60,9.60,0 --9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0 --14.40,19.20,4.70,0.00,1.00,19.20,14.40,0 --14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0 --19.20,28.80,4.66,0.00,1.00,28.80,24.00,0 --24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0 --28.80,33.60,4.61,0.00,1.00,38.40,28.80,0 --28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0 --33.60,43.20,4.57,0.00,1.00,48.00,38.40,0 --38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0 --48.00,48.00,4.53,0.00,1.00,57.60,43.20,0 --52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0 --57.60,52.80,4.49,0.00,1.00,67.20,48.00,0 --67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0 --76.80,57.60,4.44,0.00,1.00,76.80,52.80,0 --81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0 --91.20,57.60,4.40,0.00,1.00,86.40,57.60,0 --100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0 --110.40,57.60,4.36,0.00,1.00,96.00,57.60,0 --115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0 --124.80,52.80,4.32,0.00,1.00,105.60,52.80,0 --129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0 --139.20,48.00,4.27,0.00,1.00,115.20,48.00,0 --144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0 --148.80,38.40,4.23,0.00,1.00,124.80,43.20,0 --153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0 --153.60,33.60,4.19,0.00,1.00,134.40,38.40,0 --158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0 --163.20,24.00,4.14,0.00,1.00,144.00,28.80,0 --163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0 --168.00,19.20,4.10,0.00,1.00,153.60,24.00,0 --172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0 --172.80,9.60,4.06,0.00,1.00,163.20,14.40,0 --177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0 --177.60,0.00,4.02,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0 -163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0 -163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0 -158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0 -148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0 -144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0 -139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0 -129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0 -124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0 -115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0 -110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0 -100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0 -91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0 -81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0 -76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0 -67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0 -57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0 -52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0 -48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0 -38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0 -33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0 -28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0 -28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0 -24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0 -19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0 -14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0 -14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0 -9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0 -0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.18,0.00,1.00,0.00,0.00,0 --4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0 --9.60,9.60,3.14,0.00,1.00,9.60,9.60,0 --9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0 --14.40,19.20,3.10,0.00,1.00,19.20,14.40,0 --19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0 --24.00,24.00,3.05,0.00,1.00,28.80,24.00,0 --24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0 --28.80,33.60,3.01,0.00,1.00,38.40,28.80,0 --33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0 --38.40,38.40,2.97,0.00,1.00,48.00,33.60,0 --43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0 --48.00,43.20,2.93,0.00,1.00,57.60,43.20,0 --52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0 --62.40,48.00,2.88,0.00,1.00,67.20,48.00,0 --67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0 --76.80,52.80,2.84,0.00,1.00,76.80,48.00,0 --86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0 --91.20,52.80,2.80,0.00,1.00,86.40,52.80,0 --100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0 --105.60,52.80,2.76,0.00,1.00,96.00,52.80,0 --115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0 --120.00,48.00,2.71,0.00,1.00,105.60,48.00,0 --129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0 --134.40,43.20,2.67,0.00,1.00,115.20,43.20,0 --139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0 --144.00,38.40,2.63,0.00,1.00,124.80,38.40,0 --148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0 --153.60,33.60,2.58,0.00,1.00,134.40,33.60,0 --158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0 --158.40,24.00,2.54,0.00,1.00,144.00,28.80,0 --163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0 --168.00,19.20,2.50,0.00,1.00,153.60,19.20,0 --168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.46,0.00,1.00,163.20,14.40,0 --177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.41,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0 -158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0 -148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0 -144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0 -139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0 -134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0 -129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0 -120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0 -115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0 -105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0 -100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0 -91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0 -86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0 -76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0 -67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0 -62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0 -52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0 -48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0 -43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0 -38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0 -33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0 -28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0 -24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0 -24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0 -19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0 -0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.58,0.00,1.00,0.00,0.00,0 --4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.54,0.00,1.00,9.60,4.80,0 --14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0 --14.40,19.20,1.50,0.00,1.00,19.20,14.40,0 --19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0 --24.00,24.00,1.45,0.00,1.00,28.80,19.20,0 --28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0 --33.60,28.80,1.41,0.00,1.00,38.40,28.80,0 --38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0 --43.20,38.40,1.37,0.00,1.00,48.00,33.60,0 --48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0 --52.80,43.20,1.32,0.00,1.00,57.60,38.40,0 --57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0 --62.40,43.20,1.28,0.00,1.00,67.20,43.20,0 --72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0 --76.80,48.00,1.24,0.00,1.00,76.80,43.20,0 --86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0 --91.20,48.00,1.20,0.00,1.00,86.40,48.00,0 --100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0 --105.60,48.00,1.15,0.00,1.00,96.00,48.00,0 --110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0 --120.00,43.20,1.11,0.00,1.00,105.60,43.20,0 --124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0 --129.60,38.40,1.07,0.00,1.00,115.20,43.20,0 --134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0 --139.20,33.60,1.03,0.00,1.00,124.80,38.40,0 --144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0 --148.80,28.80,0.98,0.00,1.00,134.40,33.60,0 --153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0 --158.40,24.00,0.94,0.00,1.00,144.00,24.00,0 --163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0 --163.20,14.40,0.90,0.00,1.00,153.60,19.20,0 --168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.85,0.00,1.00,163.20,14.40,0 --172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.81,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0 -148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0 -144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0 -139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0 -134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0 -129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0 -124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0 -120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0 -110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0 -105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0 -100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0 -91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0 -86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0 -76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0 -72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0 -62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0 -57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0 -52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0 -48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0 -43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0 -38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0 -28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0 -19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0 -0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,0.00,0.00,1.00,0.00,0.00,0 --4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0 --9.60,9.60,0.04,0.00,1.00,9.60,4.80,0 --14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0 --19.20,14.40,0.09,0.00,1.00,19.20,14.40,0 --24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0 --24.00,24.00,0.13,0.00,1.00,28.80,19.20,0 --28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0 --33.60,28.80,0.17,0.00,1.00,38.40,24.00,0 --38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0 --43.20,33.60,0.21,0.00,1.00,48.00,28.80,0 --48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0 --52.80,38.40,0.26,0.00,1.00,57.60,33.60,0 --62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0 --67.20,38.40,0.30,0.00,1.00,67.20,38.40,0 --72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0 --76.80,43.20,0.34,0.00,1.00,76.80,38.40,0 --86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0 --91.20,43.20,0.38,0.00,1.00,86.40,43.20,0 --96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0 --105.60,43.20,0.43,0.00,1.00,96.00,43.20,0 --110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0 --115.20,38.40,0.47,0.00,1.00,105.60,38.40,0 --124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0 --129.60,38.40,0.51,0.00,1.00,115.20,38.40,0 --134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0 --139.20,33.60,0.56,0.00,1.00,124.80,33.60,0 --144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0 --148.80,28.80,0.60,0.00,1.00,134.40,28.80,0 --153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0 --158.40,19.20,0.64,0.00,1.00,144.00,24.00,0 --158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0 --163.20,14.40,0.68,0.00,1.00,153.60,19.20,0 --168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.73,0.00,1.00,163.20,9.60,0 --172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.77,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0 -158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0 -158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0 -148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0 -144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0 -139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0 -134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0 -129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0 -124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0 -115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0 -110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0 -105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0 -96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0 -91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0 -86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0 -76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0 -72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0 -67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0 -62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0 -52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0 -48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0 -43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0 -38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0 -28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0 -19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0 -0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.60,0.00,1.00,0.00,0.00,0 --9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.64,0.00,1.00,9.60,4.80,0 --14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0 --19.20,14.40,1.69,0.00,1.00,19.20,9.60,0 --24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0 --28.80,19.20,1.73,0.00,1.00,28.80,19.20,0 --33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0 --38.40,24.00,1.77,0.00,1.00,38.40,24.00,0 --43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0 --48.00,28.80,1.82,0.00,1.00,48.00,28.80,0 --52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0 --57.60,33.60,1.86,0.00,1.00,57.60,28.80,0 --62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0 --67.20,38.40,1.90,0.00,1.00,67.20,33.60,0 --72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0 --81.60,38.40,1.94,0.00,1.00,76.80,38.40,0 --86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0 --91.20,38.40,1.99,0.00,1.00,86.40,38.40,0 --96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0 --105.60,38.40,2.03,0.00,1.00,96.00,38.40,0 --110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0 --115.20,33.60,2.07,0.00,1.00,105.60,33.60,0 --120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0 --124.80,33.60,2.11,0.00,1.00,115.20,33.60,0 --129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0 --134.40,28.80,2.16,0.00,1.00,124.80,28.80,0 --139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0 --144.00,24.00,2.20,0.00,1.00,134.40,24.00,0 --148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0 --153.60,19.20,2.24,0.00,1.00,144.00,19.20,0 --158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0 --163.20,14.40,2.29,0.00,1.00,153.60,14.40,0 --168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.33,0.00,1.00,163.20,9.60,0 --172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.37,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0 -153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0 -144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0 -134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0 -124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0 -120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0 -115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0 -110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0 -105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0 -96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0 -91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0 -86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0 -81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0 -72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0 -67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0 -62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0 -57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0 -52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0 -48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0 -43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0 -38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0 -33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0 -28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0 -14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.20,0.00,1.00,0.00,0.00,0 --9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0 --14.40,9.60,3.25,0.00,1.00,9.60,4.80,0 --14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0 --19.20,14.40,3.29,0.00,1.00,19.20,9.60,0 --24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0 --28.80,19.20,3.33,0.00,1.00,28.80,14.40,0 --33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0 --38.40,24.00,3.38,0.00,1.00,38.40,19.20,0 --43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0 --48.00,24.00,3.42,0.00,1.00,48.00,24.00,0 --52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0 --57.60,28.80,3.46,0.00,1.00,57.60,28.80,0 --62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0 --67.20,33.60,3.50,0.00,1.00,67.20,28.80,0 --72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0 --81.60,33.60,3.55,0.00,1.00,76.80,33.60,0 --86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0 --91.20,33.60,3.59,0.00,1.00,86.40,33.60,0 --96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0 --100.80,33.60,3.63,0.00,1.00,96.00,33.60,0 --110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0 --115.20,33.60,3.67,0.00,1.00,105.60,28.80,0 --120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0 --124.80,28.80,3.72,0.00,1.00,115.20,28.80,0 --129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0 --134.40,24.00,3.76,0.00,1.00,124.80,24.00,0 --139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0 --144.00,19.20,3.80,0.00,1.00,134.40,24.00,0 --148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0 --153.60,14.40,3.85,0.00,1.00,144.00,19.20,0 --158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0 --163.20,9.60,3.89,0.00,1.00,153.60,14.40,0 --168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0 --168.00,4.80,3.93,0.00,1.00,163.20,9.60,0 --172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0 --177.60,0.00,3.97,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0 -124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0 -120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0 -115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0 -110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0 -100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0 -96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0 -91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0 -86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0 -81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0 -72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0 -67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0 -62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0 -57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0 -52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0 -48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0 -43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0 -38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0 -33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0 -28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0 -24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0 -14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0 -14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0 --4.80,0.00,4.81,0.00,1.00,0.00,0.00,0 --9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0 --14.40,4.80,4.85,0.00,1.00,9.60,4.80,0 --19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0 --19.20,9.60,4.89,0.00,1.00,19.20,9.60,0 --24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0 --28.80,14.40,4.93,0.00,1.00,28.80,14.40,0 --33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0 --38.40,19.20,4.98,0.00,1.00,38.40,14.40,0 --43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0 --48.00,24.00,5.02,0.00,1.00,48.00,19.20,0 --52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0 --57.60,24.00,5.06,0.00,1.00,57.60,24.00,0 --62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0 --72.00,28.80,5.11,0.00,1.00,67.20,24.00,0 --76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0 --81.60,28.80,5.15,0.00,1.00,76.80,28.80,0 --86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0 --91.20,28.80,5.19,0.00,1.00,86.40,28.80,0 --96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0 --100.80,28.80,5.23,0.00,1.00,96.00,28.80,0 --105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0 --115.20,28.80,5.28,0.00,1.00,105.60,28.80,0 --120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0 --124.80,24.00,5.32,0.00,1.00,115.20,24.00,0 --129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0 --134.40,24.00,5.36,0.00,1.00,124.80,24.00,0 --139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0 --144.00,19.20,5.40,0.00,1.00,134.40,19.20,0 --148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0 --153.60,14.40,5.45,0.00,1.00,144.00,14.40,0 --158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0 --163.20,9.60,5.49,0.00,1.00,153.60,9.60,0 --163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0 --168.00,4.80,5.53,0.00,1.00,163.20,9.60,0 --172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0 --177.60,0.00,5.58,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0 -163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0 -129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0 -124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0 -120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0 -115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0 -105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0 -100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0 -96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0 -91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0 -86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0 -81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0 -76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0 -72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0 -62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0 -57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0 -52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0 -48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0 -43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0 -38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0 -33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0 -28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0 -24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0 -19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0 -19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0 -0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,6.41,0.00,1.00,0.00,0.00,0 --9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0 --14.40,4.80,6.45,0.00,1.00,9.60,4.80,0 --19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0 --24.00,9.60,6.49,0.00,1.00,19.20,9.60,0 --28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0 --33.60,14.40,6.54,0.00,1.00,28.80,9.60,0 --33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0 --38.40,14.40,6.58,0.00,1.00,38.40,14.40,0 --43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0 --48.00,19.20,6.62,0.00,1.00,48.00,14.40,0 --57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0 --62.40,19.20,6.66,0.00,1.00,57.60,19.20,0 --67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0 --72.00,24.00,6.71,0.00,1.00,67.20,19.20,0 --76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0 --81.60,24.00,6.75,0.00,1.00,76.80,24.00,0 --86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0 --91.20,24.00,6.79,0.00,1.00,86.40,24.00,0 --96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0 --100.80,24.00,6.84,0.00,1.00,96.00,24.00,0 --105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0 --110.40,24.00,6.88,0.00,1.00,105.60,24.00,0 --115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0 --120.00,19.20,6.92,0.00,1.00,115.20,19.20,0 --129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0 --134.40,19.20,6.96,0.00,1.00,124.80,19.20,0 --139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0 --144.00,14.40,7.01,0.00,1.00,134.40,14.40,0 --148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0 --148.80,14.40,7.05,0.00,1.00,144.00,14.40,0 --153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0 --158.40,9.60,7.09,0.00,1.00,153.60,9.60,0 --163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0 --168.00,4.80,7.13,0.00,1.00,163.20,4.80,0 --172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0 --177.60,0.00,7.18,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0 -163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0 -158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0 -148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0 -144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0 -134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0 -129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0 -120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0 -115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0 -110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0 -105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0 -100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0 -96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0 -91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0 -86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0 -81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0 -76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0 -72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0 -67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0 -62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0 -57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0 -48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0 -43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0 -38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0 -33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0 -33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0 -28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0 -24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0 -19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0 -0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,8.01,0.00,1.00,0.00,0.00,0 --9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0 --14.40,4.80,8.05,0.00,1.00,9.60,4.80,0 --19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0 --24.00,9.60,8.10,0.00,1.00,19.20,4.80,0 --28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0 --33.60,9.60,8.14,0.00,1.00,24.00,9.60,0 --38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0 --43.20,14.40,8.18,0.00,1.00,33.60,9.60,0 --48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0 --52.80,14.40,8.22,0.00,1.00,43.20,14.40,0 --57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0 --62.40,19.20,8.27,0.00,1.00,52.80,14.40,0 --67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0 --72.00,19.20,8.31,0.00,1.00,62.40,14.40,0 --76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0 --81.60,19.20,8.35,0.00,1.00,76.80,19.20,0 --86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0 --91.20,19.20,8.40,0.00,1.00,86.40,19.20,0 --96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0 --100.80,19.20,8.44,0.00,1.00,96.00,19.20,0 --105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0 --110.40,19.20,8.48,0.00,1.00,105.60,19.20,0 --115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0 --120.00,14.40,8.52,0.00,1.00,120.00,14.40,0 --124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0 --129.60,14.40,8.57,0.00,1.00,129.60,14.40,0 --134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0 --139.20,14.40,8.61,0.00,1.00,139.20,14.40,0 --144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0 --148.80,9.60,8.65,0.00,1.00,148.80,9.60,0 --153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0 --158.40,4.80,8.69,0.00,1.00,158.40,9.60,0 --163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0 --168.00,4.80,8.74,0.00,1.00,163.20,4.80,0 --172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0 -148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0 -144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0 -139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0 -134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0 -129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0 -124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0 -120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0 -115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0 -110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0 -105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0 -100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0 -96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0 -91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0 -86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0 -81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0 -76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0 -72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0 -67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0 -62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0 -52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0 -48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0 -43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0 -38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0 -33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0 -28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0 -24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0 -19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0 -9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0 -0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,9.61,0.00,1.00,0.00,0.00,0 --9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0 --14.40,4.80,9.66,0.00,1.00,9.60,0.00,0 --19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0 --24.00,4.80,9.70,0.00,1.00,14.40,4.80,0 --28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0 --33.60,9.60,9.74,0.00,1.00,24.00,4.80,0 --38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0 --43.20,9.60,9.78,0.00,1.00,33.60,9.60,0 --48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0 --52.80,9.60,9.83,0.00,1.00,43.20,9.60,0 --57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0 --62.40,14.40,9.87,0.00,1.00,52.80,9.60,0 --67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0 --72.00,14.40,9.91,0.00,1.00,62.40,14.40,0 --76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0 --81.60,14.40,9.95,0.00,1.00,76.80,14.40,0 --86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0 --91.20,14.40,10.00,0.00,1.00,86.40,14.40,0 --96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0 --100.80,14.40,10.04,0.00,1.00,96.00,14.40,0 --105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0 --110.40,14.40,10.08,0.00,1.00,110.40,14.40,0 --115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0 --120.00,14.40,10.13,0.00,1.00,120.00,9.60,0 --124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0 --129.60,9.60,10.17,0.00,1.00,129.60,9.60,0 --134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0 --139.20,9.60,10.21,0.00,1.00,139.20,9.60,0 --144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0 --148.80,9.60,10.25,0.00,1.00,148.80,9.60,0 --153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0 --158.40,4.80,10.30,0.00,1.00,158.40,4.80,0 --163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0 --168.00,4.80,10.34,0.00,1.00,168.00,4.80,0 --172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0 -148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0 -144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0 -139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0 -134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0 -129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0 -124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0 -120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0 -115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0 -110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0 -105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0 -100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0 -96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0 -91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0 -86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0 -81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0 -76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0 -72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0 -67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0 -62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0 -48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0 -43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0 -38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0 -33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0 -28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0 -24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0 -19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0 -14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,11.21,0.00,1.00,0.00,0.00,0 --9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0 --14.40,0.00,11.26,0.00,1.00,9.60,0.00,0 --19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0 --24.00,4.80,11.30,0.00,1.00,14.40,4.80,0 --28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0 --33.60,4.80,11.34,0.00,1.00,24.00,4.80,0 --38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0 --43.20,4.80,11.39,0.00,1.00,33.60,4.80,0 --48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0 --52.80,9.60,11.43,0.00,1.00,43.20,4.80,0 --57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0 --62.40,9.60,11.47,0.00,1.00,52.80,4.80,0 --67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0 --72.00,9.60,11.51,0.00,1.00,62.40,9.60,0 --76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0 --81.60,9.60,11.56,0.00,1.00,72.00,9.60,0 --86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0 --91.20,9.60,11.60,0.00,1.00,86.40,9.60,0 --96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0 --100.80,9.60,11.64,0.00,1.00,96.00,9.60,0 --105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0 --110.40,9.60,11.68,0.00,1.00,110.40,9.60,0 --115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0 --120.00,9.60,11.73,0.00,1.00,120.00,9.60,0 --124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0 --129.60,9.60,11.77,0.00,1.00,129.60,4.80,0 --134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0 --139.20,4.80,11.81,0.00,1.00,139.20,4.80,0 --144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0 --148.80,4.80,11.86,0.00,1.00,148.80,4.80,0 --153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0 --158.40,4.80,11.90,0.00,1.00,158.40,4.80,0 --163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0 --168.00,0.00,11.94,0.00,1.00,168.00,4.80,0 --172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0 -158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0 -148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0 -144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0 -139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0 -134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0 -129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0 -124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0 -120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0 -115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0 -110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0 -105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0 -100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0 -96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0 -91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0 -86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0 -81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0 -76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0 -72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0 -67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0 -62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0 -57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0 -43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0 -33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0 -28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0 -24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0 -19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,12.82,0.00,1.00,0.00,0.00,0 --9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0 --14.40,0.00,12.86,0.00,1.00,9.60,0.00,0 --19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0 --24.00,0.00,12.90,0.00,1.00,14.40,0.00,0 --28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0 --33.60,4.80,12.95,0.00,1.00,24.00,0.00,0 --38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0 --43.20,4.80,12.99,0.00,1.00,28.80,0.00,0 --48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0 --52.80,4.80,13.03,0.00,1.00,38.40,4.80,0 --57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0 --62.40,4.80,13.07,0.00,1.00,48.00,4.80,0 --67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0 --72.00,4.80,13.12,0.00,1.00,62.40,4.80,0 --76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0 --81.60,4.80,13.16,0.00,1.00,72.00,4.80,0 --86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0 --91.20,4.80,13.20,0.00,1.00,86.40,4.80,0 --96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0 --100.80,4.80,13.24,0.00,1.00,96.00,4.80,0 --105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0 --110.40,4.80,13.29,0.00,1.00,110.40,4.80,0 --115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0 --120.00,4.80,13.33,0.00,1.00,120.00,4.80,0 --124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0 --129.60,4.80,13.37,0.00,1.00,134.40,4.80,0 --134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0 --139.20,4.80,13.42,0.00,1.00,144.00,4.80,0 --144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0 --148.80,4.80,13.46,0.00,1.00,153.60,0.00,0 --153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0 --158.40,0.00,13.50,0.00,1.00,158.40,0.00,0 --163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0 --168.00,0.00,13.54,0.00,1.00,168.00,0.00,0 --172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0 -163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0 -158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0 -153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0 -148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0 -144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0 -139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0 -134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0 -129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0 -124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0 -120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0 -115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0 -110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0 -105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0 -100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0 -96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0 -91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0 -86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0 -81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0 -76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0 -72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0 -67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0 -57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0 -52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0 -43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0 -33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0 -28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0 -24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0 -19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0 -14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0 -9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,14.42,0.00,1.00,0.00,0.00,0 --9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0 --14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0 --19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0 --24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0 --28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0 --33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0 --38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0 --43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0 --48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0 --52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0 --57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0 --62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0 --67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0 --72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0 --76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0 --81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0 --86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0 --91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0 --96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0 --100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0 --105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0 --110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0 --115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0 --120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0 --124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0 --129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0 --134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0 --139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0 --144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0 --148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0 --153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0 --158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0 --163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0 --168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0 --172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0 -177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0 -172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0 -168.00,0.00,15.25,0.00,1.00,4.80,0.00,0 -163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0 -158.40,0.00,15.30,0.00,1.00,9.60,0.00,0 -153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0 -148.80,0.00,15.34,0.00,1.00,19.20,0.00,0 -144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0 -139.20,0.00,15.38,0.00,1.00,28.80,0.00,0 -134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0 -129.60,0.00,15.42,0.00,1.00,33.60,0.00,0 -124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0 -120.00,0.00,15.47,0.00,1.00,43.20,0.00,0 -115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0 -110.40,0.00,15.51,0.00,1.00,57.60,0.00,0 -105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0 -100.80,0.00,15.55,0.00,1.00,67.20,0.00,0 -96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0 -91.20,0.00,15.59,0.00,1.00,81.60,0.00,0 -86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0 -81.60,0.00,15.64,0.00,1.00,96.00,0.00,0 -76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0 -72.00,0.00,15.68,0.00,1.00,110.40,0.00,0 -67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0 -62.40,0.00,15.72,0.00,1.00,120.00,0.00,0 -57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0 -52.80,0.00,15.77,0.00,1.00,134.40,0.00,0 -48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0 -43.20,0.00,15.81,0.00,1.00,144.00,0.00,0 -38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0 -33.60,0.00,15.85,0.00,1.00,153.60,0.00,0 -28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0 -24.00,0.00,15.89,0.00,1.00,158.40,0.00,0 -19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0 -14.40,0.00,15.94,0.00,1.00,168.00,0.00,0 -9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0 -4.80,0.00,15.98,0.00,1.00,172.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 diff --git a/scripts/testv/stvOMASA_2ISM_1MASA2TC32c.met b/scripts/testv/stvOMASA_2ISM_1MASA2TC32c.met deleted file mode 100644 index 00acdae5394c5d40e9193d7dd9cd1fee6d182c24..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_1MASA2TC32c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5a1f87bfe360dbd221a94583aa68a58ef050e968a63351730d643f2dc2cac4e1 -size 204600 diff --git a/scripts/testv/stvOMASA_2ISM_1MASA2TC32c.wav b/scripts/testv/stvOMASA_2ISM_1MASA2TC32c.wav deleted file mode 100644 index 37c6bcc4c8f92869334c6a1f37afb0968617803b..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_1MASA2TC32c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:62a9ad87028d71e8874fe47ffc38ec64d9c4a7f1bfb3af364f29e617dde10f5c -size 1536080 diff --git a/scripts/testv/stvOMASA_2ISM_1MASA2TC32c_ISM1.csv b/scripts/testv/stvOMASA_2ISM_1MASA2TC32c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_1MASA2TC32c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_2ISM_1MASA2TC32c_ISM2.csv b/scripts/testv/stvOMASA_2ISM_1MASA2TC32c_ISM2.csv deleted file mode 100644 index f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_1MASA2TC32c_ISM2.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,4.80,16.00,0.00,1.00,0.00,0.00,0 -0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0 -0.00,14.40,15.96,0.00,1.00,4.80,9.60,0 -0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0 -0.00,24.00,15.91,0.00,1.00,14.40,19.20,0 -0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0 -0.00,33.60,15.87,0.00,1.00,19.20,28.80,0 -0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0 -0.00,43.20,15.83,0.00,1.00,28.80,38.40,0 -0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0 -0.00,52.80,15.79,0.00,1.00,38.40,48.00,0 -0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0 -0.00,62.40,15.74,0.00,1.00,48.00,57.60,0 -4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0 -4.80,72.00,15.70,0.00,1.00,57.60,67.20,0 -4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0 -9.60,81.60,15.66,0.00,1.00,72.00,76.80,0 -19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0 -134.40,86.40,15.62,0.00,1.00,86.40,86.40,0 -168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0 -172.80,76.80,15.57,0.00,1.00,100.80,86.40,0 -177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0 -177.60,67.20,15.53,0.00,1.00,110.40,76.80,0 -177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0 -177.60,57.60,15.49,0.00,1.00,124.80,67.20,0 -177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0 -177.60,48.00,15.44,0.00,1.00,134.40,57.60,0 -177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0 -177.60,38.40,15.40,0.00,1.00,144.00,48.00,0 -177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0 -177.60,28.80,15.36,0.00,1.00,153.60,38.40,0 -177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0 -177.60,19.20,15.32,0.00,1.00,158.40,28.80,0 -177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0 -177.60,9.60,15.27,0.00,1.00,168.00,19.20,0 -177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0 -177.60,0.00,15.23,0.00,1.00,172.80,9.60,0 --177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0 --177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0 --177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0 --177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0 --177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0 --177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0 --177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0 --177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0 --177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0 --177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0 --177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0 --177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0 --177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0 --177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0 --177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0 --177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0 --172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0 --168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0 --134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0 --19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0 --9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0 --4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0 --4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0 --4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0 --0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0 --0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0 --0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0 --0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0 --0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0 --0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0 --0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0 --0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0 --0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0 --0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0 --0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0 --0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0 --0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0 --0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,14.40,0.00,1.00,0.00,0.00,0 --0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0 --0.00,14.40,14.36,0.00,1.00,9.60,9.60,0 --0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0 --0.00,24.00,14.31,0.00,1.00,14.40,19.20,0 --0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0 --0.00,33.60,14.27,0.00,1.00,24.00,28.80,0 --4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0 --4.80,43.20,14.23,0.00,1.00,28.80,38.40,0 --4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0 --4.80,52.80,14.18,0.00,1.00,38.40,48.00,0 --4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0 --4.80,62.40,14.14,0.00,1.00,48.00,57.60,0 --9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0 --9.60,72.00,14.10,0.00,1.00,62.40,67.20,0 --14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0 --24.00,81.60,14.06,0.00,1.00,72.00,76.80,0 --43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0 --110.40,86.40,14.01,0.00,1.00,86.40,86.40,0 --148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0 --163.20,76.80,13.97,0.00,1.00,96.00,81.60,0 --168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0 --172.80,67.20,13.93,0.00,1.00,110.40,72.00,0 --172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0 --172.80,57.60,13.89,0.00,1.00,120.00,62.40,0 --172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0 --177.60,48.00,13.84,0.00,1.00,134.40,52.80,0 --177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0 --177.60,38.40,13.80,0.00,1.00,144.00,43.20,0 --177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0 --177.60,28.80,13.76,0.00,1.00,148.80,33.60,0 --177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0 --177.60,19.20,13.71,0.00,1.00,158.40,24.00,0 --177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0 --177.60,9.60,13.67,0.00,1.00,168.00,14.40,0 --177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0 --177.60,0.00,13.63,0.00,1.00,172.80,4.80,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0 -177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0 -177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0 -177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0 -177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0 -177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0 -177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0 -172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0 -172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0 -172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0 -172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0 -168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0 -163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0 -148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0 -110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0 -43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0 -24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0 -14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0 -9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0 -9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0 -4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0 -4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0 -4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0 -4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0 -4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0 -0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0 -0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0 -0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0 -0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0 -0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,12.80,0.00,1.00,0.00,0.00,0 --0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0 --0.00,14.40,12.75,0.00,1.00,9.60,9.60,0 --4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0 --4.80,24.00,12.71,0.00,1.00,14.40,19.20,0 --4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0 --4.80,33.60,12.67,0.00,1.00,24.00,28.80,0 --4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0 --9.60,43.20,12.62,0.00,1.00,33.60,38.40,0 --9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0 --9.60,52.80,12.58,0.00,1.00,43.20,48.00,0 --14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0 --14.40,62.40,12.54,0.00,1.00,52.80,57.60,0 --19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0 --24.00,72.00,12.50,0.00,1.00,62.40,67.20,0 --33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0 --43.20,76.80,12.45,0.00,1.00,72.00,72.00,0 --67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0 --96.00,81.60,12.41,0.00,1.00,86.40,81.60,0 --124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0 --144.00,76.80,12.37,0.00,1.00,96.00,76.80,0 --153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0 --158.40,67.20,12.33,0.00,1.00,110.40,72.00,0 --163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0 --168.00,57.60,12.28,0.00,1.00,120.00,62.40,0 --168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0 --168.00,48.00,12.24,0.00,1.00,129.60,52.80,0 --172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0 --172.80,38.40,12.20,0.00,1.00,139.20,43.20,0 --172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0 --172.80,28.80,12.15,0.00,1.00,148.80,33.60,0 --177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0 --177.60,19.20,12.11,0.00,1.00,158.40,24.00,0 --177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0 --177.60,9.60,12.07,0.00,1.00,168.00,14.40,0 --177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0 --177.60,0.00,12.03,0.00,1.00,172.80,4.80,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0 -177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0 -172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0 -172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0 -168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0 -168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0 -168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0 -163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0 -158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0 -153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0 -144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0 -124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0 -96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0 -67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0 -43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0 -33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0 -24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0 -19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0 -14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0 -14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0 -9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0 -9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0 -9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0 -4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0 -4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0 -0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,11.19,0.00,1.00,0.00,0.00,0 --0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0 --4.80,14.40,11.15,0.00,1.00,9.60,9.60,0 --4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0 --4.80,24.00,11.11,0.00,1.00,14.40,19.20,0 --4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0 --9.60,33.60,11.07,0.00,1.00,24.00,28.80,0 --9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0 --14.40,43.20,11.02,0.00,1.00,33.60,38.40,0 --14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0 --14.40,52.80,10.98,0.00,1.00,43.20,48.00,0 --19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0 --24.00,57.60,10.94,0.00,1.00,52.80,52.80,0 --28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0 --33.60,67.20,10.89,0.00,1.00,62.40,62.40,0 --43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0 --57.60,72.00,10.85,0.00,1.00,76.80,72.00,0 --76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0 --96.00,76.80,10.81,0.00,1.00,86.40,76.80,0 --115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0 --129.60,72.00,10.77,0.00,1.00,96.00,76.80,0 --139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0 --148.80,67.20,10.72,0.00,1.00,105.60,67.20,0 --153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0 --158.40,57.60,10.68,0.00,1.00,120.00,62.40,0 --163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0 --163.20,48.00,10.64,0.00,1.00,129.60,52.80,0 --168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0 --168.00,38.40,10.60,0.00,1.00,139.20,43.20,0 --172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0 --172.80,28.80,10.55,0.00,1.00,148.80,33.60,0 --172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0 --172.80,19.20,10.51,0.00,1.00,158.40,24.00,0 --177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0 --177.60,9.60,10.47,0.00,1.00,163.20,14.40,0 --177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0 --177.60,0.00,10.42,0.00,1.00,172.80,4.80,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0 -168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0 -168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0 -163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0 -163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0 -158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0 -153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0 -148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0 -139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0 -129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0 -115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0 -96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0 -76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0 -57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0 -43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0 -33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0 -28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0 -24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0 -19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0 -14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0 -14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0 -14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0 -9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0 -9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0 -4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0 -4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0 -0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,9.59,0.00,1.00,0.00,0.00,0 --4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0 --4.80,14.40,9.55,0.00,1.00,9.60,9.60,0 --4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0 --9.60,24.00,9.51,0.00,1.00,19.20,19.20,0 --9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0 --9.60,33.60,9.46,0.00,1.00,24.00,28.80,0 --14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0 --14.40,38.40,9.42,0.00,1.00,33.60,33.60,0 --19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0 --24.00,48.00,9.38,0.00,1.00,43.20,43.20,0 --24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0 --28.80,57.60,9.34,0.00,1.00,52.80,52.80,0 --38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0 --43.20,62.40,9.29,0.00,1.00,67.20,62.40,0 --52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0 --62.40,72.00,9.25,0.00,1.00,76.80,67.20,0 --76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0 --96.00,72.00,9.21,0.00,1.00,86.40,72.00,0 --110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0 --120.00,67.20,9.16,0.00,1.00,96.00,72.00,0 --134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0 --139.20,62.40,9.12,0.00,1.00,105.60,67.20,0 --148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0 --153.60,57.60,9.08,0.00,1.00,115.20,57.60,0 --158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0 --158.40,48.00,9.04,0.00,1.00,129.60,52.80,0 --163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0 --163.20,38.40,8.99,0.00,1.00,139.20,43.20,0 --168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0 --168.00,28.80,8.95,0.00,1.00,148.80,33.60,0 --172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0 --172.80,19.20,8.91,0.00,1.00,153.60,24.00,0 --172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0 --177.60,9.60,8.87,0.00,1.00,163.20,14.40,0 --177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0 --177.60,0.00,8.82,0.00,1.00,172.80,4.80,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0 -168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0 -163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0 -163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0 -158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0 -158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0 -153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0 -148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0 -139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0 -134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0 -120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0 -110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0 -96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0 -76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0 -62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0 -52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0 -43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0 -38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0 -28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0 -24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0 -24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0 -19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0 -14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0 -14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0 -9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0 -9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0 -9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0 -0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,7.99,0.00,1.00,0.00,0.00,0 --4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0 --4.80,14.40,7.95,0.00,1.00,9.60,9.60,0 --9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0 --9.60,24.00,7.90,0.00,1.00,19.20,19.20,0 --14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0 --14.40,28.80,7.86,0.00,1.00,28.80,24.00,0 --19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0 --19.20,38.40,7.82,0.00,1.00,38.40,33.60,0 --24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0 --28.80,48.00,7.78,0.00,1.00,48.00,43.20,0 --33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0 --38.40,52.80,7.73,0.00,1.00,57.60,52.80,0 --43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0 --48.00,62.40,7.69,0.00,1.00,67.20,57.60,0 --57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0 --67.20,67.20,7.65,0.00,1.00,76.80,62.40,0 --81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0 --91.20,67.20,7.60,0.00,1.00,86.40,67.20,0 --105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0 --115.20,67.20,7.56,0.00,1.00,96.00,67.20,0 --124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0 --134.40,57.60,7.52,0.00,1.00,105.60,62.40,0 --139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0 --144.00,52.80,7.48,0.00,1.00,115.20,57.60,0 --148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0 --153.60,43.20,7.43,0.00,1.00,124.80,48.00,0 --158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0 --163.20,38.40,7.39,0.00,1.00,134.40,38.40,0 --163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0 --168.00,28.80,7.35,0.00,1.00,144.00,33.60,0 --168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0 --172.80,19.20,7.31,0.00,1.00,153.60,24.00,0 --172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0 --177.60,9.60,7.26,0.00,1.00,163.20,14.40,0 --177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0 --177.60,0.00,7.22,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0 -163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0 -158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0 -153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0 -148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0 -144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0 -139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0 -134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0 -124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0 -115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0 -105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0 -91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0 -81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0 -67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0 -57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0 -48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0 -43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0 -38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0 -33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0 -28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0 -24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0 -19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0 -19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0 -14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0 -9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0 -0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,6.39,0.00,1.00,0.00,0.00,0 --4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0 --4.80,14.40,6.34,0.00,1.00,9.60,9.60,0 --9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0 --9.60,19.20,6.30,0.00,1.00,19.20,14.40,0 --14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0 --19.20,28.80,6.26,0.00,1.00,28.80,24.00,0 --19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0 --24.00,38.40,6.22,0.00,1.00,38.40,33.60,0 --28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0 --33.60,43.20,6.17,0.00,1.00,48.00,38.40,0 --38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0 --43.20,52.80,6.13,0.00,1.00,57.60,48.00,0 --48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0 --52.80,57.60,6.09,0.00,1.00,67.20,52.80,0 --62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0 --72.00,62.40,6.05,0.00,1.00,76.80,57.60,0 --81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0 --91.20,62.40,6.00,0.00,1.00,86.40,62.40,0 --100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0 --110.40,62.40,5.96,0.00,1.00,96.00,62.40,0 --120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0 --129.60,57.60,5.92,0.00,1.00,105.60,57.60,0 --134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0 --139.20,48.00,5.87,0.00,1.00,115.20,52.80,0 --144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0 --148.80,43.20,5.83,0.00,1.00,124.80,48.00,0 --153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0 --158.40,33.60,5.79,0.00,1.00,134.40,38.40,0 --163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0 --163.20,28.80,5.75,0.00,1.00,144.00,28.80,0 --168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0 --168.00,19.20,5.70,0.00,1.00,153.60,24.00,0 --172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0 --172.80,9.60,5.66,0.00,1.00,163.20,14.40,0 --177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0 --177.60,0.00,5.62,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0 -163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0 -158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0 -148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0 -144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0 -139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0 -134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0 -129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0 -120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0 -110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0 -100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0 -91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0 -81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0 -72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0 -62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0 -52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0 -48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0 -43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0 -38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0 -33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0 -28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0 -24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0 -19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0 -19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0 -9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0 -4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0 -0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,4.79,0.00,1.00,0.00,0.00,0 --4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0 --9.60,14.40,4.74,0.00,1.00,9.60,9.60,0 --9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0 --14.40,19.20,4.70,0.00,1.00,19.20,14.40,0 --14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0 --19.20,28.80,4.66,0.00,1.00,28.80,24.00,0 --24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0 --28.80,33.60,4.61,0.00,1.00,38.40,28.80,0 --28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0 --33.60,43.20,4.57,0.00,1.00,48.00,38.40,0 --38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0 --48.00,48.00,4.53,0.00,1.00,57.60,43.20,0 --52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0 --57.60,52.80,4.49,0.00,1.00,67.20,48.00,0 --67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0 --76.80,57.60,4.44,0.00,1.00,76.80,52.80,0 --81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0 --91.20,57.60,4.40,0.00,1.00,86.40,57.60,0 --100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0 --110.40,57.60,4.36,0.00,1.00,96.00,57.60,0 --115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0 --124.80,52.80,4.32,0.00,1.00,105.60,52.80,0 --129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0 --139.20,48.00,4.27,0.00,1.00,115.20,48.00,0 --144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0 --148.80,38.40,4.23,0.00,1.00,124.80,43.20,0 --153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0 --153.60,33.60,4.19,0.00,1.00,134.40,38.40,0 --158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0 --163.20,24.00,4.14,0.00,1.00,144.00,28.80,0 --163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0 --168.00,19.20,4.10,0.00,1.00,153.60,24.00,0 --172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0 --172.80,9.60,4.06,0.00,1.00,163.20,14.40,0 --177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0 --177.60,0.00,4.02,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0 -163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0 -163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0 -158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0 -148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0 -144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0 -139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0 -129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0 -124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0 -115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0 -110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0 -100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0 -91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0 -81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0 -76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0 -67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0 -57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0 -52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0 -48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0 -38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0 -33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0 -28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0 -28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0 -24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0 -19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0 -14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0 -14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0 -9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0 -0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.18,0.00,1.00,0.00,0.00,0 --4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0 --9.60,9.60,3.14,0.00,1.00,9.60,9.60,0 --9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0 --14.40,19.20,3.10,0.00,1.00,19.20,14.40,0 --19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0 --24.00,24.00,3.05,0.00,1.00,28.80,24.00,0 --24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0 --28.80,33.60,3.01,0.00,1.00,38.40,28.80,0 --33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0 --38.40,38.40,2.97,0.00,1.00,48.00,33.60,0 --43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0 --48.00,43.20,2.93,0.00,1.00,57.60,43.20,0 --52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0 --62.40,48.00,2.88,0.00,1.00,67.20,48.00,0 --67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0 --76.80,52.80,2.84,0.00,1.00,76.80,48.00,0 --86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0 --91.20,52.80,2.80,0.00,1.00,86.40,52.80,0 --100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0 --105.60,52.80,2.76,0.00,1.00,96.00,52.80,0 --115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0 --120.00,48.00,2.71,0.00,1.00,105.60,48.00,0 --129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0 --134.40,43.20,2.67,0.00,1.00,115.20,43.20,0 --139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0 --144.00,38.40,2.63,0.00,1.00,124.80,38.40,0 --148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0 --153.60,33.60,2.58,0.00,1.00,134.40,33.60,0 --158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0 --158.40,24.00,2.54,0.00,1.00,144.00,28.80,0 --163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0 --168.00,19.20,2.50,0.00,1.00,153.60,19.20,0 --168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.46,0.00,1.00,163.20,14.40,0 --177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.41,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0 -158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0 -148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0 -144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0 -139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0 -134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0 -129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0 -120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0 -115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0 -105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0 -100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0 -91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0 -86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0 -76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0 -67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0 -62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0 -52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0 -48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0 -43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0 -38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0 -33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0 -28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0 -24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0 -24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0 -19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0 -0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.58,0.00,1.00,0.00,0.00,0 --4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.54,0.00,1.00,9.60,4.80,0 --14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0 --14.40,19.20,1.50,0.00,1.00,19.20,14.40,0 --19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0 --24.00,24.00,1.45,0.00,1.00,28.80,19.20,0 --28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0 --33.60,28.80,1.41,0.00,1.00,38.40,28.80,0 --38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0 --43.20,38.40,1.37,0.00,1.00,48.00,33.60,0 --48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0 --52.80,43.20,1.32,0.00,1.00,57.60,38.40,0 --57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0 --62.40,43.20,1.28,0.00,1.00,67.20,43.20,0 --72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0 --76.80,48.00,1.24,0.00,1.00,76.80,43.20,0 --86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0 --91.20,48.00,1.20,0.00,1.00,86.40,48.00,0 --100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0 --105.60,48.00,1.15,0.00,1.00,96.00,48.00,0 --110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0 --120.00,43.20,1.11,0.00,1.00,105.60,43.20,0 --124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0 --129.60,38.40,1.07,0.00,1.00,115.20,43.20,0 --134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0 --139.20,33.60,1.03,0.00,1.00,124.80,38.40,0 --144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0 --148.80,28.80,0.98,0.00,1.00,134.40,33.60,0 --153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0 --158.40,24.00,0.94,0.00,1.00,144.00,24.00,0 --163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0 --163.20,14.40,0.90,0.00,1.00,153.60,19.20,0 --168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.85,0.00,1.00,163.20,14.40,0 --172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.81,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0 -148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0 -144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0 -139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0 -134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0 -129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0 -124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0 -120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0 -110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0 -105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0 -100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0 -91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0 -86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0 -76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0 -72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0 -62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0 -57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0 -52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0 -48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0 -43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0 -38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0 -28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0 -19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0 -0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,0.00,0.00,1.00,0.00,0.00,0 --4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0 --9.60,9.60,0.04,0.00,1.00,9.60,4.80,0 --14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0 --19.20,14.40,0.09,0.00,1.00,19.20,14.40,0 --24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0 --24.00,24.00,0.13,0.00,1.00,28.80,19.20,0 --28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0 --33.60,28.80,0.17,0.00,1.00,38.40,24.00,0 --38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0 --43.20,33.60,0.21,0.00,1.00,48.00,28.80,0 --48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0 --52.80,38.40,0.26,0.00,1.00,57.60,33.60,0 --62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0 --67.20,38.40,0.30,0.00,1.00,67.20,38.40,0 --72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0 --76.80,43.20,0.34,0.00,1.00,76.80,38.40,0 --86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0 --91.20,43.20,0.38,0.00,1.00,86.40,43.20,0 --96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0 --105.60,43.20,0.43,0.00,1.00,96.00,43.20,0 --110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0 --115.20,38.40,0.47,0.00,1.00,105.60,38.40,0 --124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0 --129.60,38.40,0.51,0.00,1.00,115.20,38.40,0 --134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0 --139.20,33.60,0.56,0.00,1.00,124.80,33.60,0 --144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0 --148.80,28.80,0.60,0.00,1.00,134.40,28.80,0 --153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0 --158.40,19.20,0.64,0.00,1.00,144.00,24.00,0 --158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0 --163.20,14.40,0.68,0.00,1.00,153.60,19.20,0 --168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.73,0.00,1.00,163.20,9.60,0 --172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.77,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0 -158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0 -158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0 -148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0 -144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0 -139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0 -134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0 -129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0 -124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0 -115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0 -110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0 -105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0 -96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0 -91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0 -86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0 -76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0 -72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0 -67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0 -62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0 -52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0 -48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0 -43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0 -38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0 -28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0 -19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0 -0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.60,0.00,1.00,0.00,0.00,0 --9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.64,0.00,1.00,9.60,4.80,0 --14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0 --19.20,14.40,1.69,0.00,1.00,19.20,9.60,0 --24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0 --28.80,19.20,1.73,0.00,1.00,28.80,19.20,0 --33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0 --38.40,24.00,1.77,0.00,1.00,38.40,24.00,0 --43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0 --48.00,28.80,1.82,0.00,1.00,48.00,28.80,0 --52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0 --57.60,33.60,1.86,0.00,1.00,57.60,28.80,0 --62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0 --67.20,38.40,1.90,0.00,1.00,67.20,33.60,0 --72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0 --81.60,38.40,1.94,0.00,1.00,76.80,38.40,0 --86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0 --91.20,38.40,1.99,0.00,1.00,86.40,38.40,0 --96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0 --105.60,38.40,2.03,0.00,1.00,96.00,38.40,0 --110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0 --115.20,33.60,2.07,0.00,1.00,105.60,33.60,0 --120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0 --124.80,33.60,2.11,0.00,1.00,115.20,33.60,0 --129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0 --134.40,28.80,2.16,0.00,1.00,124.80,28.80,0 --139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0 --144.00,24.00,2.20,0.00,1.00,134.40,24.00,0 --148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0 --153.60,19.20,2.24,0.00,1.00,144.00,19.20,0 --158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0 --163.20,14.40,2.29,0.00,1.00,153.60,14.40,0 --168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.33,0.00,1.00,163.20,9.60,0 --172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.37,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0 -153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0 -144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0 -134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0 -124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0 -120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0 -115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0 -110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0 -105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0 -96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0 -91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0 -86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0 -81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0 -72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0 -67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0 -62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0 -57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0 -52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0 -48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0 -43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0 -38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0 -33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0 -28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0 -14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.20,0.00,1.00,0.00,0.00,0 --9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0 --14.40,9.60,3.25,0.00,1.00,9.60,4.80,0 --14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0 --19.20,14.40,3.29,0.00,1.00,19.20,9.60,0 --24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0 --28.80,19.20,3.33,0.00,1.00,28.80,14.40,0 --33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0 --38.40,24.00,3.38,0.00,1.00,38.40,19.20,0 --43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0 --48.00,24.00,3.42,0.00,1.00,48.00,24.00,0 --52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0 --57.60,28.80,3.46,0.00,1.00,57.60,28.80,0 --62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0 --67.20,33.60,3.50,0.00,1.00,67.20,28.80,0 --72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0 --81.60,33.60,3.55,0.00,1.00,76.80,33.60,0 --86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0 --91.20,33.60,3.59,0.00,1.00,86.40,33.60,0 --96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0 --100.80,33.60,3.63,0.00,1.00,96.00,33.60,0 --110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0 --115.20,33.60,3.67,0.00,1.00,105.60,28.80,0 --120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0 --124.80,28.80,3.72,0.00,1.00,115.20,28.80,0 --129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0 --134.40,24.00,3.76,0.00,1.00,124.80,24.00,0 --139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0 --144.00,19.20,3.80,0.00,1.00,134.40,24.00,0 --148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0 --153.60,14.40,3.85,0.00,1.00,144.00,19.20,0 --158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0 --163.20,9.60,3.89,0.00,1.00,153.60,14.40,0 --168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0 --168.00,4.80,3.93,0.00,1.00,163.20,9.60,0 --172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0 --177.60,0.00,3.97,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0 -124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0 -120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0 -115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0 -110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0 -100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0 -96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0 -91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0 -86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0 -81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0 -72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0 -67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0 -62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0 -57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0 -52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0 -48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0 -43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0 -38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0 -33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0 -28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0 -24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0 -14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0 -14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0 --4.80,0.00,4.81,0.00,1.00,0.00,0.00,0 --9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0 --14.40,4.80,4.85,0.00,1.00,9.60,4.80,0 --19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0 --19.20,9.60,4.89,0.00,1.00,19.20,9.60,0 --24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0 --28.80,14.40,4.93,0.00,1.00,28.80,14.40,0 --33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0 --38.40,19.20,4.98,0.00,1.00,38.40,14.40,0 --43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0 --48.00,24.00,5.02,0.00,1.00,48.00,19.20,0 --52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0 --57.60,24.00,5.06,0.00,1.00,57.60,24.00,0 --62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0 --72.00,28.80,5.11,0.00,1.00,67.20,24.00,0 --76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0 --81.60,28.80,5.15,0.00,1.00,76.80,28.80,0 --86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0 --91.20,28.80,5.19,0.00,1.00,86.40,28.80,0 --96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0 --100.80,28.80,5.23,0.00,1.00,96.00,28.80,0 --105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0 --115.20,28.80,5.28,0.00,1.00,105.60,28.80,0 --120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0 --124.80,24.00,5.32,0.00,1.00,115.20,24.00,0 --129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0 --134.40,24.00,5.36,0.00,1.00,124.80,24.00,0 --139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0 --144.00,19.20,5.40,0.00,1.00,134.40,19.20,0 --148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0 --153.60,14.40,5.45,0.00,1.00,144.00,14.40,0 --158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0 --163.20,9.60,5.49,0.00,1.00,153.60,9.60,0 --163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0 --168.00,4.80,5.53,0.00,1.00,163.20,9.60,0 --172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0 --177.60,0.00,5.58,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0 -163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0 -129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0 -124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0 -120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0 -115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0 -105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0 -100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0 -96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0 -91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0 -86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0 -81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0 -76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0 -72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0 -62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0 -57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0 -52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0 -48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0 -43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0 -38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0 -33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0 -28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0 -24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0 -19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0 -19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0 -0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,6.41,0.00,1.00,0.00,0.00,0 --9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0 --14.40,4.80,6.45,0.00,1.00,9.60,4.80,0 --19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0 --24.00,9.60,6.49,0.00,1.00,19.20,9.60,0 --28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0 --33.60,14.40,6.54,0.00,1.00,28.80,9.60,0 --33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0 --38.40,14.40,6.58,0.00,1.00,38.40,14.40,0 --43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0 --48.00,19.20,6.62,0.00,1.00,48.00,14.40,0 --57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0 --62.40,19.20,6.66,0.00,1.00,57.60,19.20,0 --67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0 --72.00,24.00,6.71,0.00,1.00,67.20,19.20,0 --76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0 --81.60,24.00,6.75,0.00,1.00,76.80,24.00,0 --86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0 --91.20,24.00,6.79,0.00,1.00,86.40,24.00,0 --96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0 --100.80,24.00,6.84,0.00,1.00,96.00,24.00,0 --105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0 --110.40,24.00,6.88,0.00,1.00,105.60,24.00,0 --115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0 --120.00,19.20,6.92,0.00,1.00,115.20,19.20,0 --129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0 --134.40,19.20,6.96,0.00,1.00,124.80,19.20,0 --139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0 --144.00,14.40,7.01,0.00,1.00,134.40,14.40,0 --148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0 --148.80,14.40,7.05,0.00,1.00,144.00,14.40,0 --153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0 --158.40,9.60,7.09,0.00,1.00,153.60,9.60,0 --163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0 --168.00,4.80,7.13,0.00,1.00,163.20,4.80,0 --172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0 --177.60,0.00,7.18,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0 -163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0 -158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0 -148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0 -144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0 -134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0 -129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0 -120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0 -115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0 -110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0 -105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0 -100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0 -96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0 -91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0 -86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0 -81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0 -76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0 -72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0 -67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0 -62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0 -57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0 -48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0 -43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0 -38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0 -33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0 -33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0 -28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0 -24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0 -19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0 -0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,8.01,0.00,1.00,0.00,0.00,0 --9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0 --14.40,4.80,8.05,0.00,1.00,9.60,4.80,0 --19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0 --24.00,9.60,8.10,0.00,1.00,19.20,4.80,0 --28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0 --33.60,9.60,8.14,0.00,1.00,24.00,9.60,0 --38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0 --43.20,14.40,8.18,0.00,1.00,33.60,9.60,0 --48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0 --52.80,14.40,8.22,0.00,1.00,43.20,14.40,0 --57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0 --62.40,19.20,8.27,0.00,1.00,52.80,14.40,0 --67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0 --72.00,19.20,8.31,0.00,1.00,62.40,14.40,0 --76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0 --81.60,19.20,8.35,0.00,1.00,76.80,19.20,0 --86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0 --91.20,19.20,8.40,0.00,1.00,86.40,19.20,0 --96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0 --100.80,19.20,8.44,0.00,1.00,96.00,19.20,0 --105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0 --110.40,19.20,8.48,0.00,1.00,105.60,19.20,0 --115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0 --120.00,14.40,8.52,0.00,1.00,120.00,14.40,0 --124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0 --129.60,14.40,8.57,0.00,1.00,129.60,14.40,0 --134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0 --139.20,14.40,8.61,0.00,1.00,139.20,14.40,0 --144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0 --148.80,9.60,8.65,0.00,1.00,148.80,9.60,0 --153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0 --158.40,4.80,8.69,0.00,1.00,158.40,9.60,0 --163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0 --168.00,4.80,8.74,0.00,1.00,163.20,4.80,0 --172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0 -148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0 -144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0 -139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0 -134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0 -129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0 -124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0 -120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0 -115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0 -110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0 -105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0 -100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0 -96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0 -91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0 -86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0 -81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0 -76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0 -72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0 -67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0 -62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0 -52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0 -48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0 -43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0 -38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0 -33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0 -28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0 -24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0 -19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0 -9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0 -0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,9.61,0.00,1.00,0.00,0.00,0 --9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0 --14.40,4.80,9.66,0.00,1.00,9.60,0.00,0 --19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0 --24.00,4.80,9.70,0.00,1.00,14.40,4.80,0 --28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0 --33.60,9.60,9.74,0.00,1.00,24.00,4.80,0 --38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0 --43.20,9.60,9.78,0.00,1.00,33.60,9.60,0 --48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0 --52.80,9.60,9.83,0.00,1.00,43.20,9.60,0 --57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0 --62.40,14.40,9.87,0.00,1.00,52.80,9.60,0 --67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0 --72.00,14.40,9.91,0.00,1.00,62.40,14.40,0 --76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0 --81.60,14.40,9.95,0.00,1.00,76.80,14.40,0 --86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0 --91.20,14.40,10.00,0.00,1.00,86.40,14.40,0 --96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0 --100.80,14.40,10.04,0.00,1.00,96.00,14.40,0 --105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0 --110.40,14.40,10.08,0.00,1.00,110.40,14.40,0 --115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0 --120.00,14.40,10.13,0.00,1.00,120.00,9.60,0 --124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0 --129.60,9.60,10.17,0.00,1.00,129.60,9.60,0 --134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0 --139.20,9.60,10.21,0.00,1.00,139.20,9.60,0 --144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0 --148.80,9.60,10.25,0.00,1.00,148.80,9.60,0 --153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0 --158.40,4.80,10.30,0.00,1.00,158.40,4.80,0 --163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0 --168.00,4.80,10.34,0.00,1.00,168.00,4.80,0 --172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0 -148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0 -144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0 -139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0 -134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0 -129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0 -124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0 -120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0 -115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0 -110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0 -105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0 -100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0 -96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0 -91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0 -86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0 -81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0 -76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0 -72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0 -67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0 -62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0 -48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0 -43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0 -38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0 -33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0 -28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0 -24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0 -19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0 -14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,11.21,0.00,1.00,0.00,0.00,0 --9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0 --14.40,0.00,11.26,0.00,1.00,9.60,0.00,0 --19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0 --24.00,4.80,11.30,0.00,1.00,14.40,4.80,0 --28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0 --33.60,4.80,11.34,0.00,1.00,24.00,4.80,0 --38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0 --43.20,4.80,11.39,0.00,1.00,33.60,4.80,0 --48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0 --52.80,9.60,11.43,0.00,1.00,43.20,4.80,0 --57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0 --62.40,9.60,11.47,0.00,1.00,52.80,4.80,0 --67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0 --72.00,9.60,11.51,0.00,1.00,62.40,9.60,0 --76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0 --81.60,9.60,11.56,0.00,1.00,72.00,9.60,0 --86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0 --91.20,9.60,11.60,0.00,1.00,86.40,9.60,0 --96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0 --100.80,9.60,11.64,0.00,1.00,96.00,9.60,0 --105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0 --110.40,9.60,11.68,0.00,1.00,110.40,9.60,0 --115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0 --120.00,9.60,11.73,0.00,1.00,120.00,9.60,0 --124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0 --129.60,9.60,11.77,0.00,1.00,129.60,4.80,0 --134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0 --139.20,4.80,11.81,0.00,1.00,139.20,4.80,0 --144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0 --148.80,4.80,11.86,0.00,1.00,148.80,4.80,0 --153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0 --158.40,4.80,11.90,0.00,1.00,158.40,4.80,0 --163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0 --168.00,0.00,11.94,0.00,1.00,168.00,4.80,0 --172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0 -158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0 -148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0 -144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0 -139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0 -134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0 -129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0 -124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0 -120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0 -115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0 -110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0 -105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0 -100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0 -96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0 -91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0 -86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0 -81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0 -76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0 -72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0 -67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0 -62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0 -57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0 -43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0 -33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0 -28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0 -24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0 -19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,12.82,0.00,1.00,0.00,0.00,0 --9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0 --14.40,0.00,12.86,0.00,1.00,9.60,0.00,0 --19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0 --24.00,0.00,12.90,0.00,1.00,14.40,0.00,0 --28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0 --33.60,4.80,12.95,0.00,1.00,24.00,0.00,0 --38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0 --43.20,4.80,12.99,0.00,1.00,28.80,0.00,0 --48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0 --52.80,4.80,13.03,0.00,1.00,38.40,4.80,0 --57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0 --62.40,4.80,13.07,0.00,1.00,48.00,4.80,0 --67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0 --72.00,4.80,13.12,0.00,1.00,62.40,4.80,0 --76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0 --81.60,4.80,13.16,0.00,1.00,72.00,4.80,0 --86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0 --91.20,4.80,13.20,0.00,1.00,86.40,4.80,0 --96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0 --100.80,4.80,13.24,0.00,1.00,96.00,4.80,0 --105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0 --110.40,4.80,13.29,0.00,1.00,110.40,4.80,0 --115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0 --120.00,4.80,13.33,0.00,1.00,120.00,4.80,0 --124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0 --129.60,4.80,13.37,0.00,1.00,134.40,4.80,0 --134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0 --139.20,4.80,13.42,0.00,1.00,144.00,4.80,0 --144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0 --148.80,4.80,13.46,0.00,1.00,153.60,0.00,0 --153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0 --158.40,0.00,13.50,0.00,1.00,158.40,0.00,0 --163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0 --168.00,0.00,13.54,0.00,1.00,168.00,0.00,0 --172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0 -163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0 -158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0 -153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0 -148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0 -144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0 -139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0 -134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0 -129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0 -124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0 -120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0 -115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0 -110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0 -105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0 -100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0 -96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0 -91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0 -86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0 -81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0 -76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0 -72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0 -67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0 -57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0 -52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0 -43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0 -33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0 -28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0 -24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0 -19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0 -14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0 -9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,14.42,0.00,1.00,0.00,0.00,0 --9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0 --14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0 --19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0 --24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0 --28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0 --33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0 --38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0 --43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0 --48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0 --52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0 --57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0 --62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0 --67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0 --72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0 --76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0 --81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0 --86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0 --91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0 --96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0 --100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0 --105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0 --110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0 --115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0 --120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0 --124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0 --129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0 --134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0 --139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0 --144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0 --148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0 --153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0 --158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0 --163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0 --168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0 --172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0 -177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0 -172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0 -168.00,0.00,15.25,0.00,1.00,4.80,0.00,0 -163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0 -158.40,0.00,15.30,0.00,1.00,9.60,0.00,0 -153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0 -148.80,0.00,15.34,0.00,1.00,19.20,0.00,0 -144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0 -139.20,0.00,15.38,0.00,1.00,28.80,0.00,0 -134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0 -129.60,0.00,15.42,0.00,1.00,33.60,0.00,0 -124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0 -120.00,0.00,15.47,0.00,1.00,43.20,0.00,0 -115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0 -110.40,0.00,15.51,0.00,1.00,57.60,0.00,0 -105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0 -100.80,0.00,15.55,0.00,1.00,67.20,0.00,0 -96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0 -91.20,0.00,15.59,0.00,1.00,81.60,0.00,0 -86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0 -81.60,0.00,15.64,0.00,1.00,96.00,0.00,0 -76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0 -72.00,0.00,15.68,0.00,1.00,110.40,0.00,0 -67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0 -62.40,0.00,15.72,0.00,1.00,120.00,0.00,0 -57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0 -52.80,0.00,15.77,0.00,1.00,134.40,0.00,0 -48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0 -43.20,0.00,15.81,0.00,1.00,144.00,0.00,0 -38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0 -33.60,0.00,15.85,0.00,1.00,153.60,0.00,0 -28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0 -24.00,0.00,15.89,0.00,1.00,158.40,0.00,0 -19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0 -14.40,0.00,15.94,0.00,1.00,168.00,0.00,0 -9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0 -4.80,0.00,15.98,0.00,1.00,172.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 diff --git a/scripts/testv/stvOMASA_2ISM_2MASA1TC16c.met b/scripts/testv/stvOMASA_2ISM_2MASA1TC16c.met deleted file mode 100644 index 64688774087538a671ebfda830ff11b4f836f438..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_2MASA1TC16c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d125a4c4e3989ac55f9c2617f464431feae4ede9b2e15d087d3271c0a4a56303 -size 319800 diff --git a/scripts/testv/stvOMASA_2ISM_2MASA1TC16c.wav b/scripts/testv/stvOMASA_2ISM_2MASA1TC16c.wav deleted file mode 100644 index 99d998c3270fa7fd7a22f0dcd8261f1cd4f347e7..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_2MASA1TC16c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9ea7dcffa69781e75b89f18c0d22f6c6dd2f1c27fd8b788ac766d55323cc5a92 -size 576080 diff --git a/scripts/testv/stvOMASA_2ISM_2MASA1TC16c_ISM1.csv b/scripts/testv/stvOMASA_2ISM_2MASA1TC16c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_2MASA1TC16c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_2ISM_2MASA1TC16c_ISM2.csv b/scripts/testv/stvOMASA_2ISM_2MASA1TC16c_ISM2.csv deleted file mode 100644 index f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_2MASA1TC16c_ISM2.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,4.80,16.00,0.00,1.00,0.00,0.00,0 -0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0 -0.00,14.40,15.96,0.00,1.00,4.80,9.60,0 -0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0 -0.00,24.00,15.91,0.00,1.00,14.40,19.20,0 -0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0 -0.00,33.60,15.87,0.00,1.00,19.20,28.80,0 -0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0 -0.00,43.20,15.83,0.00,1.00,28.80,38.40,0 -0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0 -0.00,52.80,15.79,0.00,1.00,38.40,48.00,0 -0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0 -0.00,62.40,15.74,0.00,1.00,48.00,57.60,0 -4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0 -4.80,72.00,15.70,0.00,1.00,57.60,67.20,0 -4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0 -9.60,81.60,15.66,0.00,1.00,72.00,76.80,0 -19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0 -134.40,86.40,15.62,0.00,1.00,86.40,86.40,0 -168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0 -172.80,76.80,15.57,0.00,1.00,100.80,86.40,0 -177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0 -177.60,67.20,15.53,0.00,1.00,110.40,76.80,0 -177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0 -177.60,57.60,15.49,0.00,1.00,124.80,67.20,0 -177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0 -177.60,48.00,15.44,0.00,1.00,134.40,57.60,0 -177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0 -177.60,38.40,15.40,0.00,1.00,144.00,48.00,0 -177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0 -177.60,28.80,15.36,0.00,1.00,153.60,38.40,0 -177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0 -177.60,19.20,15.32,0.00,1.00,158.40,28.80,0 -177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0 -177.60,9.60,15.27,0.00,1.00,168.00,19.20,0 -177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0 -177.60,0.00,15.23,0.00,1.00,172.80,9.60,0 --177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0 --177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0 --177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0 --177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0 --177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0 --177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0 --177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0 --177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0 --177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0 --177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0 --177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0 --177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0 --177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0 --177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0 --177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0 --177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0 --172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0 --168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0 --134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0 --19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0 --9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0 --4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0 --4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0 --4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0 --0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0 --0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0 --0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0 --0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0 --0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0 --0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0 --0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0 --0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0 --0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0 --0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0 --0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0 --0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0 --0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0 --0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,14.40,0.00,1.00,0.00,0.00,0 --0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0 --0.00,14.40,14.36,0.00,1.00,9.60,9.60,0 --0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0 --0.00,24.00,14.31,0.00,1.00,14.40,19.20,0 --0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0 --0.00,33.60,14.27,0.00,1.00,24.00,28.80,0 --4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0 --4.80,43.20,14.23,0.00,1.00,28.80,38.40,0 --4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0 --4.80,52.80,14.18,0.00,1.00,38.40,48.00,0 --4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0 --4.80,62.40,14.14,0.00,1.00,48.00,57.60,0 --9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0 --9.60,72.00,14.10,0.00,1.00,62.40,67.20,0 --14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0 --24.00,81.60,14.06,0.00,1.00,72.00,76.80,0 --43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0 --110.40,86.40,14.01,0.00,1.00,86.40,86.40,0 --148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0 --163.20,76.80,13.97,0.00,1.00,96.00,81.60,0 --168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0 --172.80,67.20,13.93,0.00,1.00,110.40,72.00,0 --172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0 --172.80,57.60,13.89,0.00,1.00,120.00,62.40,0 --172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0 --177.60,48.00,13.84,0.00,1.00,134.40,52.80,0 --177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0 --177.60,38.40,13.80,0.00,1.00,144.00,43.20,0 --177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0 --177.60,28.80,13.76,0.00,1.00,148.80,33.60,0 --177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0 --177.60,19.20,13.71,0.00,1.00,158.40,24.00,0 --177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0 --177.60,9.60,13.67,0.00,1.00,168.00,14.40,0 --177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0 --177.60,0.00,13.63,0.00,1.00,172.80,4.80,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0 -177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0 -177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0 -177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0 -177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0 -177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0 -177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0 -172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0 -172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0 -172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0 -172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0 -168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0 -163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0 -148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0 -110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0 -43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0 -24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0 -14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0 -9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0 -9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0 -4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0 -4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0 -4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0 -4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0 -4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0 -0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0 -0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0 -0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0 -0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0 -0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,12.80,0.00,1.00,0.00,0.00,0 --0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0 --0.00,14.40,12.75,0.00,1.00,9.60,9.60,0 --4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0 --4.80,24.00,12.71,0.00,1.00,14.40,19.20,0 --4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0 --4.80,33.60,12.67,0.00,1.00,24.00,28.80,0 --4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0 --9.60,43.20,12.62,0.00,1.00,33.60,38.40,0 --9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0 --9.60,52.80,12.58,0.00,1.00,43.20,48.00,0 --14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0 --14.40,62.40,12.54,0.00,1.00,52.80,57.60,0 --19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0 --24.00,72.00,12.50,0.00,1.00,62.40,67.20,0 --33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0 --43.20,76.80,12.45,0.00,1.00,72.00,72.00,0 --67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0 --96.00,81.60,12.41,0.00,1.00,86.40,81.60,0 --124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0 --144.00,76.80,12.37,0.00,1.00,96.00,76.80,0 --153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0 --158.40,67.20,12.33,0.00,1.00,110.40,72.00,0 --163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0 --168.00,57.60,12.28,0.00,1.00,120.00,62.40,0 --168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0 --168.00,48.00,12.24,0.00,1.00,129.60,52.80,0 --172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0 --172.80,38.40,12.20,0.00,1.00,139.20,43.20,0 --172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0 --172.80,28.80,12.15,0.00,1.00,148.80,33.60,0 --177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0 --177.60,19.20,12.11,0.00,1.00,158.40,24.00,0 --177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0 --177.60,9.60,12.07,0.00,1.00,168.00,14.40,0 --177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0 --177.60,0.00,12.03,0.00,1.00,172.80,4.80,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0 -177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0 -172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0 -172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0 -168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0 -168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0 -168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0 -163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0 -158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0 -153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0 -144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0 -124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0 -96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0 -67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0 -43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0 -33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0 -24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0 -19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0 -14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0 -14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0 -9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0 -9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0 -9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0 -4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0 -4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0 -0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,11.19,0.00,1.00,0.00,0.00,0 --0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0 --4.80,14.40,11.15,0.00,1.00,9.60,9.60,0 --4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0 --4.80,24.00,11.11,0.00,1.00,14.40,19.20,0 --4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0 --9.60,33.60,11.07,0.00,1.00,24.00,28.80,0 --9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0 --14.40,43.20,11.02,0.00,1.00,33.60,38.40,0 --14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0 --14.40,52.80,10.98,0.00,1.00,43.20,48.00,0 --19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0 --24.00,57.60,10.94,0.00,1.00,52.80,52.80,0 --28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0 --33.60,67.20,10.89,0.00,1.00,62.40,62.40,0 --43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0 --57.60,72.00,10.85,0.00,1.00,76.80,72.00,0 --76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0 --96.00,76.80,10.81,0.00,1.00,86.40,76.80,0 --115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0 --129.60,72.00,10.77,0.00,1.00,96.00,76.80,0 --139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0 --148.80,67.20,10.72,0.00,1.00,105.60,67.20,0 --153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0 --158.40,57.60,10.68,0.00,1.00,120.00,62.40,0 --163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0 --163.20,48.00,10.64,0.00,1.00,129.60,52.80,0 --168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0 --168.00,38.40,10.60,0.00,1.00,139.20,43.20,0 --172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0 --172.80,28.80,10.55,0.00,1.00,148.80,33.60,0 --172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0 --172.80,19.20,10.51,0.00,1.00,158.40,24.00,0 --177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0 --177.60,9.60,10.47,0.00,1.00,163.20,14.40,0 --177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0 --177.60,0.00,10.42,0.00,1.00,172.80,4.80,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0 -168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0 -168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0 -163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0 -163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0 -158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0 -153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0 -148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0 -139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0 -129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0 -115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0 -96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0 -76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0 -57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0 -43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0 -33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0 -28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0 -24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0 -19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0 -14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0 -14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0 -14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0 -9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0 -9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0 -4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0 -4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0 -0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,9.59,0.00,1.00,0.00,0.00,0 --4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0 --4.80,14.40,9.55,0.00,1.00,9.60,9.60,0 --4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0 --9.60,24.00,9.51,0.00,1.00,19.20,19.20,0 --9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0 --9.60,33.60,9.46,0.00,1.00,24.00,28.80,0 --14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0 --14.40,38.40,9.42,0.00,1.00,33.60,33.60,0 --19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0 --24.00,48.00,9.38,0.00,1.00,43.20,43.20,0 --24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0 --28.80,57.60,9.34,0.00,1.00,52.80,52.80,0 --38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0 --43.20,62.40,9.29,0.00,1.00,67.20,62.40,0 --52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0 --62.40,72.00,9.25,0.00,1.00,76.80,67.20,0 --76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0 --96.00,72.00,9.21,0.00,1.00,86.40,72.00,0 --110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0 --120.00,67.20,9.16,0.00,1.00,96.00,72.00,0 --134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0 --139.20,62.40,9.12,0.00,1.00,105.60,67.20,0 --148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0 --153.60,57.60,9.08,0.00,1.00,115.20,57.60,0 --158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0 --158.40,48.00,9.04,0.00,1.00,129.60,52.80,0 --163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0 --163.20,38.40,8.99,0.00,1.00,139.20,43.20,0 --168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0 --168.00,28.80,8.95,0.00,1.00,148.80,33.60,0 --172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0 --172.80,19.20,8.91,0.00,1.00,153.60,24.00,0 --172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0 --177.60,9.60,8.87,0.00,1.00,163.20,14.40,0 --177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0 --177.60,0.00,8.82,0.00,1.00,172.80,4.80,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0 -168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0 -163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0 -163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0 -158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0 -158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0 -153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0 -148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0 -139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0 -134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0 -120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0 -110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0 -96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0 -76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0 -62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0 -52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0 -43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0 -38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0 -28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0 -24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0 -24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0 -19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0 -14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0 -14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0 -9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0 -9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0 -9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0 -0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,7.99,0.00,1.00,0.00,0.00,0 --4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0 --4.80,14.40,7.95,0.00,1.00,9.60,9.60,0 --9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0 --9.60,24.00,7.90,0.00,1.00,19.20,19.20,0 --14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0 --14.40,28.80,7.86,0.00,1.00,28.80,24.00,0 --19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0 --19.20,38.40,7.82,0.00,1.00,38.40,33.60,0 --24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0 --28.80,48.00,7.78,0.00,1.00,48.00,43.20,0 --33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0 --38.40,52.80,7.73,0.00,1.00,57.60,52.80,0 --43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0 --48.00,62.40,7.69,0.00,1.00,67.20,57.60,0 --57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0 --67.20,67.20,7.65,0.00,1.00,76.80,62.40,0 --81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0 --91.20,67.20,7.60,0.00,1.00,86.40,67.20,0 --105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0 --115.20,67.20,7.56,0.00,1.00,96.00,67.20,0 --124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0 --134.40,57.60,7.52,0.00,1.00,105.60,62.40,0 --139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0 --144.00,52.80,7.48,0.00,1.00,115.20,57.60,0 --148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0 --153.60,43.20,7.43,0.00,1.00,124.80,48.00,0 --158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0 --163.20,38.40,7.39,0.00,1.00,134.40,38.40,0 --163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0 --168.00,28.80,7.35,0.00,1.00,144.00,33.60,0 --168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0 --172.80,19.20,7.31,0.00,1.00,153.60,24.00,0 --172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0 --177.60,9.60,7.26,0.00,1.00,163.20,14.40,0 --177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0 --177.60,0.00,7.22,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0 -163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0 -158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0 -153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0 -148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0 -144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0 -139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0 -134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0 -124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0 -115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0 -105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0 -91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0 -81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0 -67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0 -57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0 -48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0 -43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0 -38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0 -33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0 -28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0 -24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0 -19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0 -19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0 -14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0 -9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0 -0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,6.39,0.00,1.00,0.00,0.00,0 --4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0 --4.80,14.40,6.34,0.00,1.00,9.60,9.60,0 --9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0 --9.60,19.20,6.30,0.00,1.00,19.20,14.40,0 --14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0 --19.20,28.80,6.26,0.00,1.00,28.80,24.00,0 --19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0 --24.00,38.40,6.22,0.00,1.00,38.40,33.60,0 --28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0 --33.60,43.20,6.17,0.00,1.00,48.00,38.40,0 --38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0 --43.20,52.80,6.13,0.00,1.00,57.60,48.00,0 --48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0 --52.80,57.60,6.09,0.00,1.00,67.20,52.80,0 --62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0 --72.00,62.40,6.05,0.00,1.00,76.80,57.60,0 --81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0 --91.20,62.40,6.00,0.00,1.00,86.40,62.40,0 --100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0 --110.40,62.40,5.96,0.00,1.00,96.00,62.40,0 --120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0 --129.60,57.60,5.92,0.00,1.00,105.60,57.60,0 --134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0 --139.20,48.00,5.87,0.00,1.00,115.20,52.80,0 --144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0 --148.80,43.20,5.83,0.00,1.00,124.80,48.00,0 --153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0 --158.40,33.60,5.79,0.00,1.00,134.40,38.40,0 --163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0 --163.20,28.80,5.75,0.00,1.00,144.00,28.80,0 --168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0 --168.00,19.20,5.70,0.00,1.00,153.60,24.00,0 --172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0 --172.80,9.60,5.66,0.00,1.00,163.20,14.40,0 --177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0 --177.60,0.00,5.62,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0 -163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0 -158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0 -148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0 -144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0 -139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0 -134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0 -129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0 -120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0 -110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0 -100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0 -91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0 -81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0 -72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0 -62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0 -52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0 -48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0 -43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0 -38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0 -33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0 -28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0 -24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0 -19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0 -19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0 -9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0 -4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0 -0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,4.79,0.00,1.00,0.00,0.00,0 --4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0 --9.60,14.40,4.74,0.00,1.00,9.60,9.60,0 --9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0 --14.40,19.20,4.70,0.00,1.00,19.20,14.40,0 --14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0 --19.20,28.80,4.66,0.00,1.00,28.80,24.00,0 --24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0 --28.80,33.60,4.61,0.00,1.00,38.40,28.80,0 --28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0 --33.60,43.20,4.57,0.00,1.00,48.00,38.40,0 --38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0 --48.00,48.00,4.53,0.00,1.00,57.60,43.20,0 --52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0 --57.60,52.80,4.49,0.00,1.00,67.20,48.00,0 --67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0 --76.80,57.60,4.44,0.00,1.00,76.80,52.80,0 --81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0 --91.20,57.60,4.40,0.00,1.00,86.40,57.60,0 --100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0 --110.40,57.60,4.36,0.00,1.00,96.00,57.60,0 --115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0 --124.80,52.80,4.32,0.00,1.00,105.60,52.80,0 --129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0 --139.20,48.00,4.27,0.00,1.00,115.20,48.00,0 --144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0 --148.80,38.40,4.23,0.00,1.00,124.80,43.20,0 --153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0 --153.60,33.60,4.19,0.00,1.00,134.40,38.40,0 --158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0 --163.20,24.00,4.14,0.00,1.00,144.00,28.80,0 --163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0 --168.00,19.20,4.10,0.00,1.00,153.60,24.00,0 --172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0 --172.80,9.60,4.06,0.00,1.00,163.20,14.40,0 --177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0 --177.60,0.00,4.02,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0 -163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0 -163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0 -158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0 -148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0 -144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0 -139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0 -129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0 -124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0 -115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0 -110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0 -100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0 -91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0 -81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0 -76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0 -67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0 -57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0 -52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0 -48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0 -38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0 -33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0 -28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0 -28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0 -24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0 -19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0 -14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0 -14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0 -9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0 -0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.18,0.00,1.00,0.00,0.00,0 --4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0 --9.60,9.60,3.14,0.00,1.00,9.60,9.60,0 --9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0 --14.40,19.20,3.10,0.00,1.00,19.20,14.40,0 --19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0 --24.00,24.00,3.05,0.00,1.00,28.80,24.00,0 --24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0 --28.80,33.60,3.01,0.00,1.00,38.40,28.80,0 --33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0 --38.40,38.40,2.97,0.00,1.00,48.00,33.60,0 --43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0 --48.00,43.20,2.93,0.00,1.00,57.60,43.20,0 --52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0 --62.40,48.00,2.88,0.00,1.00,67.20,48.00,0 --67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0 --76.80,52.80,2.84,0.00,1.00,76.80,48.00,0 --86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0 --91.20,52.80,2.80,0.00,1.00,86.40,52.80,0 --100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0 --105.60,52.80,2.76,0.00,1.00,96.00,52.80,0 --115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0 --120.00,48.00,2.71,0.00,1.00,105.60,48.00,0 --129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0 --134.40,43.20,2.67,0.00,1.00,115.20,43.20,0 --139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0 --144.00,38.40,2.63,0.00,1.00,124.80,38.40,0 --148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0 --153.60,33.60,2.58,0.00,1.00,134.40,33.60,0 --158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0 --158.40,24.00,2.54,0.00,1.00,144.00,28.80,0 --163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0 --168.00,19.20,2.50,0.00,1.00,153.60,19.20,0 --168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.46,0.00,1.00,163.20,14.40,0 --177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.41,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0 -158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0 -148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0 -144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0 -139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0 -134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0 -129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0 -120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0 -115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0 -105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0 -100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0 -91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0 -86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0 -76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0 -67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0 -62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0 -52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0 -48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0 -43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0 -38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0 -33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0 -28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0 -24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0 -24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0 -19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0 -0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.58,0.00,1.00,0.00,0.00,0 --4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.54,0.00,1.00,9.60,4.80,0 --14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0 --14.40,19.20,1.50,0.00,1.00,19.20,14.40,0 --19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0 --24.00,24.00,1.45,0.00,1.00,28.80,19.20,0 --28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0 --33.60,28.80,1.41,0.00,1.00,38.40,28.80,0 --38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0 --43.20,38.40,1.37,0.00,1.00,48.00,33.60,0 --48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0 --52.80,43.20,1.32,0.00,1.00,57.60,38.40,0 --57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0 --62.40,43.20,1.28,0.00,1.00,67.20,43.20,0 --72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0 --76.80,48.00,1.24,0.00,1.00,76.80,43.20,0 --86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0 --91.20,48.00,1.20,0.00,1.00,86.40,48.00,0 --100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0 --105.60,48.00,1.15,0.00,1.00,96.00,48.00,0 --110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0 --120.00,43.20,1.11,0.00,1.00,105.60,43.20,0 --124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0 --129.60,38.40,1.07,0.00,1.00,115.20,43.20,0 --134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0 --139.20,33.60,1.03,0.00,1.00,124.80,38.40,0 --144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0 --148.80,28.80,0.98,0.00,1.00,134.40,33.60,0 --153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0 --158.40,24.00,0.94,0.00,1.00,144.00,24.00,0 --163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0 --163.20,14.40,0.90,0.00,1.00,153.60,19.20,0 --168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.85,0.00,1.00,163.20,14.40,0 --172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.81,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0 -148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0 -144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0 -139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0 -134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0 -129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0 -124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0 -120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0 -110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0 -105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0 -100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0 -91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0 -86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0 -76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0 -72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0 -62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0 -57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0 -52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0 -48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0 -43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0 -38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0 -28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0 -19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0 -0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,0.00,0.00,1.00,0.00,0.00,0 --4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0 --9.60,9.60,0.04,0.00,1.00,9.60,4.80,0 --14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0 --19.20,14.40,0.09,0.00,1.00,19.20,14.40,0 --24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0 --24.00,24.00,0.13,0.00,1.00,28.80,19.20,0 --28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0 --33.60,28.80,0.17,0.00,1.00,38.40,24.00,0 --38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0 --43.20,33.60,0.21,0.00,1.00,48.00,28.80,0 --48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0 --52.80,38.40,0.26,0.00,1.00,57.60,33.60,0 --62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0 --67.20,38.40,0.30,0.00,1.00,67.20,38.40,0 --72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0 --76.80,43.20,0.34,0.00,1.00,76.80,38.40,0 --86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0 --91.20,43.20,0.38,0.00,1.00,86.40,43.20,0 --96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0 --105.60,43.20,0.43,0.00,1.00,96.00,43.20,0 --110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0 --115.20,38.40,0.47,0.00,1.00,105.60,38.40,0 --124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0 --129.60,38.40,0.51,0.00,1.00,115.20,38.40,0 --134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0 --139.20,33.60,0.56,0.00,1.00,124.80,33.60,0 --144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0 --148.80,28.80,0.60,0.00,1.00,134.40,28.80,0 --153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0 --158.40,19.20,0.64,0.00,1.00,144.00,24.00,0 --158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0 --163.20,14.40,0.68,0.00,1.00,153.60,19.20,0 --168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.73,0.00,1.00,163.20,9.60,0 --172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.77,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0 -158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0 -158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0 -148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0 -144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0 -139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0 -134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0 -129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0 -124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0 -115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0 -110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0 -105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0 -96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0 -91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0 -86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0 -76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0 -72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0 -67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0 -62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0 -52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0 -48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0 -43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0 -38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0 -28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0 -19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0 -0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.60,0.00,1.00,0.00,0.00,0 --9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.64,0.00,1.00,9.60,4.80,0 --14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0 --19.20,14.40,1.69,0.00,1.00,19.20,9.60,0 --24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0 --28.80,19.20,1.73,0.00,1.00,28.80,19.20,0 --33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0 --38.40,24.00,1.77,0.00,1.00,38.40,24.00,0 --43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0 --48.00,28.80,1.82,0.00,1.00,48.00,28.80,0 --52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0 --57.60,33.60,1.86,0.00,1.00,57.60,28.80,0 --62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0 --67.20,38.40,1.90,0.00,1.00,67.20,33.60,0 --72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0 --81.60,38.40,1.94,0.00,1.00,76.80,38.40,0 --86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0 --91.20,38.40,1.99,0.00,1.00,86.40,38.40,0 --96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0 --105.60,38.40,2.03,0.00,1.00,96.00,38.40,0 --110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0 --115.20,33.60,2.07,0.00,1.00,105.60,33.60,0 --120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0 --124.80,33.60,2.11,0.00,1.00,115.20,33.60,0 --129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0 --134.40,28.80,2.16,0.00,1.00,124.80,28.80,0 --139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0 --144.00,24.00,2.20,0.00,1.00,134.40,24.00,0 --148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0 --153.60,19.20,2.24,0.00,1.00,144.00,19.20,0 --158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0 --163.20,14.40,2.29,0.00,1.00,153.60,14.40,0 --168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.33,0.00,1.00,163.20,9.60,0 --172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.37,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0 -153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0 -144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0 -134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0 -124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0 -120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0 -115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0 -110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0 -105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0 -96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0 -91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0 -86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0 -81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0 -72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0 -67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0 -62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0 -57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0 -52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0 -48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0 -43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0 -38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0 -33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0 -28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0 -14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.20,0.00,1.00,0.00,0.00,0 --9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0 --14.40,9.60,3.25,0.00,1.00,9.60,4.80,0 --14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0 --19.20,14.40,3.29,0.00,1.00,19.20,9.60,0 --24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0 --28.80,19.20,3.33,0.00,1.00,28.80,14.40,0 --33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0 --38.40,24.00,3.38,0.00,1.00,38.40,19.20,0 --43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0 --48.00,24.00,3.42,0.00,1.00,48.00,24.00,0 --52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0 --57.60,28.80,3.46,0.00,1.00,57.60,28.80,0 --62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0 --67.20,33.60,3.50,0.00,1.00,67.20,28.80,0 --72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0 --81.60,33.60,3.55,0.00,1.00,76.80,33.60,0 --86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0 --91.20,33.60,3.59,0.00,1.00,86.40,33.60,0 --96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0 --100.80,33.60,3.63,0.00,1.00,96.00,33.60,0 --110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0 --115.20,33.60,3.67,0.00,1.00,105.60,28.80,0 --120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0 --124.80,28.80,3.72,0.00,1.00,115.20,28.80,0 --129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0 --134.40,24.00,3.76,0.00,1.00,124.80,24.00,0 --139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0 --144.00,19.20,3.80,0.00,1.00,134.40,24.00,0 --148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0 --153.60,14.40,3.85,0.00,1.00,144.00,19.20,0 --158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0 --163.20,9.60,3.89,0.00,1.00,153.60,14.40,0 --168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0 --168.00,4.80,3.93,0.00,1.00,163.20,9.60,0 --172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0 --177.60,0.00,3.97,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0 -124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0 -120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0 -115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0 -110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0 -100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0 -96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0 -91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0 -86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0 -81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0 -72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0 -67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0 -62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0 -57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0 -52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0 -48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0 -43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0 -38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0 -33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0 -28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0 -24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0 -14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0 -14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0 --4.80,0.00,4.81,0.00,1.00,0.00,0.00,0 --9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0 --14.40,4.80,4.85,0.00,1.00,9.60,4.80,0 --19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0 --19.20,9.60,4.89,0.00,1.00,19.20,9.60,0 --24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0 --28.80,14.40,4.93,0.00,1.00,28.80,14.40,0 --33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0 --38.40,19.20,4.98,0.00,1.00,38.40,14.40,0 --43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0 --48.00,24.00,5.02,0.00,1.00,48.00,19.20,0 --52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0 --57.60,24.00,5.06,0.00,1.00,57.60,24.00,0 --62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0 --72.00,28.80,5.11,0.00,1.00,67.20,24.00,0 --76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0 --81.60,28.80,5.15,0.00,1.00,76.80,28.80,0 --86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0 --91.20,28.80,5.19,0.00,1.00,86.40,28.80,0 --96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0 --100.80,28.80,5.23,0.00,1.00,96.00,28.80,0 --105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0 --115.20,28.80,5.28,0.00,1.00,105.60,28.80,0 --120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0 --124.80,24.00,5.32,0.00,1.00,115.20,24.00,0 --129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0 --134.40,24.00,5.36,0.00,1.00,124.80,24.00,0 --139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0 --144.00,19.20,5.40,0.00,1.00,134.40,19.20,0 --148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0 --153.60,14.40,5.45,0.00,1.00,144.00,14.40,0 --158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0 --163.20,9.60,5.49,0.00,1.00,153.60,9.60,0 --163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0 --168.00,4.80,5.53,0.00,1.00,163.20,9.60,0 --172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0 --177.60,0.00,5.58,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0 -163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0 -129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0 -124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0 -120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0 -115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0 -105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0 -100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0 -96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0 -91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0 -86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0 -81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0 -76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0 -72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0 -62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0 -57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0 -52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0 -48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0 -43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0 -38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0 -33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0 -28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0 -24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0 -19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0 -19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0 -0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,6.41,0.00,1.00,0.00,0.00,0 --9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0 --14.40,4.80,6.45,0.00,1.00,9.60,4.80,0 --19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0 --24.00,9.60,6.49,0.00,1.00,19.20,9.60,0 --28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0 --33.60,14.40,6.54,0.00,1.00,28.80,9.60,0 --33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0 --38.40,14.40,6.58,0.00,1.00,38.40,14.40,0 --43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0 --48.00,19.20,6.62,0.00,1.00,48.00,14.40,0 --57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0 --62.40,19.20,6.66,0.00,1.00,57.60,19.20,0 --67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0 --72.00,24.00,6.71,0.00,1.00,67.20,19.20,0 --76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0 --81.60,24.00,6.75,0.00,1.00,76.80,24.00,0 --86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0 --91.20,24.00,6.79,0.00,1.00,86.40,24.00,0 --96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0 --100.80,24.00,6.84,0.00,1.00,96.00,24.00,0 --105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0 --110.40,24.00,6.88,0.00,1.00,105.60,24.00,0 --115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0 --120.00,19.20,6.92,0.00,1.00,115.20,19.20,0 --129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0 --134.40,19.20,6.96,0.00,1.00,124.80,19.20,0 --139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0 --144.00,14.40,7.01,0.00,1.00,134.40,14.40,0 --148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0 --148.80,14.40,7.05,0.00,1.00,144.00,14.40,0 --153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0 --158.40,9.60,7.09,0.00,1.00,153.60,9.60,0 --163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0 --168.00,4.80,7.13,0.00,1.00,163.20,4.80,0 --172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0 --177.60,0.00,7.18,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0 -163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0 -158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0 -148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0 -144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0 -134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0 -129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0 -120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0 -115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0 -110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0 -105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0 -100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0 -96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0 -91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0 -86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0 -81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0 -76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0 -72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0 -67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0 -62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0 -57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0 -48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0 -43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0 -38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0 -33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0 -33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0 -28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0 -24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0 -19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0 -0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,8.01,0.00,1.00,0.00,0.00,0 --9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0 --14.40,4.80,8.05,0.00,1.00,9.60,4.80,0 --19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0 --24.00,9.60,8.10,0.00,1.00,19.20,4.80,0 --28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0 --33.60,9.60,8.14,0.00,1.00,24.00,9.60,0 --38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0 --43.20,14.40,8.18,0.00,1.00,33.60,9.60,0 --48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0 --52.80,14.40,8.22,0.00,1.00,43.20,14.40,0 --57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0 --62.40,19.20,8.27,0.00,1.00,52.80,14.40,0 --67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0 --72.00,19.20,8.31,0.00,1.00,62.40,14.40,0 --76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0 --81.60,19.20,8.35,0.00,1.00,76.80,19.20,0 --86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0 --91.20,19.20,8.40,0.00,1.00,86.40,19.20,0 --96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0 --100.80,19.20,8.44,0.00,1.00,96.00,19.20,0 --105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0 --110.40,19.20,8.48,0.00,1.00,105.60,19.20,0 --115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0 --120.00,14.40,8.52,0.00,1.00,120.00,14.40,0 --124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0 --129.60,14.40,8.57,0.00,1.00,129.60,14.40,0 --134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0 --139.20,14.40,8.61,0.00,1.00,139.20,14.40,0 --144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0 --148.80,9.60,8.65,0.00,1.00,148.80,9.60,0 --153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0 --158.40,4.80,8.69,0.00,1.00,158.40,9.60,0 --163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0 --168.00,4.80,8.74,0.00,1.00,163.20,4.80,0 --172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0 -148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0 -144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0 -139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0 -134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0 -129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0 -124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0 -120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0 -115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0 -110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0 -105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0 -100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0 -96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0 -91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0 -86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0 -81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0 -76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0 -72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0 -67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0 -62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0 -52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0 -48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0 -43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0 -38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0 -33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0 -28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0 -24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0 -19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0 -9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0 -0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,9.61,0.00,1.00,0.00,0.00,0 --9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0 --14.40,4.80,9.66,0.00,1.00,9.60,0.00,0 --19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0 --24.00,4.80,9.70,0.00,1.00,14.40,4.80,0 --28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0 --33.60,9.60,9.74,0.00,1.00,24.00,4.80,0 --38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0 --43.20,9.60,9.78,0.00,1.00,33.60,9.60,0 --48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0 --52.80,9.60,9.83,0.00,1.00,43.20,9.60,0 --57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0 --62.40,14.40,9.87,0.00,1.00,52.80,9.60,0 --67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0 --72.00,14.40,9.91,0.00,1.00,62.40,14.40,0 --76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0 --81.60,14.40,9.95,0.00,1.00,76.80,14.40,0 --86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0 --91.20,14.40,10.00,0.00,1.00,86.40,14.40,0 --96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0 --100.80,14.40,10.04,0.00,1.00,96.00,14.40,0 --105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0 --110.40,14.40,10.08,0.00,1.00,110.40,14.40,0 --115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0 --120.00,14.40,10.13,0.00,1.00,120.00,9.60,0 --124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0 --129.60,9.60,10.17,0.00,1.00,129.60,9.60,0 --134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0 --139.20,9.60,10.21,0.00,1.00,139.20,9.60,0 --144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0 --148.80,9.60,10.25,0.00,1.00,148.80,9.60,0 --153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0 --158.40,4.80,10.30,0.00,1.00,158.40,4.80,0 --163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0 --168.00,4.80,10.34,0.00,1.00,168.00,4.80,0 --172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0 -148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0 -144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0 -139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0 -134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0 -129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0 -124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0 -120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0 -115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0 -110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0 -105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0 -100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0 -96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0 -91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0 -86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0 -81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0 -76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0 -72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0 -67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0 -62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0 -48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0 -43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0 -38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0 -33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0 -28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0 -24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0 -19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0 -14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,11.21,0.00,1.00,0.00,0.00,0 --9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0 --14.40,0.00,11.26,0.00,1.00,9.60,0.00,0 --19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0 --24.00,4.80,11.30,0.00,1.00,14.40,4.80,0 --28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0 --33.60,4.80,11.34,0.00,1.00,24.00,4.80,0 --38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0 --43.20,4.80,11.39,0.00,1.00,33.60,4.80,0 --48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0 --52.80,9.60,11.43,0.00,1.00,43.20,4.80,0 --57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0 --62.40,9.60,11.47,0.00,1.00,52.80,4.80,0 --67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0 --72.00,9.60,11.51,0.00,1.00,62.40,9.60,0 --76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0 --81.60,9.60,11.56,0.00,1.00,72.00,9.60,0 --86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0 --91.20,9.60,11.60,0.00,1.00,86.40,9.60,0 --96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0 --100.80,9.60,11.64,0.00,1.00,96.00,9.60,0 --105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0 --110.40,9.60,11.68,0.00,1.00,110.40,9.60,0 --115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0 --120.00,9.60,11.73,0.00,1.00,120.00,9.60,0 --124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0 --129.60,9.60,11.77,0.00,1.00,129.60,4.80,0 --134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0 --139.20,4.80,11.81,0.00,1.00,139.20,4.80,0 --144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0 --148.80,4.80,11.86,0.00,1.00,148.80,4.80,0 --153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0 --158.40,4.80,11.90,0.00,1.00,158.40,4.80,0 --163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0 --168.00,0.00,11.94,0.00,1.00,168.00,4.80,0 --172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0 -158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0 -148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0 -144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0 -139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0 -134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0 -129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0 -124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0 -120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0 -115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0 -110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0 -105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0 -100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0 -96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0 -91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0 -86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0 -81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0 -76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0 -72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0 -67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0 -62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0 -57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0 -43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0 -33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0 -28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0 -24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0 -19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,12.82,0.00,1.00,0.00,0.00,0 --9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0 --14.40,0.00,12.86,0.00,1.00,9.60,0.00,0 --19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0 --24.00,0.00,12.90,0.00,1.00,14.40,0.00,0 --28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0 --33.60,4.80,12.95,0.00,1.00,24.00,0.00,0 --38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0 --43.20,4.80,12.99,0.00,1.00,28.80,0.00,0 --48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0 --52.80,4.80,13.03,0.00,1.00,38.40,4.80,0 --57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0 --62.40,4.80,13.07,0.00,1.00,48.00,4.80,0 --67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0 --72.00,4.80,13.12,0.00,1.00,62.40,4.80,0 --76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0 --81.60,4.80,13.16,0.00,1.00,72.00,4.80,0 --86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0 --91.20,4.80,13.20,0.00,1.00,86.40,4.80,0 --96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0 --100.80,4.80,13.24,0.00,1.00,96.00,4.80,0 --105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0 --110.40,4.80,13.29,0.00,1.00,110.40,4.80,0 --115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0 --120.00,4.80,13.33,0.00,1.00,120.00,4.80,0 --124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0 --129.60,4.80,13.37,0.00,1.00,134.40,4.80,0 --134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0 --139.20,4.80,13.42,0.00,1.00,144.00,4.80,0 --144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0 --148.80,4.80,13.46,0.00,1.00,153.60,0.00,0 --153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0 --158.40,0.00,13.50,0.00,1.00,158.40,0.00,0 --163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0 --168.00,0.00,13.54,0.00,1.00,168.00,0.00,0 --172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0 -163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0 -158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0 -153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0 -148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0 -144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0 -139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0 -134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0 -129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0 -124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0 -120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0 -115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0 -110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0 -105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0 -100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0 -96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0 -91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0 -86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0 -81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0 -76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0 -72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0 -67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0 -57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0 -52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0 -43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0 -33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0 -28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0 -24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0 -19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0 -14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0 -9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,14.42,0.00,1.00,0.00,0.00,0 --9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0 --14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0 --19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0 --24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0 --28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0 --33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0 --38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0 --43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0 --48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0 --52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0 --57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0 --62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0 --67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0 --72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0 --76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0 --81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0 --86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0 --91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0 --96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0 --100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0 --105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0 --110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0 --115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0 --120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0 --124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0 --129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0 --134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0 --139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0 --144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0 --148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0 --153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0 --158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0 --163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0 --168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0 --172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0 -177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0 -172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0 -168.00,0.00,15.25,0.00,1.00,4.80,0.00,0 -163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0 -158.40,0.00,15.30,0.00,1.00,9.60,0.00,0 -153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0 -148.80,0.00,15.34,0.00,1.00,19.20,0.00,0 -144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0 -139.20,0.00,15.38,0.00,1.00,28.80,0.00,0 -134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0 -129.60,0.00,15.42,0.00,1.00,33.60,0.00,0 -124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0 -120.00,0.00,15.47,0.00,1.00,43.20,0.00,0 -115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0 -110.40,0.00,15.51,0.00,1.00,57.60,0.00,0 -105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0 -100.80,0.00,15.55,0.00,1.00,67.20,0.00,0 -96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0 -91.20,0.00,15.59,0.00,1.00,81.60,0.00,0 -86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0 -81.60,0.00,15.64,0.00,1.00,96.00,0.00,0 -76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0 -72.00,0.00,15.68,0.00,1.00,110.40,0.00,0 -67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0 -62.40,0.00,15.72,0.00,1.00,120.00,0.00,0 -57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0 -52.80,0.00,15.77,0.00,1.00,134.40,0.00,0 -48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0 -43.20,0.00,15.81,0.00,1.00,144.00,0.00,0 -38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0 -33.60,0.00,15.85,0.00,1.00,153.60,0.00,0 -28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0 -24.00,0.00,15.89,0.00,1.00,158.40,0.00,0 -19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0 -14.40,0.00,15.94,0.00,1.00,168.00,0.00,0 -9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0 -4.80,0.00,15.98,0.00,1.00,172.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 diff --git a/scripts/testv/stvOMASA_2ISM_2MASA1TC32c.met b/scripts/testv/stvOMASA_2ISM_2MASA1TC32c.met deleted file mode 100644 index 64688774087538a671ebfda830ff11b4f836f438..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_2MASA1TC32c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d125a4c4e3989ac55f9c2617f464431feae4ede9b2e15d087d3271c0a4a56303 -size 319800 diff --git a/scripts/testv/stvOMASA_2ISM_2MASA1TC32c.wav b/scripts/testv/stvOMASA_2ISM_2MASA1TC32c.wav deleted file mode 100644 index a888f097b08041d77a888adf6fbb9c025fed686c..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_2MASA1TC32c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c00e210a239ff0ef104886c3a0795cf1fdfb0f974db5f3f2f380357767c91817 -size 1152080 diff --git a/scripts/testv/stvOMASA_2ISM_2MASA1TC32c_ISM1.csv b/scripts/testv/stvOMASA_2ISM_2MASA1TC32c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_2MASA1TC32c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_2ISM_2MASA1TC32c_ISM2.csv b/scripts/testv/stvOMASA_2ISM_2MASA1TC32c_ISM2.csv deleted file mode 100644 index f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_2MASA1TC32c_ISM2.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,4.80,16.00,0.00,1.00,0.00,0.00,0 -0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0 -0.00,14.40,15.96,0.00,1.00,4.80,9.60,0 -0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0 -0.00,24.00,15.91,0.00,1.00,14.40,19.20,0 -0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0 -0.00,33.60,15.87,0.00,1.00,19.20,28.80,0 -0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0 -0.00,43.20,15.83,0.00,1.00,28.80,38.40,0 -0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0 -0.00,52.80,15.79,0.00,1.00,38.40,48.00,0 -0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0 -0.00,62.40,15.74,0.00,1.00,48.00,57.60,0 -4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0 -4.80,72.00,15.70,0.00,1.00,57.60,67.20,0 -4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0 -9.60,81.60,15.66,0.00,1.00,72.00,76.80,0 -19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0 -134.40,86.40,15.62,0.00,1.00,86.40,86.40,0 -168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0 -172.80,76.80,15.57,0.00,1.00,100.80,86.40,0 -177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0 -177.60,67.20,15.53,0.00,1.00,110.40,76.80,0 -177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0 -177.60,57.60,15.49,0.00,1.00,124.80,67.20,0 -177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0 -177.60,48.00,15.44,0.00,1.00,134.40,57.60,0 -177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0 -177.60,38.40,15.40,0.00,1.00,144.00,48.00,0 -177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0 -177.60,28.80,15.36,0.00,1.00,153.60,38.40,0 -177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0 -177.60,19.20,15.32,0.00,1.00,158.40,28.80,0 -177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0 -177.60,9.60,15.27,0.00,1.00,168.00,19.20,0 -177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0 -177.60,0.00,15.23,0.00,1.00,172.80,9.60,0 --177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0 --177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0 --177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0 --177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0 --177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0 --177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0 --177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0 --177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0 --177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0 --177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0 --177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0 --177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0 --177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0 --177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0 --177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0 --177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0 --172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0 --168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0 --134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0 --19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0 --9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0 --4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0 --4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0 --4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0 --0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0 --0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0 --0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0 --0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0 --0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0 --0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0 --0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0 --0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0 --0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0 --0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0 --0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0 --0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0 --0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0 --0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,14.40,0.00,1.00,0.00,0.00,0 --0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0 --0.00,14.40,14.36,0.00,1.00,9.60,9.60,0 --0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0 --0.00,24.00,14.31,0.00,1.00,14.40,19.20,0 --0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0 --0.00,33.60,14.27,0.00,1.00,24.00,28.80,0 --4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0 --4.80,43.20,14.23,0.00,1.00,28.80,38.40,0 --4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0 --4.80,52.80,14.18,0.00,1.00,38.40,48.00,0 --4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0 --4.80,62.40,14.14,0.00,1.00,48.00,57.60,0 --9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0 --9.60,72.00,14.10,0.00,1.00,62.40,67.20,0 --14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0 --24.00,81.60,14.06,0.00,1.00,72.00,76.80,0 --43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0 --110.40,86.40,14.01,0.00,1.00,86.40,86.40,0 --148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0 --163.20,76.80,13.97,0.00,1.00,96.00,81.60,0 --168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0 --172.80,67.20,13.93,0.00,1.00,110.40,72.00,0 --172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0 --172.80,57.60,13.89,0.00,1.00,120.00,62.40,0 --172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0 --177.60,48.00,13.84,0.00,1.00,134.40,52.80,0 --177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0 --177.60,38.40,13.80,0.00,1.00,144.00,43.20,0 --177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0 --177.60,28.80,13.76,0.00,1.00,148.80,33.60,0 --177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0 --177.60,19.20,13.71,0.00,1.00,158.40,24.00,0 --177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0 --177.60,9.60,13.67,0.00,1.00,168.00,14.40,0 --177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0 --177.60,0.00,13.63,0.00,1.00,172.80,4.80,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0 -177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0 -177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0 -177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0 -177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0 -177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0 -177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0 -172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0 -172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0 -172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0 -172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0 -168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0 -163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0 -148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0 -110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0 -43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0 -24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0 -14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0 -9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0 -9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0 -4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0 -4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0 -4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0 -4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0 -4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0 -0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0 -0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0 -0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0 -0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0 -0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,12.80,0.00,1.00,0.00,0.00,0 --0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0 --0.00,14.40,12.75,0.00,1.00,9.60,9.60,0 --4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0 --4.80,24.00,12.71,0.00,1.00,14.40,19.20,0 --4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0 --4.80,33.60,12.67,0.00,1.00,24.00,28.80,0 --4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0 --9.60,43.20,12.62,0.00,1.00,33.60,38.40,0 --9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0 --9.60,52.80,12.58,0.00,1.00,43.20,48.00,0 --14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0 --14.40,62.40,12.54,0.00,1.00,52.80,57.60,0 --19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0 --24.00,72.00,12.50,0.00,1.00,62.40,67.20,0 --33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0 --43.20,76.80,12.45,0.00,1.00,72.00,72.00,0 --67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0 --96.00,81.60,12.41,0.00,1.00,86.40,81.60,0 --124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0 --144.00,76.80,12.37,0.00,1.00,96.00,76.80,0 --153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0 --158.40,67.20,12.33,0.00,1.00,110.40,72.00,0 --163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0 --168.00,57.60,12.28,0.00,1.00,120.00,62.40,0 --168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0 --168.00,48.00,12.24,0.00,1.00,129.60,52.80,0 --172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0 --172.80,38.40,12.20,0.00,1.00,139.20,43.20,0 --172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0 --172.80,28.80,12.15,0.00,1.00,148.80,33.60,0 --177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0 --177.60,19.20,12.11,0.00,1.00,158.40,24.00,0 --177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0 --177.60,9.60,12.07,0.00,1.00,168.00,14.40,0 --177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0 --177.60,0.00,12.03,0.00,1.00,172.80,4.80,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0 -177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0 -172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0 -172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0 -168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0 -168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0 -168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0 -163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0 -158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0 -153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0 -144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0 -124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0 -96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0 -67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0 -43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0 -33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0 -24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0 -19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0 -14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0 -14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0 -9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0 -9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0 -9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0 -4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0 -4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0 -0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,11.19,0.00,1.00,0.00,0.00,0 --0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0 --4.80,14.40,11.15,0.00,1.00,9.60,9.60,0 --4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0 --4.80,24.00,11.11,0.00,1.00,14.40,19.20,0 --4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0 --9.60,33.60,11.07,0.00,1.00,24.00,28.80,0 --9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0 --14.40,43.20,11.02,0.00,1.00,33.60,38.40,0 --14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0 --14.40,52.80,10.98,0.00,1.00,43.20,48.00,0 --19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0 --24.00,57.60,10.94,0.00,1.00,52.80,52.80,0 --28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0 --33.60,67.20,10.89,0.00,1.00,62.40,62.40,0 --43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0 --57.60,72.00,10.85,0.00,1.00,76.80,72.00,0 --76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0 --96.00,76.80,10.81,0.00,1.00,86.40,76.80,0 --115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0 --129.60,72.00,10.77,0.00,1.00,96.00,76.80,0 --139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0 --148.80,67.20,10.72,0.00,1.00,105.60,67.20,0 --153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0 --158.40,57.60,10.68,0.00,1.00,120.00,62.40,0 --163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0 --163.20,48.00,10.64,0.00,1.00,129.60,52.80,0 --168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0 --168.00,38.40,10.60,0.00,1.00,139.20,43.20,0 --172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0 --172.80,28.80,10.55,0.00,1.00,148.80,33.60,0 --172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0 --172.80,19.20,10.51,0.00,1.00,158.40,24.00,0 --177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0 --177.60,9.60,10.47,0.00,1.00,163.20,14.40,0 --177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0 --177.60,0.00,10.42,0.00,1.00,172.80,4.80,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0 -168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0 -168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0 -163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0 -163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0 -158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0 -153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0 -148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0 -139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0 -129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0 -115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0 -96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0 -76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0 -57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0 -43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0 -33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0 -28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0 -24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0 -19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0 -14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0 -14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0 -14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0 -9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0 -9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0 -4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0 -4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0 -0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,9.59,0.00,1.00,0.00,0.00,0 --4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0 --4.80,14.40,9.55,0.00,1.00,9.60,9.60,0 --4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0 --9.60,24.00,9.51,0.00,1.00,19.20,19.20,0 --9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0 --9.60,33.60,9.46,0.00,1.00,24.00,28.80,0 --14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0 --14.40,38.40,9.42,0.00,1.00,33.60,33.60,0 --19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0 --24.00,48.00,9.38,0.00,1.00,43.20,43.20,0 --24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0 --28.80,57.60,9.34,0.00,1.00,52.80,52.80,0 --38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0 --43.20,62.40,9.29,0.00,1.00,67.20,62.40,0 --52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0 --62.40,72.00,9.25,0.00,1.00,76.80,67.20,0 --76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0 --96.00,72.00,9.21,0.00,1.00,86.40,72.00,0 --110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0 --120.00,67.20,9.16,0.00,1.00,96.00,72.00,0 --134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0 --139.20,62.40,9.12,0.00,1.00,105.60,67.20,0 --148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0 --153.60,57.60,9.08,0.00,1.00,115.20,57.60,0 --158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0 --158.40,48.00,9.04,0.00,1.00,129.60,52.80,0 --163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0 --163.20,38.40,8.99,0.00,1.00,139.20,43.20,0 --168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0 --168.00,28.80,8.95,0.00,1.00,148.80,33.60,0 --172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0 --172.80,19.20,8.91,0.00,1.00,153.60,24.00,0 --172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0 --177.60,9.60,8.87,0.00,1.00,163.20,14.40,0 --177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0 --177.60,0.00,8.82,0.00,1.00,172.80,4.80,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0 -168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0 -163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0 -163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0 -158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0 -158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0 -153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0 -148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0 -139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0 -134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0 -120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0 -110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0 -96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0 -76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0 -62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0 -52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0 -43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0 -38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0 -28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0 -24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0 -24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0 -19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0 -14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0 -14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0 -9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0 -9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0 -9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0 -0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,7.99,0.00,1.00,0.00,0.00,0 --4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0 --4.80,14.40,7.95,0.00,1.00,9.60,9.60,0 --9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0 --9.60,24.00,7.90,0.00,1.00,19.20,19.20,0 --14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0 --14.40,28.80,7.86,0.00,1.00,28.80,24.00,0 --19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0 --19.20,38.40,7.82,0.00,1.00,38.40,33.60,0 --24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0 --28.80,48.00,7.78,0.00,1.00,48.00,43.20,0 --33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0 --38.40,52.80,7.73,0.00,1.00,57.60,52.80,0 --43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0 --48.00,62.40,7.69,0.00,1.00,67.20,57.60,0 --57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0 --67.20,67.20,7.65,0.00,1.00,76.80,62.40,0 --81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0 --91.20,67.20,7.60,0.00,1.00,86.40,67.20,0 --105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0 --115.20,67.20,7.56,0.00,1.00,96.00,67.20,0 --124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0 --134.40,57.60,7.52,0.00,1.00,105.60,62.40,0 --139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0 --144.00,52.80,7.48,0.00,1.00,115.20,57.60,0 --148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0 --153.60,43.20,7.43,0.00,1.00,124.80,48.00,0 --158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0 --163.20,38.40,7.39,0.00,1.00,134.40,38.40,0 --163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0 --168.00,28.80,7.35,0.00,1.00,144.00,33.60,0 --168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0 --172.80,19.20,7.31,0.00,1.00,153.60,24.00,0 --172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0 --177.60,9.60,7.26,0.00,1.00,163.20,14.40,0 --177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0 --177.60,0.00,7.22,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0 -163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0 -158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0 -153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0 -148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0 -144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0 -139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0 -134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0 -124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0 -115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0 -105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0 -91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0 -81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0 -67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0 -57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0 -48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0 -43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0 -38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0 -33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0 -28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0 -24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0 -19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0 -19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0 -14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0 -9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0 -0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,6.39,0.00,1.00,0.00,0.00,0 --4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0 --4.80,14.40,6.34,0.00,1.00,9.60,9.60,0 --9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0 --9.60,19.20,6.30,0.00,1.00,19.20,14.40,0 --14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0 --19.20,28.80,6.26,0.00,1.00,28.80,24.00,0 --19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0 --24.00,38.40,6.22,0.00,1.00,38.40,33.60,0 --28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0 --33.60,43.20,6.17,0.00,1.00,48.00,38.40,0 --38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0 --43.20,52.80,6.13,0.00,1.00,57.60,48.00,0 --48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0 --52.80,57.60,6.09,0.00,1.00,67.20,52.80,0 --62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0 --72.00,62.40,6.05,0.00,1.00,76.80,57.60,0 --81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0 --91.20,62.40,6.00,0.00,1.00,86.40,62.40,0 --100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0 --110.40,62.40,5.96,0.00,1.00,96.00,62.40,0 --120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0 --129.60,57.60,5.92,0.00,1.00,105.60,57.60,0 --134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0 --139.20,48.00,5.87,0.00,1.00,115.20,52.80,0 --144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0 --148.80,43.20,5.83,0.00,1.00,124.80,48.00,0 --153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0 --158.40,33.60,5.79,0.00,1.00,134.40,38.40,0 --163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0 --163.20,28.80,5.75,0.00,1.00,144.00,28.80,0 --168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0 --168.00,19.20,5.70,0.00,1.00,153.60,24.00,0 --172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0 --172.80,9.60,5.66,0.00,1.00,163.20,14.40,0 --177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0 --177.60,0.00,5.62,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0 -163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0 -158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0 -148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0 -144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0 -139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0 -134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0 -129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0 -120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0 -110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0 -100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0 -91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0 -81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0 -72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0 -62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0 -52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0 -48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0 -43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0 -38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0 -33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0 -28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0 -24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0 -19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0 -19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0 -9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0 -4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0 -0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,4.79,0.00,1.00,0.00,0.00,0 --4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0 --9.60,14.40,4.74,0.00,1.00,9.60,9.60,0 --9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0 --14.40,19.20,4.70,0.00,1.00,19.20,14.40,0 --14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0 --19.20,28.80,4.66,0.00,1.00,28.80,24.00,0 --24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0 --28.80,33.60,4.61,0.00,1.00,38.40,28.80,0 --28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0 --33.60,43.20,4.57,0.00,1.00,48.00,38.40,0 --38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0 --48.00,48.00,4.53,0.00,1.00,57.60,43.20,0 --52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0 --57.60,52.80,4.49,0.00,1.00,67.20,48.00,0 --67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0 --76.80,57.60,4.44,0.00,1.00,76.80,52.80,0 --81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0 --91.20,57.60,4.40,0.00,1.00,86.40,57.60,0 --100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0 --110.40,57.60,4.36,0.00,1.00,96.00,57.60,0 --115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0 --124.80,52.80,4.32,0.00,1.00,105.60,52.80,0 --129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0 --139.20,48.00,4.27,0.00,1.00,115.20,48.00,0 --144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0 --148.80,38.40,4.23,0.00,1.00,124.80,43.20,0 --153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0 --153.60,33.60,4.19,0.00,1.00,134.40,38.40,0 --158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0 --163.20,24.00,4.14,0.00,1.00,144.00,28.80,0 --163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0 --168.00,19.20,4.10,0.00,1.00,153.60,24.00,0 --172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0 --172.80,9.60,4.06,0.00,1.00,163.20,14.40,0 --177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0 --177.60,0.00,4.02,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0 -163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0 -163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0 -158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0 -148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0 -144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0 -139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0 -129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0 -124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0 -115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0 -110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0 -100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0 -91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0 -81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0 -76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0 -67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0 -57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0 -52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0 -48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0 -38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0 -33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0 -28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0 -28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0 -24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0 -19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0 -14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0 -14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0 -9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0 -0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.18,0.00,1.00,0.00,0.00,0 --4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0 --9.60,9.60,3.14,0.00,1.00,9.60,9.60,0 --9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0 --14.40,19.20,3.10,0.00,1.00,19.20,14.40,0 --19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0 --24.00,24.00,3.05,0.00,1.00,28.80,24.00,0 --24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0 --28.80,33.60,3.01,0.00,1.00,38.40,28.80,0 --33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0 --38.40,38.40,2.97,0.00,1.00,48.00,33.60,0 --43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0 --48.00,43.20,2.93,0.00,1.00,57.60,43.20,0 --52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0 --62.40,48.00,2.88,0.00,1.00,67.20,48.00,0 --67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0 --76.80,52.80,2.84,0.00,1.00,76.80,48.00,0 --86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0 --91.20,52.80,2.80,0.00,1.00,86.40,52.80,0 --100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0 --105.60,52.80,2.76,0.00,1.00,96.00,52.80,0 --115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0 --120.00,48.00,2.71,0.00,1.00,105.60,48.00,0 --129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0 --134.40,43.20,2.67,0.00,1.00,115.20,43.20,0 --139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0 --144.00,38.40,2.63,0.00,1.00,124.80,38.40,0 --148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0 --153.60,33.60,2.58,0.00,1.00,134.40,33.60,0 --158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0 --158.40,24.00,2.54,0.00,1.00,144.00,28.80,0 --163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0 --168.00,19.20,2.50,0.00,1.00,153.60,19.20,0 --168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.46,0.00,1.00,163.20,14.40,0 --177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.41,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0 -158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0 -148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0 -144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0 -139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0 -134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0 -129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0 -120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0 -115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0 -105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0 -100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0 -91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0 -86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0 -76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0 -67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0 -62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0 -52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0 -48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0 -43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0 -38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0 -33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0 -28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0 -24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0 -24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0 -19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0 -0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.58,0.00,1.00,0.00,0.00,0 --4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.54,0.00,1.00,9.60,4.80,0 --14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0 --14.40,19.20,1.50,0.00,1.00,19.20,14.40,0 --19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0 --24.00,24.00,1.45,0.00,1.00,28.80,19.20,0 --28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0 --33.60,28.80,1.41,0.00,1.00,38.40,28.80,0 --38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0 --43.20,38.40,1.37,0.00,1.00,48.00,33.60,0 --48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0 --52.80,43.20,1.32,0.00,1.00,57.60,38.40,0 --57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0 --62.40,43.20,1.28,0.00,1.00,67.20,43.20,0 --72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0 --76.80,48.00,1.24,0.00,1.00,76.80,43.20,0 --86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0 --91.20,48.00,1.20,0.00,1.00,86.40,48.00,0 --100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0 --105.60,48.00,1.15,0.00,1.00,96.00,48.00,0 --110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0 --120.00,43.20,1.11,0.00,1.00,105.60,43.20,0 --124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0 --129.60,38.40,1.07,0.00,1.00,115.20,43.20,0 --134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0 --139.20,33.60,1.03,0.00,1.00,124.80,38.40,0 --144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0 --148.80,28.80,0.98,0.00,1.00,134.40,33.60,0 --153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0 --158.40,24.00,0.94,0.00,1.00,144.00,24.00,0 --163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0 --163.20,14.40,0.90,0.00,1.00,153.60,19.20,0 --168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.85,0.00,1.00,163.20,14.40,0 --172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.81,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0 -148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0 -144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0 -139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0 -134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0 -129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0 -124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0 -120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0 -110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0 -105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0 -100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0 -91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0 -86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0 -76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0 -72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0 -62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0 -57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0 -52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0 -48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0 -43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0 -38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0 -28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0 -19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0 -0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,0.00,0.00,1.00,0.00,0.00,0 --4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0 --9.60,9.60,0.04,0.00,1.00,9.60,4.80,0 --14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0 --19.20,14.40,0.09,0.00,1.00,19.20,14.40,0 --24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0 --24.00,24.00,0.13,0.00,1.00,28.80,19.20,0 --28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0 --33.60,28.80,0.17,0.00,1.00,38.40,24.00,0 --38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0 --43.20,33.60,0.21,0.00,1.00,48.00,28.80,0 --48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0 --52.80,38.40,0.26,0.00,1.00,57.60,33.60,0 --62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0 --67.20,38.40,0.30,0.00,1.00,67.20,38.40,0 --72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0 --76.80,43.20,0.34,0.00,1.00,76.80,38.40,0 --86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0 --91.20,43.20,0.38,0.00,1.00,86.40,43.20,0 --96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0 --105.60,43.20,0.43,0.00,1.00,96.00,43.20,0 --110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0 --115.20,38.40,0.47,0.00,1.00,105.60,38.40,0 --124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0 --129.60,38.40,0.51,0.00,1.00,115.20,38.40,0 --134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0 --139.20,33.60,0.56,0.00,1.00,124.80,33.60,0 --144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0 --148.80,28.80,0.60,0.00,1.00,134.40,28.80,0 --153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0 --158.40,19.20,0.64,0.00,1.00,144.00,24.00,0 --158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0 --163.20,14.40,0.68,0.00,1.00,153.60,19.20,0 --168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.73,0.00,1.00,163.20,9.60,0 --172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.77,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0 -158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0 -158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0 -148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0 -144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0 -139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0 -134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0 -129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0 -124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0 -115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0 -110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0 -105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0 -96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0 -91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0 -86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0 -76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0 -72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0 -67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0 -62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0 -52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0 -48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0 -43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0 -38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0 -28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0 -19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0 -0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.60,0.00,1.00,0.00,0.00,0 --9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.64,0.00,1.00,9.60,4.80,0 --14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0 --19.20,14.40,1.69,0.00,1.00,19.20,9.60,0 --24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0 --28.80,19.20,1.73,0.00,1.00,28.80,19.20,0 --33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0 --38.40,24.00,1.77,0.00,1.00,38.40,24.00,0 --43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0 --48.00,28.80,1.82,0.00,1.00,48.00,28.80,0 --52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0 --57.60,33.60,1.86,0.00,1.00,57.60,28.80,0 --62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0 --67.20,38.40,1.90,0.00,1.00,67.20,33.60,0 --72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0 --81.60,38.40,1.94,0.00,1.00,76.80,38.40,0 --86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0 --91.20,38.40,1.99,0.00,1.00,86.40,38.40,0 --96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0 --105.60,38.40,2.03,0.00,1.00,96.00,38.40,0 --110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0 --115.20,33.60,2.07,0.00,1.00,105.60,33.60,0 --120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0 --124.80,33.60,2.11,0.00,1.00,115.20,33.60,0 --129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0 --134.40,28.80,2.16,0.00,1.00,124.80,28.80,0 --139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0 --144.00,24.00,2.20,0.00,1.00,134.40,24.00,0 --148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0 --153.60,19.20,2.24,0.00,1.00,144.00,19.20,0 --158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0 --163.20,14.40,2.29,0.00,1.00,153.60,14.40,0 --168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.33,0.00,1.00,163.20,9.60,0 --172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.37,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0 -153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0 -144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0 -134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0 -124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0 -120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0 -115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0 -110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0 -105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0 -96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0 -91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0 -86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0 -81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0 -72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0 -67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0 -62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0 -57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0 -52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0 -48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0 -43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0 -38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0 -33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0 -28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0 -14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.20,0.00,1.00,0.00,0.00,0 --9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0 --14.40,9.60,3.25,0.00,1.00,9.60,4.80,0 --14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0 --19.20,14.40,3.29,0.00,1.00,19.20,9.60,0 --24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0 --28.80,19.20,3.33,0.00,1.00,28.80,14.40,0 --33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0 --38.40,24.00,3.38,0.00,1.00,38.40,19.20,0 --43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0 --48.00,24.00,3.42,0.00,1.00,48.00,24.00,0 --52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0 --57.60,28.80,3.46,0.00,1.00,57.60,28.80,0 --62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0 --67.20,33.60,3.50,0.00,1.00,67.20,28.80,0 --72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0 --81.60,33.60,3.55,0.00,1.00,76.80,33.60,0 --86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0 --91.20,33.60,3.59,0.00,1.00,86.40,33.60,0 --96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0 --100.80,33.60,3.63,0.00,1.00,96.00,33.60,0 --110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0 --115.20,33.60,3.67,0.00,1.00,105.60,28.80,0 --120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0 --124.80,28.80,3.72,0.00,1.00,115.20,28.80,0 --129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0 --134.40,24.00,3.76,0.00,1.00,124.80,24.00,0 --139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0 --144.00,19.20,3.80,0.00,1.00,134.40,24.00,0 --148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0 --153.60,14.40,3.85,0.00,1.00,144.00,19.20,0 --158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0 --163.20,9.60,3.89,0.00,1.00,153.60,14.40,0 --168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0 --168.00,4.80,3.93,0.00,1.00,163.20,9.60,0 --172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0 --177.60,0.00,3.97,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0 -124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0 -120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0 -115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0 -110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0 -100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0 -96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0 -91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0 -86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0 -81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0 -72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0 -67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0 -62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0 -57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0 -52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0 -48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0 -43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0 -38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0 -33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0 -28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0 -24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0 -14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0 -14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0 --4.80,0.00,4.81,0.00,1.00,0.00,0.00,0 --9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0 --14.40,4.80,4.85,0.00,1.00,9.60,4.80,0 --19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0 --19.20,9.60,4.89,0.00,1.00,19.20,9.60,0 --24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0 --28.80,14.40,4.93,0.00,1.00,28.80,14.40,0 --33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0 --38.40,19.20,4.98,0.00,1.00,38.40,14.40,0 --43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0 --48.00,24.00,5.02,0.00,1.00,48.00,19.20,0 --52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0 --57.60,24.00,5.06,0.00,1.00,57.60,24.00,0 --62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0 --72.00,28.80,5.11,0.00,1.00,67.20,24.00,0 --76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0 --81.60,28.80,5.15,0.00,1.00,76.80,28.80,0 --86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0 --91.20,28.80,5.19,0.00,1.00,86.40,28.80,0 --96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0 --100.80,28.80,5.23,0.00,1.00,96.00,28.80,0 --105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0 --115.20,28.80,5.28,0.00,1.00,105.60,28.80,0 --120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0 --124.80,24.00,5.32,0.00,1.00,115.20,24.00,0 --129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0 --134.40,24.00,5.36,0.00,1.00,124.80,24.00,0 --139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0 --144.00,19.20,5.40,0.00,1.00,134.40,19.20,0 --148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0 --153.60,14.40,5.45,0.00,1.00,144.00,14.40,0 --158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0 --163.20,9.60,5.49,0.00,1.00,153.60,9.60,0 --163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0 --168.00,4.80,5.53,0.00,1.00,163.20,9.60,0 --172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0 --177.60,0.00,5.58,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0 -163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0 -129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0 -124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0 -120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0 -115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0 -105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0 -100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0 -96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0 -91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0 -86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0 -81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0 -76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0 -72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0 -62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0 -57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0 -52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0 -48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0 -43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0 -38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0 -33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0 -28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0 -24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0 -19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0 -19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0 -0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,6.41,0.00,1.00,0.00,0.00,0 --9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0 --14.40,4.80,6.45,0.00,1.00,9.60,4.80,0 --19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0 --24.00,9.60,6.49,0.00,1.00,19.20,9.60,0 --28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0 --33.60,14.40,6.54,0.00,1.00,28.80,9.60,0 --33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0 --38.40,14.40,6.58,0.00,1.00,38.40,14.40,0 --43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0 --48.00,19.20,6.62,0.00,1.00,48.00,14.40,0 --57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0 --62.40,19.20,6.66,0.00,1.00,57.60,19.20,0 --67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0 --72.00,24.00,6.71,0.00,1.00,67.20,19.20,0 --76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0 --81.60,24.00,6.75,0.00,1.00,76.80,24.00,0 --86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0 --91.20,24.00,6.79,0.00,1.00,86.40,24.00,0 --96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0 --100.80,24.00,6.84,0.00,1.00,96.00,24.00,0 --105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0 --110.40,24.00,6.88,0.00,1.00,105.60,24.00,0 --115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0 --120.00,19.20,6.92,0.00,1.00,115.20,19.20,0 --129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0 --134.40,19.20,6.96,0.00,1.00,124.80,19.20,0 --139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0 --144.00,14.40,7.01,0.00,1.00,134.40,14.40,0 --148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0 --148.80,14.40,7.05,0.00,1.00,144.00,14.40,0 --153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0 --158.40,9.60,7.09,0.00,1.00,153.60,9.60,0 --163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0 --168.00,4.80,7.13,0.00,1.00,163.20,4.80,0 --172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0 --177.60,0.00,7.18,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0 -163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0 -158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0 -148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0 -144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0 -134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0 -129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0 -120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0 -115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0 -110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0 -105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0 -100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0 -96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0 -91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0 -86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0 -81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0 -76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0 -72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0 -67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0 -62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0 -57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0 -48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0 -43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0 -38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0 -33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0 -33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0 -28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0 -24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0 -19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0 -0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,8.01,0.00,1.00,0.00,0.00,0 --9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0 --14.40,4.80,8.05,0.00,1.00,9.60,4.80,0 --19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0 --24.00,9.60,8.10,0.00,1.00,19.20,4.80,0 --28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0 --33.60,9.60,8.14,0.00,1.00,24.00,9.60,0 --38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0 --43.20,14.40,8.18,0.00,1.00,33.60,9.60,0 --48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0 --52.80,14.40,8.22,0.00,1.00,43.20,14.40,0 --57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0 --62.40,19.20,8.27,0.00,1.00,52.80,14.40,0 --67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0 --72.00,19.20,8.31,0.00,1.00,62.40,14.40,0 --76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0 --81.60,19.20,8.35,0.00,1.00,76.80,19.20,0 --86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0 --91.20,19.20,8.40,0.00,1.00,86.40,19.20,0 --96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0 --100.80,19.20,8.44,0.00,1.00,96.00,19.20,0 --105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0 --110.40,19.20,8.48,0.00,1.00,105.60,19.20,0 --115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0 --120.00,14.40,8.52,0.00,1.00,120.00,14.40,0 --124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0 --129.60,14.40,8.57,0.00,1.00,129.60,14.40,0 --134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0 --139.20,14.40,8.61,0.00,1.00,139.20,14.40,0 --144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0 --148.80,9.60,8.65,0.00,1.00,148.80,9.60,0 --153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0 --158.40,4.80,8.69,0.00,1.00,158.40,9.60,0 --163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0 --168.00,4.80,8.74,0.00,1.00,163.20,4.80,0 --172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0 -148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0 -144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0 -139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0 -134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0 -129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0 -124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0 -120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0 -115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0 -110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0 -105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0 -100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0 -96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0 -91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0 -86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0 -81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0 -76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0 -72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0 -67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0 -62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0 -52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0 -48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0 -43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0 -38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0 -33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0 -28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0 -24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0 -19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0 -9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0 -0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,9.61,0.00,1.00,0.00,0.00,0 --9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0 --14.40,4.80,9.66,0.00,1.00,9.60,0.00,0 --19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0 --24.00,4.80,9.70,0.00,1.00,14.40,4.80,0 --28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0 --33.60,9.60,9.74,0.00,1.00,24.00,4.80,0 --38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0 --43.20,9.60,9.78,0.00,1.00,33.60,9.60,0 --48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0 --52.80,9.60,9.83,0.00,1.00,43.20,9.60,0 --57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0 --62.40,14.40,9.87,0.00,1.00,52.80,9.60,0 --67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0 --72.00,14.40,9.91,0.00,1.00,62.40,14.40,0 --76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0 --81.60,14.40,9.95,0.00,1.00,76.80,14.40,0 --86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0 --91.20,14.40,10.00,0.00,1.00,86.40,14.40,0 --96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0 --100.80,14.40,10.04,0.00,1.00,96.00,14.40,0 --105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0 --110.40,14.40,10.08,0.00,1.00,110.40,14.40,0 --115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0 --120.00,14.40,10.13,0.00,1.00,120.00,9.60,0 --124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0 --129.60,9.60,10.17,0.00,1.00,129.60,9.60,0 --134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0 --139.20,9.60,10.21,0.00,1.00,139.20,9.60,0 --144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0 --148.80,9.60,10.25,0.00,1.00,148.80,9.60,0 --153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0 --158.40,4.80,10.30,0.00,1.00,158.40,4.80,0 --163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0 --168.00,4.80,10.34,0.00,1.00,168.00,4.80,0 --172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0 -148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0 -144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0 -139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0 -134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0 -129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0 -124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0 -120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0 -115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0 -110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0 -105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0 -100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0 -96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0 -91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0 -86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0 -81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0 -76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0 -72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0 -67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0 -62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0 -48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0 -43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0 -38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0 -33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0 -28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0 -24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0 -19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0 -14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,11.21,0.00,1.00,0.00,0.00,0 --9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0 --14.40,0.00,11.26,0.00,1.00,9.60,0.00,0 --19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0 --24.00,4.80,11.30,0.00,1.00,14.40,4.80,0 --28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0 --33.60,4.80,11.34,0.00,1.00,24.00,4.80,0 --38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0 --43.20,4.80,11.39,0.00,1.00,33.60,4.80,0 --48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0 --52.80,9.60,11.43,0.00,1.00,43.20,4.80,0 --57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0 --62.40,9.60,11.47,0.00,1.00,52.80,4.80,0 --67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0 --72.00,9.60,11.51,0.00,1.00,62.40,9.60,0 --76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0 --81.60,9.60,11.56,0.00,1.00,72.00,9.60,0 --86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0 --91.20,9.60,11.60,0.00,1.00,86.40,9.60,0 --96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0 --100.80,9.60,11.64,0.00,1.00,96.00,9.60,0 --105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0 --110.40,9.60,11.68,0.00,1.00,110.40,9.60,0 --115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0 --120.00,9.60,11.73,0.00,1.00,120.00,9.60,0 --124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0 --129.60,9.60,11.77,0.00,1.00,129.60,4.80,0 --134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0 --139.20,4.80,11.81,0.00,1.00,139.20,4.80,0 --144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0 --148.80,4.80,11.86,0.00,1.00,148.80,4.80,0 --153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0 --158.40,4.80,11.90,0.00,1.00,158.40,4.80,0 --163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0 --168.00,0.00,11.94,0.00,1.00,168.00,4.80,0 --172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0 -158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0 -148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0 -144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0 -139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0 -134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0 -129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0 -124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0 -120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0 -115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0 -110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0 -105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0 -100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0 -96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0 -91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0 -86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0 -81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0 -76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0 -72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0 -67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0 -62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0 -57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0 -43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0 -33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0 -28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0 -24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0 -19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,12.82,0.00,1.00,0.00,0.00,0 --9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0 --14.40,0.00,12.86,0.00,1.00,9.60,0.00,0 --19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0 --24.00,0.00,12.90,0.00,1.00,14.40,0.00,0 --28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0 --33.60,4.80,12.95,0.00,1.00,24.00,0.00,0 --38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0 --43.20,4.80,12.99,0.00,1.00,28.80,0.00,0 --48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0 --52.80,4.80,13.03,0.00,1.00,38.40,4.80,0 --57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0 --62.40,4.80,13.07,0.00,1.00,48.00,4.80,0 --67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0 --72.00,4.80,13.12,0.00,1.00,62.40,4.80,0 --76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0 --81.60,4.80,13.16,0.00,1.00,72.00,4.80,0 --86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0 --91.20,4.80,13.20,0.00,1.00,86.40,4.80,0 --96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0 --100.80,4.80,13.24,0.00,1.00,96.00,4.80,0 --105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0 --110.40,4.80,13.29,0.00,1.00,110.40,4.80,0 --115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0 --120.00,4.80,13.33,0.00,1.00,120.00,4.80,0 --124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0 --129.60,4.80,13.37,0.00,1.00,134.40,4.80,0 --134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0 --139.20,4.80,13.42,0.00,1.00,144.00,4.80,0 --144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0 --148.80,4.80,13.46,0.00,1.00,153.60,0.00,0 --153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0 --158.40,0.00,13.50,0.00,1.00,158.40,0.00,0 --163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0 --168.00,0.00,13.54,0.00,1.00,168.00,0.00,0 --172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0 -163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0 -158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0 -153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0 -148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0 -144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0 -139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0 -134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0 -129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0 -124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0 -120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0 -115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0 -110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0 -105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0 -100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0 -96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0 -91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0 -86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0 -81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0 -76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0 -72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0 -67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0 -57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0 -52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0 -43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0 -33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0 -28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0 -24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0 -19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0 -14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0 -9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,14.42,0.00,1.00,0.00,0.00,0 --9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0 --14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0 --19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0 --24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0 --28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0 --33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0 --38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0 --43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0 --48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0 --52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0 --57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0 --62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0 --67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0 --72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0 --76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0 --81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0 --86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0 --91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0 --96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0 --100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0 --105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0 --110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0 --115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0 --120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0 --124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0 --129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0 --134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0 --139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0 --144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0 --148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0 --153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0 --158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0 --163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0 --168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0 --172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0 -177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0 -172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0 -168.00,0.00,15.25,0.00,1.00,4.80,0.00,0 -163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0 -158.40,0.00,15.30,0.00,1.00,9.60,0.00,0 -153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0 -148.80,0.00,15.34,0.00,1.00,19.20,0.00,0 -144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0 -139.20,0.00,15.38,0.00,1.00,28.80,0.00,0 -134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0 -129.60,0.00,15.42,0.00,1.00,33.60,0.00,0 -124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0 -120.00,0.00,15.47,0.00,1.00,43.20,0.00,0 -115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0 -110.40,0.00,15.51,0.00,1.00,57.60,0.00,0 -105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0 -100.80,0.00,15.55,0.00,1.00,67.20,0.00,0 -96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0 -91.20,0.00,15.59,0.00,1.00,81.60,0.00,0 -86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0 -81.60,0.00,15.64,0.00,1.00,96.00,0.00,0 -76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0 -72.00,0.00,15.68,0.00,1.00,110.40,0.00,0 -67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0 -62.40,0.00,15.72,0.00,1.00,120.00,0.00,0 -57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0 -52.80,0.00,15.77,0.00,1.00,134.40,0.00,0 -48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0 -43.20,0.00,15.81,0.00,1.00,144.00,0.00,0 -38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0 -33.60,0.00,15.85,0.00,1.00,153.60,0.00,0 -28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0 -24.00,0.00,15.89,0.00,1.00,158.40,0.00,0 -19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0 -14.40,0.00,15.94,0.00,1.00,168.00,0.00,0 -9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0 -4.80,0.00,15.98,0.00,1.00,172.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 diff --git a/scripts/testv/stvOMASA_2ISM_2MASA2TC16c.met b/scripts/testv/stvOMASA_2ISM_2MASA2TC16c.met deleted file mode 100644 index 1b62022af572fc4f198e4212cca88d51913ec3c4..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_2MASA2TC16c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2eb412d646d7a32c77413dea54dc44cf45dc49e6d8c2de19abe4f4b93a91fa4a -size 159900 diff --git a/scripts/testv/stvOMASA_2ISM_2MASA2TC16c.wav b/scripts/testv/stvOMASA_2ISM_2MASA2TC16c.wav deleted file mode 100644 index aa03f733ec8392a7d42f49de77995d51b250fe42..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_2MASA2TC16c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a73c8201153b5a39b51cd65c7994013bf33da9d2729fdc021e7e0256b0e979c3 -size 384080 diff --git a/scripts/testv/stvOMASA_2ISM_2MASA2TC16c_ISM1.csv b/scripts/testv/stvOMASA_2ISM_2MASA2TC16c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_2MASA2TC16c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_2ISM_2MASA2TC16c_ISM2.csv b/scripts/testv/stvOMASA_2ISM_2MASA2TC16c_ISM2.csv deleted file mode 100644 index f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_2MASA2TC16c_ISM2.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,4.80,16.00,0.00,1.00,0.00,0.00,0 -0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0 -0.00,14.40,15.96,0.00,1.00,4.80,9.60,0 -0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0 -0.00,24.00,15.91,0.00,1.00,14.40,19.20,0 -0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0 -0.00,33.60,15.87,0.00,1.00,19.20,28.80,0 -0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0 -0.00,43.20,15.83,0.00,1.00,28.80,38.40,0 -0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0 -0.00,52.80,15.79,0.00,1.00,38.40,48.00,0 -0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0 -0.00,62.40,15.74,0.00,1.00,48.00,57.60,0 -4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0 -4.80,72.00,15.70,0.00,1.00,57.60,67.20,0 -4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0 -9.60,81.60,15.66,0.00,1.00,72.00,76.80,0 -19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0 -134.40,86.40,15.62,0.00,1.00,86.40,86.40,0 -168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0 -172.80,76.80,15.57,0.00,1.00,100.80,86.40,0 -177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0 -177.60,67.20,15.53,0.00,1.00,110.40,76.80,0 -177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0 -177.60,57.60,15.49,0.00,1.00,124.80,67.20,0 -177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0 -177.60,48.00,15.44,0.00,1.00,134.40,57.60,0 -177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0 -177.60,38.40,15.40,0.00,1.00,144.00,48.00,0 -177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0 -177.60,28.80,15.36,0.00,1.00,153.60,38.40,0 -177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0 -177.60,19.20,15.32,0.00,1.00,158.40,28.80,0 -177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0 -177.60,9.60,15.27,0.00,1.00,168.00,19.20,0 -177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0 -177.60,0.00,15.23,0.00,1.00,172.80,9.60,0 --177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0 --177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0 --177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0 --177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0 --177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0 --177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0 --177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0 --177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0 --177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0 --177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0 --177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0 --177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0 --177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0 --177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0 --177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0 --177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0 --172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0 --168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0 --134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0 --19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0 --9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0 --4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0 --4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0 --4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0 --0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0 --0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0 --0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0 --0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0 --0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0 --0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0 --0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0 --0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0 --0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0 --0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0 --0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0 --0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0 --0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0 --0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,14.40,0.00,1.00,0.00,0.00,0 --0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0 --0.00,14.40,14.36,0.00,1.00,9.60,9.60,0 --0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0 --0.00,24.00,14.31,0.00,1.00,14.40,19.20,0 --0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0 --0.00,33.60,14.27,0.00,1.00,24.00,28.80,0 --4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0 --4.80,43.20,14.23,0.00,1.00,28.80,38.40,0 --4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0 --4.80,52.80,14.18,0.00,1.00,38.40,48.00,0 --4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0 --4.80,62.40,14.14,0.00,1.00,48.00,57.60,0 --9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0 --9.60,72.00,14.10,0.00,1.00,62.40,67.20,0 --14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0 --24.00,81.60,14.06,0.00,1.00,72.00,76.80,0 --43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0 --110.40,86.40,14.01,0.00,1.00,86.40,86.40,0 --148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0 --163.20,76.80,13.97,0.00,1.00,96.00,81.60,0 --168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0 --172.80,67.20,13.93,0.00,1.00,110.40,72.00,0 --172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0 --172.80,57.60,13.89,0.00,1.00,120.00,62.40,0 --172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0 --177.60,48.00,13.84,0.00,1.00,134.40,52.80,0 --177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0 --177.60,38.40,13.80,0.00,1.00,144.00,43.20,0 --177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0 --177.60,28.80,13.76,0.00,1.00,148.80,33.60,0 --177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0 --177.60,19.20,13.71,0.00,1.00,158.40,24.00,0 --177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0 --177.60,9.60,13.67,0.00,1.00,168.00,14.40,0 --177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0 --177.60,0.00,13.63,0.00,1.00,172.80,4.80,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0 -177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0 -177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0 -177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0 -177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0 -177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0 -177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0 -172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0 -172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0 -172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0 -172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0 -168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0 -163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0 -148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0 -110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0 -43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0 -24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0 -14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0 -9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0 -9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0 -4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0 -4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0 -4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0 -4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0 -4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0 -0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0 -0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0 -0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0 -0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0 -0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,12.80,0.00,1.00,0.00,0.00,0 --0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0 --0.00,14.40,12.75,0.00,1.00,9.60,9.60,0 --4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0 --4.80,24.00,12.71,0.00,1.00,14.40,19.20,0 --4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0 --4.80,33.60,12.67,0.00,1.00,24.00,28.80,0 --4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0 --9.60,43.20,12.62,0.00,1.00,33.60,38.40,0 --9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0 --9.60,52.80,12.58,0.00,1.00,43.20,48.00,0 --14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0 --14.40,62.40,12.54,0.00,1.00,52.80,57.60,0 --19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0 --24.00,72.00,12.50,0.00,1.00,62.40,67.20,0 --33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0 --43.20,76.80,12.45,0.00,1.00,72.00,72.00,0 --67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0 --96.00,81.60,12.41,0.00,1.00,86.40,81.60,0 --124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0 --144.00,76.80,12.37,0.00,1.00,96.00,76.80,0 --153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0 --158.40,67.20,12.33,0.00,1.00,110.40,72.00,0 --163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0 --168.00,57.60,12.28,0.00,1.00,120.00,62.40,0 --168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0 --168.00,48.00,12.24,0.00,1.00,129.60,52.80,0 --172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0 --172.80,38.40,12.20,0.00,1.00,139.20,43.20,0 --172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0 --172.80,28.80,12.15,0.00,1.00,148.80,33.60,0 --177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0 --177.60,19.20,12.11,0.00,1.00,158.40,24.00,0 --177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0 --177.60,9.60,12.07,0.00,1.00,168.00,14.40,0 --177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0 --177.60,0.00,12.03,0.00,1.00,172.80,4.80,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0 -177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0 -172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0 -172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0 -168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0 -168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0 -168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0 -163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0 -158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0 -153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0 -144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0 -124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0 -96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0 -67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0 -43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0 -33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0 -24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0 -19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0 -14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0 -14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0 -9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0 -9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0 -9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0 -4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0 -4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0 -0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,11.19,0.00,1.00,0.00,0.00,0 --0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0 --4.80,14.40,11.15,0.00,1.00,9.60,9.60,0 --4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0 --4.80,24.00,11.11,0.00,1.00,14.40,19.20,0 --4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0 --9.60,33.60,11.07,0.00,1.00,24.00,28.80,0 --9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0 --14.40,43.20,11.02,0.00,1.00,33.60,38.40,0 --14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0 --14.40,52.80,10.98,0.00,1.00,43.20,48.00,0 --19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0 --24.00,57.60,10.94,0.00,1.00,52.80,52.80,0 --28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0 --33.60,67.20,10.89,0.00,1.00,62.40,62.40,0 --43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0 --57.60,72.00,10.85,0.00,1.00,76.80,72.00,0 --76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0 --96.00,76.80,10.81,0.00,1.00,86.40,76.80,0 --115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0 --129.60,72.00,10.77,0.00,1.00,96.00,76.80,0 --139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0 --148.80,67.20,10.72,0.00,1.00,105.60,67.20,0 --153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0 --158.40,57.60,10.68,0.00,1.00,120.00,62.40,0 --163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0 --163.20,48.00,10.64,0.00,1.00,129.60,52.80,0 --168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0 --168.00,38.40,10.60,0.00,1.00,139.20,43.20,0 --172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0 --172.80,28.80,10.55,0.00,1.00,148.80,33.60,0 --172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0 --172.80,19.20,10.51,0.00,1.00,158.40,24.00,0 --177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0 --177.60,9.60,10.47,0.00,1.00,163.20,14.40,0 --177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0 --177.60,0.00,10.42,0.00,1.00,172.80,4.80,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0 -168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0 -168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0 -163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0 -163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0 -158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0 -153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0 -148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0 -139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0 -129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0 -115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0 -96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0 -76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0 -57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0 -43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0 -33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0 -28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0 -24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0 -19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0 -14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0 -14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0 -14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0 -9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0 -9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0 -4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0 -4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0 -0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,9.59,0.00,1.00,0.00,0.00,0 --4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0 --4.80,14.40,9.55,0.00,1.00,9.60,9.60,0 --4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0 --9.60,24.00,9.51,0.00,1.00,19.20,19.20,0 --9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0 --9.60,33.60,9.46,0.00,1.00,24.00,28.80,0 --14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0 --14.40,38.40,9.42,0.00,1.00,33.60,33.60,0 --19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0 --24.00,48.00,9.38,0.00,1.00,43.20,43.20,0 --24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0 --28.80,57.60,9.34,0.00,1.00,52.80,52.80,0 --38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0 --43.20,62.40,9.29,0.00,1.00,67.20,62.40,0 --52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0 --62.40,72.00,9.25,0.00,1.00,76.80,67.20,0 --76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0 --96.00,72.00,9.21,0.00,1.00,86.40,72.00,0 --110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0 --120.00,67.20,9.16,0.00,1.00,96.00,72.00,0 --134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0 --139.20,62.40,9.12,0.00,1.00,105.60,67.20,0 --148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0 --153.60,57.60,9.08,0.00,1.00,115.20,57.60,0 --158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0 --158.40,48.00,9.04,0.00,1.00,129.60,52.80,0 --163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0 --163.20,38.40,8.99,0.00,1.00,139.20,43.20,0 --168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0 --168.00,28.80,8.95,0.00,1.00,148.80,33.60,0 --172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0 --172.80,19.20,8.91,0.00,1.00,153.60,24.00,0 --172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0 --177.60,9.60,8.87,0.00,1.00,163.20,14.40,0 --177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0 --177.60,0.00,8.82,0.00,1.00,172.80,4.80,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0 -168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0 -163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0 -163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0 -158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0 -158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0 -153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0 -148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0 -139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0 -134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0 -120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0 -110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0 -96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0 -76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0 -62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0 -52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0 -43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0 -38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0 -28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0 -24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0 -24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0 -19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0 -14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0 -14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0 -9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0 -9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0 -9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0 -0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,7.99,0.00,1.00,0.00,0.00,0 --4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0 --4.80,14.40,7.95,0.00,1.00,9.60,9.60,0 --9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0 --9.60,24.00,7.90,0.00,1.00,19.20,19.20,0 --14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0 --14.40,28.80,7.86,0.00,1.00,28.80,24.00,0 --19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0 --19.20,38.40,7.82,0.00,1.00,38.40,33.60,0 --24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0 --28.80,48.00,7.78,0.00,1.00,48.00,43.20,0 --33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0 --38.40,52.80,7.73,0.00,1.00,57.60,52.80,0 --43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0 --48.00,62.40,7.69,0.00,1.00,67.20,57.60,0 --57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0 --67.20,67.20,7.65,0.00,1.00,76.80,62.40,0 --81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0 --91.20,67.20,7.60,0.00,1.00,86.40,67.20,0 --105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0 --115.20,67.20,7.56,0.00,1.00,96.00,67.20,0 --124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0 --134.40,57.60,7.52,0.00,1.00,105.60,62.40,0 --139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0 --144.00,52.80,7.48,0.00,1.00,115.20,57.60,0 --148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0 --153.60,43.20,7.43,0.00,1.00,124.80,48.00,0 --158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0 --163.20,38.40,7.39,0.00,1.00,134.40,38.40,0 --163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0 --168.00,28.80,7.35,0.00,1.00,144.00,33.60,0 --168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0 --172.80,19.20,7.31,0.00,1.00,153.60,24.00,0 --172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0 --177.60,9.60,7.26,0.00,1.00,163.20,14.40,0 --177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0 --177.60,0.00,7.22,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0 -163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0 -158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0 -153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0 -148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0 -144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0 -139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0 -134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0 -124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0 -115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0 -105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0 -91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0 -81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0 -67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0 -57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0 -48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0 -43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0 -38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0 -33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0 -28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0 -24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0 -19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0 -19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0 -14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0 -9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0 -0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,6.39,0.00,1.00,0.00,0.00,0 --4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0 --4.80,14.40,6.34,0.00,1.00,9.60,9.60,0 --9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0 --9.60,19.20,6.30,0.00,1.00,19.20,14.40,0 --14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0 --19.20,28.80,6.26,0.00,1.00,28.80,24.00,0 --19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0 --24.00,38.40,6.22,0.00,1.00,38.40,33.60,0 --28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0 --33.60,43.20,6.17,0.00,1.00,48.00,38.40,0 --38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0 --43.20,52.80,6.13,0.00,1.00,57.60,48.00,0 --48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0 --52.80,57.60,6.09,0.00,1.00,67.20,52.80,0 --62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0 --72.00,62.40,6.05,0.00,1.00,76.80,57.60,0 --81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0 --91.20,62.40,6.00,0.00,1.00,86.40,62.40,0 --100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0 --110.40,62.40,5.96,0.00,1.00,96.00,62.40,0 --120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0 --129.60,57.60,5.92,0.00,1.00,105.60,57.60,0 --134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0 --139.20,48.00,5.87,0.00,1.00,115.20,52.80,0 --144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0 --148.80,43.20,5.83,0.00,1.00,124.80,48.00,0 --153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0 --158.40,33.60,5.79,0.00,1.00,134.40,38.40,0 --163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0 --163.20,28.80,5.75,0.00,1.00,144.00,28.80,0 --168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0 --168.00,19.20,5.70,0.00,1.00,153.60,24.00,0 --172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0 --172.80,9.60,5.66,0.00,1.00,163.20,14.40,0 --177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0 --177.60,0.00,5.62,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0 -163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0 -158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0 -148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0 -144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0 -139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0 -134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0 -129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0 -120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0 -110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0 -100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0 -91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0 -81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0 -72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0 -62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0 -52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0 -48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0 -43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0 -38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0 -33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0 -28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0 -24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0 -19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0 -19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0 -9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0 -4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0 -0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,4.79,0.00,1.00,0.00,0.00,0 --4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0 --9.60,14.40,4.74,0.00,1.00,9.60,9.60,0 --9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0 --14.40,19.20,4.70,0.00,1.00,19.20,14.40,0 --14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0 --19.20,28.80,4.66,0.00,1.00,28.80,24.00,0 --24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0 --28.80,33.60,4.61,0.00,1.00,38.40,28.80,0 --28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0 --33.60,43.20,4.57,0.00,1.00,48.00,38.40,0 --38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0 --48.00,48.00,4.53,0.00,1.00,57.60,43.20,0 --52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0 --57.60,52.80,4.49,0.00,1.00,67.20,48.00,0 --67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0 --76.80,57.60,4.44,0.00,1.00,76.80,52.80,0 --81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0 --91.20,57.60,4.40,0.00,1.00,86.40,57.60,0 --100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0 --110.40,57.60,4.36,0.00,1.00,96.00,57.60,0 --115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0 --124.80,52.80,4.32,0.00,1.00,105.60,52.80,0 --129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0 --139.20,48.00,4.27,0.00,1.00,115.20,48.00,0 --144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0 --148.80,38.40,4.23,0.00,1.00,124.80,43.20,0 --153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0 --153.60,33.60,4.19,0.00,1.00,134.40,38.40,0 --158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0 --163.20,24.00,4.14,0.00,1.00,144.00,28.80,0 --163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0 --168.00,19.20,4.10,0.00,1.00,153.60,24.00,0 --172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0 --172.80,9.60,4.06,0.00,1.00,163.20,14.40,0 --177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0 --177.60,0.00,4.02,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0 -163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0 -163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0 -158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0 -148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0 -144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0 -139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0 -129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0 -124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0 -115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0 -110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0 -100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0 -91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0 -81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0 -76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0 -67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0 -57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0 -52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0 -48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0 -38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0 -33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0 -28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0 -28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0 -24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0 -19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0 -14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0 -14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0 -9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0 -0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.18,0.00,1.00,0.00,0.00,0 --4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0 --9.60,9.60,3.14,0.00,1.00,9.60,9.60,0 --9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0 --14.40,19.20,3.10,0.00,1.00,19.20,14.40,0 --19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0 --24.00,24.00,3.05,0.00,1.00,28.80,24.00,0 --24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0 --28.80,33.60,3.01,0.00,1.00,38.40,28.80,0 --33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0 --38.40,38.40,2.97,0.00,1.00,48.00,33.60,0 --43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0 --48.00,43.20,2.93,0.00,1.00,57.60,43.20,0 --52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0 --62.40,48.00,2.88,0.00,1.00,67.20,48.00,0 --67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0 --76.80,52.80,2.84,0.00,1.00,76.80,48.00,0 --86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0 --91.20,52.80,2.80,0.00,1.00,86.40,52.80,0 --100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0 --105.60,52.80,2.76,0.00,1.00,96.00,52.80,0 --115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0 --120.00,48.00,2.71,0.00,1.00,105.60,48.00,0 --129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0 --134.40,43.20,2.67,0.00,1.00,115.20,43.20,0 --139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0 --144.00,38.40,2.63,0.00,1.00,124.80,38.40,0 --148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0 --153.60,33.60,2.58,0.00,1.00,134.40,33.60,0 --158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0 --158.40,24.00,2.54,0.00,1.00,144.00,28.80,0 --163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0 --168.00,19.20,2.50,0.00,1.00,153.60,19.20,0 --168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.46,0.00,1.00,163.20,14.40,0 --177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.41,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0 -158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0 -148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0 -144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0 -139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0 -134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0 -129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0 -120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0 -115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0 -105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0 -100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0 -91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0 -86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0 -76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0 -67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0 -62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0 -52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0 -48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0 -43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0 -38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0 -33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0 -28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0 -24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0 -24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0 -19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0 -0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.58,0.00,1.00,0.00,0.00,0 --4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.54,0.00,1.00,9.60,4.80,0 --14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0 --14.40,19.20,1.50,0.00,1.00,19.20,14.40,0 --19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0 --24.00,24.00,1.45,0.00,1.00,28.80,19.20,0 --28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0 --33.60,28.80,1.41,0.00,1.00,38.40,28.80,0 --38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0 --43.20,38.40,1.37,0.00,1.00,48.00,33.60,0 --48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0 --52.80,43.20,1.32,0.00,1.00,57.60,38.40,0 --57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0 --62.40,43.20,1.28,0.00,1.00,67.20,43.20,0 --72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0 --76.80,48.00,1.24,0.00,1.00,76.80,43.20,0 --86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0 --91.20,48.00,1.20,0.00,1.00,86.40,48.00,0 --100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0 --105.60,48.00,1.15,0.00,1.00,96.00,48.00,0 --110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0 --120.00,43.20,1.11,0.00,1.00,105.60,43.20,0 --124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0 --129.60,38.40,1.07,0.00,1.00,115.20,43.20,0 --134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0 --139.20,33.60,1.03,0.00,1.00,124.80,38.40,0 --144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0 --148.80,28.80,0.98,0.00,1.00,134.40,33.60,0 --153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0 --158.40,24.00,0.94,0.00,1.00,144.00,24.00,0 --163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0 --163.20,14.40,0.90,0.00,1.00,153.60,19.20,0 --168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.85,0.00,1.00,163.20,14.40,0 --172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.81,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0 -148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0 -144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0 -139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0 -134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0 -129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0 -124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0 -120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0 -110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0 -105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0 -100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0 -91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0 -86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0 -76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0 -72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0 -62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0 -57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0 -52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0 -48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0 -43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0 -38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0 -28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0 -19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0 -0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,0.00,0.00,1.00,0.00,0.00,0 --4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0 --9.60,9.60,0.04,0.00,1.00,9.60,4.80,0 --14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0 --19.20,14.40,0.09,0.00,1.00,19.20,14.40,0 --24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0 --24.00,24.00,0.13,0.00,1.00,28.80,19.20,0 --28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0 --33.60,28.80,0.17,0.00,1.00,38.40,24.00,0 --38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0 --43.20,33.60,0.21,0.00,1.00,48.00,28.80,0 --48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0 --52.80,38.40,0.26,0.00,1.00,57.60,33.60,0 --62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0 --67.20,38.40,0.30,0.00,1.00,67.20,38.40,0 --72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0 --76.80,43.20,0.34,0.00,1.00,76.80,38.40,0 --86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0 --91.20,43.20,0.38,0.00,1.00,86.40,43.20,0 --96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0 --105.60,43.20,0.43,0.00,1.00,96.00,43.20,0 --110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0 --115.20,38.40,0.47,0.00,1.00,105.60,38.40,0 --124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0 --129.60,38.40,0.51,0.00,1.00,115.20,38.40,0 --134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0 --139.20,33.60,0.56,0.00,1.00,124.80,33.60,0 --144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0 --148.80,28.80,0.60,0.00,1.00,134.40,28.80,0 --153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0 --158.40,19.20,0.64,0.00,1.00,144.00,24.00,0 --158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0 --163.20,14.40,0.68,0.00,1.00,153.60,19.20,0 --168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.73,0.00,1.00,163.20,9.60,0 --172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.77,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0 -158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0 -158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0 -148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0 -144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0 -139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0 -134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0 -129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0 -124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0 -115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0 -110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0 -105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0 -96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0 -91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0 -86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0 -76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0 -72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0 -67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0 -62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0 -52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0 -48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0 -43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0 -38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0 -28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0 -19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0 -0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.60,0.00,1.00,0.00,0.00,0 --9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.64,0.00,1.00,9.60,4.80,0 --14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0 --19.20,14.40,1.69,0.00,1.00,19.20,9.60,0 --24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0 --28.80,19.20,1.73,0.00,1.00,28.80,19.20,0 --33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0 --38.40,24.00,1.77,0.00,1.00,38.40,24.00,0 --43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0 --48.00,28.80,1.82,0.00,1.00,48.00,28.80,0 --52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0 --57.60,33.60,1.86,0.00,1.00,57.60,28.80,0 --62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0 --67.20,38.40,1.90,0.00,1.00,67.20,33.60,0 --72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0 --81.60,38.40,1.94,0.00,1.00,76.80,38.40,0 --86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0 --91.20,38.40,1.99,0.00,1.00,86.40,38.40,0 --96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0 --105.60,38.40,2.03,0.00,1.00,96.00,38.40,0 --110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0 --115.20,33.60,2.07,0.00,1.00,105.60,33.60,0 --120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0 --124.80,33.60,2.11,0.00,1.00,115.20,33.60,0 --129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0 --134.40,28.80,2.16,0.00,1.00,124.80,28.80,0 --139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0 --144.00,24.00,2.20,0.00,1.00,134.40,24.00,0 --148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0 --153.60,19.20,2.24,0.00,1.00,144.00,19.20,0 --158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0 --163.20,14.40,2.29,0.00,1.00,153.60,14.40,0 --168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.33,0.00,1.00,163.20,9.60,0 --172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.37,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0 -153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0 -144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0 -134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0 -124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0 -120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0 -115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0 -110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0 -105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0 -96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0 -91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0 -86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0 -81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0 -72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0 -67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0 -62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0 -57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0 -52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0 -48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0 -43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0 -38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0 -33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0 -28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0 -14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.20,0.00,1.00,0.00,0.00,0 --9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0 --14.40,9.60,3.25,0.00,1.00,9.60,4.80,0 --14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0 --19.20,14.40,3.29,0.00,1.00,19.20,9.60,0 --24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0 --28.80,19.20,3.33,0.00,1.00,28.80,14.40,0 --33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0 --38.40,24.00,3.38,0.00,1.00,38.40,19.20,0 --43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0 --48.00,24.00,3.42,0.00,1.00,48.00,24.00,0 --52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0 --57.60,28.80,3.46,0.00,1.00,57.60,28.80,0 --62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0 --67.20,33.60,3.50,0.00,1.00,67.20,28.80,0 --72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0 --81.60,33.60,3.55,0.00,1.00,76.80,33.60,0 --86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0 --91.20,33.60,3.59,0.00,1.00,86.40,33.60,0 --96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0 --100.80,33.60,3.63,0.00,1.00,96.00,33.60,0 --110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0 --115.20,33.60,3.67,0.00,1.00,105.60,28.80,0 --120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0 --124.80,28.80,3.72,0.00,1.00,115.20,28.80,0 --129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0 --134.40,24.00,3.76,0.00,1.00,124.80,24.00,0 --139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0 --144.00,19.20,3.80,0.00,1.00,134.40,24.00,0 --148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0 --153.60,14.40,3.85,0.00,1.00,144.00,19.20,0 --158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0 --163.20,9.60,3.89,0.00,1.00,153.60,14.40,0 --168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0 --168.00,4.80,3.93,0.00,1.00,163.20,9.60,0 --172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0 --177.60,0.00,3.97,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0 -124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0 -120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0 -115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0 -110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0 -100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0 -96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0 -91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0 -86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0 -81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0 -72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0 -67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0 -62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0 -57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0 -52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0 -48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0 -43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0 -38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0 -33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0 -28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0 -24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0 -14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0 -14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0 --4.80,0.00,4.81,0.00,1.00,0.00,0.00,0 --9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0 --14.40,4.80,4.85,0.00,1.00,9.60,4.80,0 --19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0 --19.20,9.60,4.89,0.00,1.00,19.20,9.60,0 --24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0 --28.80,14.40,4.93,0.00,1.00,28.80,14.40,0 --33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0 --38.40,19.20,4.98,0.00,1.00,38.40,14.40,0 --43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0 --48.00,24.00,5.02,0.00,1.00,48.00,19.20,0 --52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0 --57.60,24.00,5.06,0.00,1.00,57.60,24.00,0 --62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0 --72.00,28.80,5.11,0.00,1.00,67.20,24.00,0 --76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0 --81.60,28.80,5.15,0.00,1.00,76.80,28.80,0 --86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0 --91.20,28.80,5.19,0.00,1.00,86.40,28.80,0 --96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0 --100.80,28.80,5.23,0.00,1.00,96.00,28.80,0 --105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0 --115.20,28.80,5.28,0.00,1.00,105.60,28.80,0 --120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0 --124.80,24.00,5.32,0.00,1.00,115.20,24.00,0 --129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0 --134.40,24.00,5.36,0.00,1.00,124.80,24.00,0 --139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0 --144.00,19.20,5.40,0.00,1.00,134.40,19.20,0 --148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0 --153.60,14.40,5.45,0.00,1.00,144.00,14.40,0 --158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0 --163.20,9.60,5.49,0.00,1.00,153.60,9.60,0 --163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0 --168.00,4.80,5.53,0.00,1.00,163.20,9.60,0 --172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0 --177.60,0.00,5.58,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0 -163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0 -129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0 -124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0 -120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0 -115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0 -105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0 -100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0 -96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0 -91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0 -86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0 -81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0 -76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0 -72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0 -62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0 -57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0 -52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0 -48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0 -43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0 -38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0 -33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0 -28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0 -24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0 -19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0 -19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0 -0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,6.41,0.00,1.00,0.00,0.00,0 --9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0 --14.40,4.80,6.45,0.00,1.00,9.60,4.80,0 --19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0 --24.00,9.60,6.49,0.00,1.00,19.20,9.60,0 --28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0 --33.60,14.40,6.54,0.00,1.00,28.80,9.60,0 --33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0 --38.40,14.40,6.58,0.00,1.00,38.40,14.40,0 --43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0 --48.00,19.20,6.62,0.00,1.00,48.00,14.40,0 --57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0 --62.40,19.20,6.66,0.00,1.00,57.60,19.20,0 --67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0 --72.00,24.00,6.71,0.00,1.00,67.20,19.20,0 --76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0 --81.60,24.00,6.75,0.00,1.00,76.80,24.00,0 --86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0 --91.20,24.00,6.79,0.00,1.00,86.40,24.00,0 --96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0 --100.80,24.00,6.84,0.00,1.00,96.00,24.00,0 --105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0 --110.40,24.00,6.88,0.00,1.00,105.60,24.00,0 --115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0 --120.00,19.20,6.92,0.00,1.00,115.20,19.20,0 --129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0 --134.40,19.20,6.96,0.00,1.00,124.80,19.20,0 --139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0 --144.00,14.40,7.01,0.00,1.00,134.40,14.40,0 --148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0 --148.80,14.40,7.05,0.00,1.00,144.00,14.40,0 --153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0 --158.40,9.60,7.09,0.00,1.00,153.60,9.60,0 --163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0 --168.00,4.80,7.13,0.00,1.00,163.20,4.80,0 --172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0 --177.60,0.00,7.18,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0 -163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0 -158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0 -148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0 -144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0 -134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0 -129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0 -120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0 -115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0 -110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0 -105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0 -100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0 -96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0 -91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0 -86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0 -81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0 -76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0 -72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0 -67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0 -62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0 -57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0 -48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0 -43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0 -38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0 -33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0 -33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0 -28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0 -24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0 -19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0 -0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,8.01,0.00,1.00,0.00,0.00,0 --9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0 --14.40,4.80,8.05,0.00,1.00,9.60,4.80,0 --19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0 --24.00,9.60,8.10,0.00,1.00,19.20,4.80,0 --28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0 --33.60,9.60,8.14,0.00,1.00,24.00,9.60,0 --38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0 --43.20,14.40,8.18,0.00,1.00,33.60,9.60,0 --48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0 --52.80,14.40,8.22,0.00,1.00,43.20,14.40,0 --57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0 --62.40,19.20,8.27,0.00,1.00,52.80,14.40,0 --67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0 --72.00,19.20,8.31,0.00,1.00,62.40,14.40,0 --76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0 --81.60,19.20,8.35,0.00,1.00,76.80,19.20,0 --86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0 --91.20,19.20,8.40,0.00,1.00,86.40,19.20,0 --96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0 --100.80,19.20,8.44,0.00,1.00,96.00,19.20,0 --105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0 --110.40,19.20,8.48,0.00,1.00,105.60,19.20,0 --115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0 --120.00,14.40,8.52,0.00,1.00,120.00,14.40,0 --124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0 --129.60,14.40,8.57,0.00,1.00,129.60,14.40,0 --134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0 --139.20,14.40,8.61,0.00,1.00,139.20,14.40,0 --144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0 --148.80,9.60,8.65,0.00,1.00,148.80,9.60,0 --153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0 --158.40,4.80,8.69,0.00,1.00,158.40,9.60,0 --163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0 --168.00,4.80,8.74,0.00,1.00,163.20,4.80,0 --172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0 -148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0 -144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0 -139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0 -134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0 -129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0 -124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0 -120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0 -115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0 -110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0 -105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0 -100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0 -96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0 -91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0 -86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0 -81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0 -76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0 -72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0 -67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0 -62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0 -52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0 -48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0 -43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0 -38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0 -33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0 -28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0 -24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0 -19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0 -9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0 -0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,9.61,0.00,1.00,0.00,0.00,0 --9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0 --14.40,4.80,9.66,0.00,1.00,9.60,0.00,0 --19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0 --24.00,4.80,9.70,0.00,1.00,14.40,4.80,0 --28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0 --33.60,9.60,9.74,0.00,1.00,24.00,4.80,0 --38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0 --43.20,9.60,9.78,0.00,1.00,33.60,9.60,0 --48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0 --52.80,9.60,9.83,0.00,1.00,43.20,9.60,0 --57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0 --62.40,14.40,9.87,0.00,1.00,52.80,9.60,0 --67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0 --72.00,14.40,9.91,0.00,1.00,62.40,14.40,0 --76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0 --81.60,14.40,9.95,0.00,1.00,76.80,14.40,0 --86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0 --91.20,14.40,10.00,0.00,1.00,86.40,14.40,0 --96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0 --100.80,14.40,10.04,0.00,1.00,96.00,14.40,0 --105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0 --110.40,14.40,10.08,0.00,1.00,110.40,14.40,0 --115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0 --120.00,14.40,10.13,0.00,1.00,120.00,9.60,0 --124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0 --129.60,9.60,10.17,0.00,1.00,129.60,9.60,0 --134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0 --139.20,9.60,10.21,0.00,1.00,139.20,9.60,0 --144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0 --148.80,9.60,10.25,0.00,1.00,148.80,9.60,0 --153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0 --158.40,4.80,10.30,0.00,1.00,158.40,4.80,0 --163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0 --168.00,4.80,10.34,0.00,1.00,168.00,4.80,0 --172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0 -148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0 -144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0 -139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0 -134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0 -129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0 -124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0 -120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0 -115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0 -110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0 -105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0 -100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0 -96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0 -91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0 -86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0 -81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0 -76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0 -72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0 -67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0 -62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0 -48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0 -43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0 -38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0 -33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0 -28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0 -24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0 -19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0 -14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,11.21,0.00,1.00,0.00,0.00,0 --9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0 --14.40,0.00,11.26,0.00,1.00,9.60,0.00,0 --19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0 --24.00,4.80,11.30,0.00,1.00,14.40,4.80,0 --28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0 --33.60,4.80,11.34,0.00,1.00,24.00,4.80,0 --38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0 --43.20,4.80,11.39,0.00,1.00,33.60,4.80,0 --48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0 --52.80,9.60,11.43,0.00,1.00,43.20,4.80,0 --57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0 --62.40,9.60,11.47,0.00,1.00,52.80,4.80,0 --67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0 --72.00,9.60,11.51,0.00,1.00,62.40,9.60,0 --76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0 --81.60,9.60,11.56,0.00,1.00,72.00,9.60,0 --86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0 --91.20,9.60,11.60,0.00,1.00,86.40,9.60,0 --96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0 --100.80,9.60,11.64,0.00,1.00,96.00,9.60,0 --105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0 --110.40,9.60,11.68,0.00,1.00,110.40,9.60,0 --115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0 --120.00,9.60,11.73,0.00,1.00,120.00,9.60,0 --124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0 --129.60,9.60,11.77,0.00,1.00,129.60,4.80,0 --134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0 --139.20,4.80,11.81,0.00,1.00,139.20,4.80,0 --144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0 --148.80,4.80,11.86,0.00,1.00,148.80,4.80,0 --153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0 --158.40,4.80,11.90,0.00,1.00,158.40,4.80,0 --163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0 --168.00,0.00,11.94,0.00,1.00,168.00,4.80,0 --172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0 -158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0 -148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0 -144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0 -139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0 -134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0 -129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0 -124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0 -120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0 -115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0 -110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0 -105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0 -100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0 -96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0 -91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0 -86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0 -81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0 -76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0 -72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0 -67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0 -62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0 -57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0 -43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0 -33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0 -28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0 -24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0 -19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,12.82,0.00,1.00,0.00,0.00,0 --9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0 --14.40,0.00,12.86,0.00,1.00,9.60,0.00,0 --19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0 --24.00,0.00,12.90,0.00,1.00,14.40,0.00,0 --28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0 --33.60,4.80,12.95,0.00,1.00,24.00,0.00,0 --38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0 --43.20,4.80,12.99,0.00,1.00,28.80,0.00,0 --48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0 --52.80,4.80,13.03,0.00,1.00,38.40,4.80,0 --57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0 --62.40,4.80,13.07,0.00,1.00,48.00,4.80,0 --67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0 --72.00,4.80,13.12,0.00,1.00,62.40,4.80,0 --76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0 --81.60,4.80,13.16,0.00,1.00,72.00,4.80,0 --86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0 --91.20,4.80,13.20,0.00,1.00,86.40,4.80,0 --96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0 --100.80,4.80,13.24,0.00,1.00,96.00,4.80,0 --105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0 --110.40,4.80,13.29,0.00,1.00,110.40,4.80,0 --115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0 --120.00,4.80,13.33,0.00,1.00,120.00,4.80,0 --124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0 --129.60,4.80,13.37,0.00,1.00,134.40,4.80,0 --134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0 --139.20,4.80,13.42,0.00,1.00,144.00,4.80,0 --144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0 --148.80,4.80,13.46,0.00,1.00,153.60,0.00,0 --153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0 --158.40,0.00,13.50,0.00,1.00,158.40,0.00,0 --163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0 --168.00,0.00,13.54,0.00,1.00,168.00,0.00,0 --172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0 -163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0 -158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0 -153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0 -148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0 -144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0 -139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0 -134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0 -129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0 -124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0 -120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0 -115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0 -110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0 -105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0 -100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0 -96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0 -91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0 -86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0 -81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0 -76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0 -72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0 -67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0 -57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0 -52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0 -43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0 -33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0 -28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0 -24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0 -19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0 -14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0 -9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,14.42,0.00,1.00,0.00,0.00,0 --9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0 --14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0 --19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0 --24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0 --28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0 --33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0 --38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0 --43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0 --48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0 --52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0 --57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0 --62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0 --67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0 --72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0 --76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0 --81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0 --86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0 --91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0 --96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0 --100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0 --105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0 --110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0 --115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0 --120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0 --124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0 --129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0 --134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0 --139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0 --144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0 --148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0 --153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0 --158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0 --163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0 --168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0 --172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0 -177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0 -172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0 -168.00,0.00,15.25,0.00,1.00,4.80,0.00,0 -163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0 -158.40,0.00,15.30,0.00,1.00,9.60,0.00,0 -153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0 -148.80,0.00,15.34,0.00,1.00,19.20,0.00,0 -144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0 -139.20,0.00,15.38,0.00,1.00,28.80,0.00,0 -134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0 -129.60,0.00,15.42,0.00,1.00,33.60,0.00,0 -124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0 -120.00,0.00,15.47,0.00,1.00,43.20,0.00,0 -115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0 -110.40,0.00,15.51,0.00,1.00,57.60,0.00,0 -105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0 -100.80,0.00,15.55,0.00,1.00,67.20,0.00,0 -96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0 -91.20,0.00,15.59,0.00,1.00,81.60,0.00,0 -86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0 -81.60,0.00,15.64,0.00,1.00,96.00,0.00,0 -76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0 -72.00,0.00,15.68,0.00,1.00,110.40,0.00,0 -67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0 -62.40,0.00,15.72,0.00,1.00,120.00,0.00,0 -57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0 -52.80,0.00,15.77,0.00,1.00,134.40,0.00,0 -48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0 -43.20,0.00,15.81,0.00,1.00,144.00,0.00,0 -38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0 -33.60,0.00,15.85,0.00,1.00,153.60,0.00,0 -28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0 -24.00,0.00,15.89,0.00,1.00,158.40,0.00,0 -19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0 -14.40,0.00,15.94,0.00,1.00,168.00,0.00,0 -9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0 -4.80,0.00,15.98,0.00,1.00,172.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 diff --git a/scripts/testv/stvOMASA_2ISM_2MASA2TC32c.met b/scripts/testv/stvOMASA_2ISM_2MASA2TC32c.met deleted file mode 100644 index 1b62022af572fc4f198e4212cca88d51913ec3c4..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_2MASA2TC32c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2eb412d646d7a32c77413dea54dc44cf45dc49e6d8c2de19abe4f4b93a91fa4a -size 159900 diff --git a/scripts/testv/stvOMASA_2ISM_2MASA2TC32c.wav b/scripts/testv/stvOMASA_2ISM_2MASA2TC32c.wav deleted file mode 100644 index 95e9dc0d2b86eb01bb34552d677dd0701f20a467..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_2MASA2TC32c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ccf509280a4d55f8ce373d84e831a025bf140e62ccbaa824cec70b7bf014a985 -size 768080 diff --git a/scripts/testv/stvOMASA_2ISM_2MASA2TC32c_ISM1.csv b/scripts/testv/stvOMASA_2ISM_2MASA2TC32c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_2MASA2TC32c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_2ISM_2MASA2TC32c_ISM2.csv b/scripts/testv/stvOMASA_2ISM_2MASA2TC32c_ISM2.csv deleted file mode 100644 index f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_2ISM_2MASA2TC32c_ISM2.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,4.80,16.00,0.00,1.00,0.00,0.00,0 -0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0 -0.00,14.40,15.96,0.00,1.00,4.80,9.60,0 -0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0 -0.00,24.00,15.91,0.00,1.00,14.40,19.20,0 -0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0 -0.00,33.60,15.87,0.00,1.00,19.20,28.80,0 -0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0 -0.00,43.20,15.83,0.00,1.00,28.80,38.40,0 -0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0 -0.00,52.80,15.79,0.00,1.00,38.40,48.00,0 -0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0 -0.00,62.40,15.74,0.00,1.00,48.00,57.60,0 -4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0 -4.80,72.00,15.70,0.00,1.00,57.60,67.20,0 -4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0 -9.60,81.60,15.66,0.00,1.00,72.00,76.80,0 -19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0 -134.40,86.40,15.62,0.00,1.00,86.40,86.40,0 -168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0 -172.80,76.80,15.57,0.00,1.00,100.80,86.40,0 -177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0 -177.60,67.20,15.53,0.00,1.00,110.40,76.80,0 -177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0 -177.60,57.60,15.49,0.00,1.00,124.80,67.20,0 -177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0 -177.60,48.00,15.44,0.00,1.00,134.40,57.60,0 -177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0 -177.60,38.40,15.40,0.00,1.00,144.00,48.00,0 -177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0 -177.60,28.80,15.36,0.00,1.00,153.60,38.40,0 -177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0 -177.60,19.20,15.32,0.00,1.00,158.40,28.80,0 -177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0 -177.60,9.60,15.27,0.00,1.00,168.00,19.20,0 -177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0 -177.60,0.00,15.23,0.00,1.00,172.80,9.60,0 --177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0 --177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0 --177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0 --177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0 --177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0 --177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0 --177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0 --177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0 --177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0 --177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0 --177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0 --177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0 --177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0 --177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0 --177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0 --177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0 --172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0 --168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0 --134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0 --19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0 --9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0 --4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0 --4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0 --4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0 --0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0 --0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0 --0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0 --0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0 --0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0 --0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0 --0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0 --0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0 --0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0 --0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0 --0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0 --0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0 --0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0 --0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,14.40,0.00,1.00,0.00,0.00,0 --0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0 --0.00,14.40,14.36,0.00,1.00,9.60,9.60,0 --0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0 --0.00,24.00,14.31,0.00,1.00,14.40,19.20,0 --0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0 --0.00,33.60,14.27,0.00,1.00,24.00,28.80,0 --4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0 --4.80,43.20,14.23,0.00,1.00,28.80,38.40,0 --4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0 --4.80,52.80,14.18,0.00,1.00,38.40,48.00,0 --4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0 --4.80,62.40,14.14,0.00,1.00,48.00,57.60,0 --9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0 --9.60,72.00,14.10,0.00,1.00,62.40,67.20,0 --14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0 --24.00,81.60,14.06,0.00,1.00,72.00,76.80,0 --43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0 --110.40,86.40,14.01,0.00,1.00,86.40,86.40,0 --148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0 --163.20,76.80,13.97,0.00,1.00,96.00,81.60,0 --168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0 --172.80,67.20,13.93,0.00,1.00,110.40,72.00,0 --172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0 --172.80,57.60,13.89,0.00,1.00,120.00,62.40,0 --172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0 --177.60,48.00,13.84,0.00,1.00,134.40,52.80,0 --177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0 --177.60,38.40,13.80,0.00,1.00,144.00,43.20,0 --177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0 --177.60,28.80,13.76,0.00,1.00,148.80,33.60,0 --177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0 --177.60,19.20,13.71,0.00,1.00,158.40,24.00,0 --177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0 --177.60,9.60,13.67,0.00,1.00,168.00,14.40,0 --177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0 --177.60,0.00,13.63,0.00,1.00,172.80,4.80,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0 -177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0 -177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0 -177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0 -177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0 -177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0 -177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0 -172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0 -172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0 -172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0 -172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0 -168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0 -163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0 -148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0 -110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0 -43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0 -24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0 -14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0 -9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0 -9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0 -4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0 -4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0 -4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0 -4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0 -4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0 -0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0 -0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0 -0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0 -0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0 -0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,12.80,0.00,1.00,0.00,0.00,0 --0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0 --0.00,14.40,12.75,0.00,1.00,9.60,9.60,0 --4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0 --4.80,24.00,12.71,0.00,1.00,14.40,19.20,0 --4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0 --4.80,33.60,12.67,0.00,1.00,24.00,28.80,0 --4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0 --9.60,43.20,12.62,0.00,1.00,33.60,38.40,0 --9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0 --9.60,52.80,12.58,0.00,1.00,43.20,48.00,0 --14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0 --14.40,62.40,12.54,0.00,1.00,52.80,57.60,0 --19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0 --24.00,72.00,12.50,0.00,1.00,62.40,67.20,0 --33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0 --43.20,76.80,12.45,0.00,1.00,72.00,72.00,0 --67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0 --96.00,81.60,12.41,0.00,1.00,86.40,81.60,0 --124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0 --144.00,76.80,12.37,0.00,1.00,96.00,76.80,0 --153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0 --158.40,67.20,12.33,0.00,1.00,110.40,72.00,0 --163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0 --168.00,57.60,12.28,0.00,1.00,120.00,62.40,0 --168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0 --168.00,48.00,12.24,0.00,1.00,129.60,52.80,0 --172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0 --172.80,38.40,12.20,0.00,1.00,139.20,43.20,0 --172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0 --172.80,28.80,12.15,0.00,1.00,148.80,33.60,0 --177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0 --177.60,19.20,12.11,0.00,1.00,158.40,24.00,0 --177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0 --177.60,9.60,12.07,0.00,1.00,168.00,14.40,0 --177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0 --177.60,0.00,12.03,0.00,1.00,172.80,4.80,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0 -177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0 -172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0 -172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0 -168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0 -168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0 -168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0 -163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0 -158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0 -153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0 -144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0 -124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0 -96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0 -67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0 -43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0 -33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0 -24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0 -19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0 -14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0 -14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0 -9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0 -9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0 -9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0 -4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0 -4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0 -0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,11.19,0.00,1.00,0.00,0.00,0 --0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0 --4.80,14.40,11.15,0.00,1.00,9.60,9.60,0 --4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0 --4.80,24.00,11.11,0.00,1.00,14.40,19.20,0 --4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0 --9.60,33.60,11.07,0.00,1.00,24.00,28.80,0 --9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0 --14.40,43.20,11.02,0.00,1.00,33.60,38.40,0 --14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0 --14.40,52.80,10.98,0.00,1.00,43.20,48.00,0 --19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0 --24.00,57.60,10.94,0.00,1.00,52.80,52.80,0 --28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0 --33.60,67.20,10.89,0.00,1.00,62.40,62.40,0 --43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0 --57.60,72.00,10.85,0.00,1.00,76.80,72.00,0 --76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0 --96.00,76.80,10.81,0.00,1.00,86.40,76.80,0 --115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0 --129.60,72.00,10.77,0.00,1.00,96.00,76.80,0 --139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0 --148.80,67.20,10.72,0.00,1.00,105.60,67.20,0 --153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0 --158.40,57.60,10.68,0.00,1.00,120.00,62.40,0 --163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0 --163.20,48.00,10.64,0.00,1.00,129.60,52.80,0 --168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0 --168.00,38.40,10.60,0.00,1.00,139.20,43.20,0 --172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0 --172.80,28.80,10.55,0.00,1.00,148.80,33.60,0 --172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0 --172.80,19.20,10.51,0.00,1.00,158.40,24.00,0 --177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0 --177.60,9.60,10.47,0.00,1.00,163.20,14.40,0 --177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0 --177.60,0.00,10.42,0.00,1.00,172.80,4.80,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0 -168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0 -168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0 -163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0 -163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0 -158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0 -153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0 -148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0 -139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0 -129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0 -115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0 -96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0 -76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0 -57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0 -43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0 -33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0 -28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0 -24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0 -19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0 -14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0 -14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0 -14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0 -9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0 -9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0 -4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0 -4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0 -0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,9.59,0.00,1.00,0.00,0.00,0 --4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0 --4.80,14.40,9.55,0.00,1.00,9.60,9.60,0 --4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0 --9.60,24.00,9.51,0.00,1.00,19.20,19.20,0 --9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0 --9.60,33.60,9.46,0.00,1.00,24.00,28.80,0 --14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0 --14.40,38.40,9.42,0.00,1.00,33.60,33.60,0 --19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0 --24.00,48.00,9.38,0.00,1.00,43.20,43.20,0 --24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0 --28.80,57.60,9.34,0.00,1.00,52.80,52.80,0 --38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0 --43.20,62.40,9.29,0.00,1.00,67.20,62.40,0 --52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0 --62.40,72.00,9.25,0.00,1.00,76.80,67.20,0 --76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0 --96.00,72.00,9.21,0.00,1.00,86.40,72.00,0 --110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0 --120.00,67.20,9.16,0.00,1.00,96.00,72.00,0 --134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0 --139.20,62.40,9.12,0.00,1.00,105.60,67.20,0 --148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0 --153.60,57.60,9.08,0.00,1.00,115.20,57.60,0 --158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0 --158.40,48.00,9.04,0.00,1.00,129.60,52.80,0 --163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0 --163.20,38.40,8.99,0.00,1.00,139.20,43.20,0 --168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0 --168.00,28.80,8.95,0.00,1.00,148.80,33.60,0 --172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0 --172.80,19.20,8.91,0.00,1.00,153.60,24.00,0 --172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0 --177.60,9.60,8.87,0.00,1.00,163.20,14.40,0 --177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0 --177.60,0.00,8.82,0.00,1.00,172.80,4.80,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0 -168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0 -163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0 -163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0 -158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0 -158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0 -153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0 -148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0 -139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0 -134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0 -120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0 -110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0 -96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0 -76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0 -62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0 -52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0 -43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0 -38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0 -28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0 -24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0 -24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0 -19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0 -14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0 -14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0 -9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0 -9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0 -9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0 -0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,7.99,0.00,1.00,0.00,0.00,0 --4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0 --4.80,14.40,7.95,0.00,1.00,9.60,9.60,0 --9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0 --9.60,24.00,7.90,0.00,1.00,19.20,19.20,0 --14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0 --14.40,28.80,7.86,0.00,1.00,28.80,24.00,0 --19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0 --19.20,38.40,7.82,0.00,1.00,38.40,33.60,0 --24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0 --28.80,48.00,7.78,0.00,1.00,48.00,43.20,0 --33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0 --38.40,52.80,7.73,0.00,1.00,57.60,52.80,0 --43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0 --48.00,62.40,7.69,0.00,1.00,67.20,57.60,0 --57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0 --67.20,67.20,7.65,0.00,1.00,76.80,62.40,0 --81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0 --91.20,67.20,7.60,0.00,1.00,86.40,67.20,0 --105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0 --115.20,67.20,7.56,0.00,1.00,96.00,67.20,0 --124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0 --134.40,57.60,7.52,0.00,1.00,105.60,62.40,0 --139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0 --144.00,52.80,7.48,0.00,1.00,115.20,57.60,0 --148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0 --153.60,43.20,7.43,0.00,1.00,124.80,48.00,0 --158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0 --163.20,38.40,7.39,0.00,1.00,134.40,38.40,0 --163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0 --168.00,28.80,7.35,0.00,1.00,144.00,33.60,0 --168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0 --172.80,19.20,7.31,0.00,1.00,153.60,24.00,0 --172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0 --177.60,9.60,7.26,0.00,1.00,163.20,14.40,0 --177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0 --177.60,0.00,7.22,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0 -163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0 -158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0 -153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0 -148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0 -144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0 -139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0 -134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0 -124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0 -115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0 -105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0 -91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0 -81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0 -67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0 -57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0 -48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0 -43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0 -38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0 -33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0 -28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0 -24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0 -19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0 -19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0 -14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0 -9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0 -0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,6.39,0.00,1.00,0.00,0.00,0 --4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0 --4.80,14.40,6.34,0.00,1.00,9.60,9.60,0 --9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0 --9.60,19.20,6.30,0.00,1.00,19.20,14.40,0 --14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0 --19.20,28.80,6.26,0.00,1.00,28.80,24.00,0 --19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0 --24.00,38.40,6.22,0.00,1.00,38.40,33.60,0 --28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0 --33.60,43.20,6.17,0.00,1.00,48.00,38.40,0 --38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0 --43.20,52.80,6.13,0.00,1.00,57.60,48.00,0 --48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0 --52.80,57.60,6.09,0.00,1.00,67.20,52.80,0 --62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0 --72.00,62.40,6.05,0.00,1.00,76.80,57.60,0 --81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0 --91.20,62.40,6.00,0.00,1.00,86.40,62.40,0 --100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0 --110.40,62.40,5.96,0.00,1.00,96.00,62.40,0 --120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0 --129.60,57.60,5.92,0.00,1.00,105.60,57.60,0 --134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0 --139.20,48.00,5.87,0.00,1.00,115.20,52.80,0 --144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0 --148.80,43.20,5.83,0.00,1.00,124.80,48.00,0 --153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0 --158.40,33.60,5.79,0.00,1.00,134.40,38.40,0 --163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0 --163.20,28.80,5.75,0.00,1.00,144.00,28.80,0 --168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0 --168.00,19.20,5.70,0.00,1.00,153.60,24.00,0 --172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0 --172.80,9.60,5.66,0.00,1.00,163.20,14.40,0 --177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0 --177.60,0.00,5.62,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0 -163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0 -158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0 -148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0 -144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0 -139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0 -134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0 -129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0 -120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0 -110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0 -100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0 -91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0 -81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0 -72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0 -62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0 -52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0 -48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0 -43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0 -38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0 -33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0 -28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0 -24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0 -19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0 -19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0 -9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0 -4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0 -0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,4.79,0.00,1.00,0.00,0.00,0 --4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0 --9.60,14.40,4.74,0.00,1.00,9.60,9.60,0 --9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0 --14.40,19.20,4.70,0.00,1.00,19.20,14.40,0 --14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0 --19.20,28.80,4.66,0.00,1.00,28.80,24.00,0 --24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0 --28.80,33.60,4.61,0.00,1.00,38.40,28.80,0 --28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0 --33.60,43.20,4.57,0.00,1.00,48.00,38.40,0 --38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0 --48.00,48.00,4.53,0.00,1.00,57.60,43.20,0 --52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0 --57.60,52.80,4.49,0.00,1.00,67.20,48.00,0 --67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0 --76.80,57.60,4.44,0.00,1.00,76.80,52.80,0 --81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0 --91.20,57.60,4.40,0.00,1.00,86.40,57.60,0 --100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0 --110.40,57.60,4.36,0.00,1.00,96.00,57.60,0 --115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0 --124.80,52.80,4.32,0.00,1.00,105.60,52.80,0 --129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0 --139.20,48.00,4.27,0.00,1.00,115.20,48.00,0 --144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0 --148.80,38.40,4.23,0.00,1.00,124.80,43.20,0 --153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0 --153.60,33.60,4.19,0.00,1.00,134.40,38.40,0 --158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0 --163.20,24.00,4.14,0.00,1.00,144.00,28.80,0 --163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0 --168.00,19.20,4.10,0.00,1.00,153.60,24.00,0 --172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0 --172.80,9.60,4.06,0.00,1.00,163.20,14.40,0 --177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0 --177.60,0.00,4.02,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0 -163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0 -163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0 -158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0 -148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0 -144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0 -139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0 -129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0 -124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0 -115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0 -110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0 -100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0 -91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0 -81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0 -76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0 -67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0 -57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0 -52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0 -48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0 -38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0 -33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0 -28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0 -28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0 -24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0 -19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0 -14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0 -14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0 -9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0 -0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.18,0.00,1.00,0.00,0.00,0 --4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0 --9.60,9.60,3.14,0.00,1.00,9.60,9.60,0 --9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0 --14.40,19.20,3.10,0.00,1.00,19.20,14.40,0 --19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0 --24.00,24.00,3.05,0.00,1.00,28.80,24.00,0 --24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0 --28.80,33.60,3.01,0.00,1.00,38.40,28.80,0 --33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0 --38.40,38.40,2.97,0.00,1.00,48.00,33.60,0 --43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0 --48.00,43.20,2.93,0.00,1.00,57.60,43.20,0 --52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0 --62.40,48.00,2.88,0.00,1.00,67.20,48.00,0 --67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0 --76.80,52.80,2.84,0.00,1.00,76.80,48.00,0 --86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0 --91.20,52.80,2.80,0.00,1.00,86.40,52.80,0 --100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0 --105.60,52.80,2.76,0.00,1.00,96.00,52.80,0 --115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0 --120.00,48.00,2.71,0.00,1.00,105.60,48.00,0 --129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0 --134.40,43.20,2.67,0.00,1.00,115.20,43.20,0 --139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0 --144.00,38.40,2.63,0.00,1.00,124.80,38.40,0 --148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0 --153.60,33.60,2.58,0.00,1.00,134.40,33.60,0 --158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0 --158.40,24.00,2.54,0.00,1.00,144.00,28.80,0 --163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0 --168.00,19.20,2.50,0.00,1.00,153.60,19.20,0 --168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.46,0.00,1.00,163.20,14.40,0 --177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.41,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0 -158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0 -148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0 -144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0 -139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0 -134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0 -129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0 -120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0 -115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0 -105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0 -100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0 -91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0 -86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0 -76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0 -67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0 -62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0 -52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0 -48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0 -43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0 -38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0 -33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0 -28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0 -24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0 -24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0 -19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0 -0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.58,0.00,1.00,0.00,0.00,0 --4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.54,0.00,1.00,9.60,4.80,0 --14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0 --14.40,19.20,1.50,0.00,1.00,19.20,14.40,0 --19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0 --24.00,24.00,1.45,0.00,1.00,28.80,19.20,0 --28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0 --33.60,28.80,1.41,0.00,1.00,38.40,28.80,0 --38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0 --43.20,38.40,1.37,0.00,1.00,48.00,33.60,0 --48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0 --52.80,43.20,1.32,0.00,1.00,57.60,38.40,0 --57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0 --62.40,43.20,1.28,0.00,1.00,67.20,43.20,0 --72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0 --76.80,48.00,1.24,0.00,1.00,76.80,43.20,0 --86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0 --91.20,48.00,1.20,0.00,1.00,86.40,48.00,0 --100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0 --105.60,48.00,1.15,0.00,1.00,96.00,48.00,0 --110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0 --120.00,43.20,1.11,0.00,1.00,105.60,43.20,0 --124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0 --129.60,38.40,1.07,0.00,1.00,115.20,43.20,0 --134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0 --139.20,33.60,1.03,0.00,1.00,124.80,38.40,0 --144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0 --148.80,28.80,0.98,0.00,1.00,134.40,33.60,0 --153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0 --158.40,24.00,0.94,0.00,1.00,144.00,24.00,0 --163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0 --163.20,14.40,0.90,0.00,1.00,153.60,19.20,0 --168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.85,0.00,1.00,163.20,14.40,0 --172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.81,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0 -148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0 -144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0 -139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0 -134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0 -129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0 -124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0 -120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0 -110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0 -105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0 -100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0 -91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0 -86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0 -76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0 -72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0 -62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0 -57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0 -52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0 -48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0 -43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0 -38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0 -28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0 -19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0 -0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,0.00,0.00,1.00,0.00,0.00,0 --4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0 --9.60,9.60,0.04,0.00,1.00,9.60,4.80,0 --14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0 --19.20,14.40,0.09,0.00,1.00,19.20,14.40,0 --24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0 --24.00,24.00,0.13,0.00,1.00,28.80,19.20,0 --28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0 --33.60,28.80,0.17,0.00,1.00,38.40,24.00,0 --38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0 --43.20,33.60,0.21,0.00,1.00,48.00,28.80,0 --48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0 --52.80,38.40,0.26,0.00,1.00,57.60,33.60,0 --62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0 --67.20,38.40,0.30,0.00,1.00,67.20,38.40,0 --72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0 --76.80,43.20,0.34,0.00,1.00,76.80,38.40,0 --86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0 --91.20,43.20,0.38,0.00,1.00,86.40,43.20,0 --96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0 --105.60,43.20,0.43,0.00,1.00,96.00,43.20,0 --110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0 --115.20,38.40,0.47,0.00,1.00,105.60,38.40,0 --124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0 --129.60,38.40,0.51,0.00,1.00,115.20,38.40,0 --134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0 --139.20,33.60,0.56,0.00,1.00,124.80,33.60,0 --144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0 --148.80,28.80,0.60,0.00,1.00,134.40,28.80,0 --153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0 --158.40,19.20,0.64,0.00,1.00,144.00,24.00,0 --158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0 --163.20,14.40,0.68,0.00,1.00,153.60,19.20,0 --168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.73,0.00,1.00,163.20,9.60,0 --172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.77,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0 -158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0 -158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0 -148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0 -144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0 -139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0 -134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0 -129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0 -124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0 -115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0 -110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0 -105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0 -96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0 -91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0 -86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0 -76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0 -72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0 -67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0 -62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0 -52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0 -48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0 -43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0 -38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0 -28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0 -19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0 -0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.60,0.00,1.00,0.00,0.00,0 --9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.64,0.00,1.00,9.60,4.80,0 --14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0 --19.20,14.40,1.69,0.00,1.00,19.20,9.60,0 --24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0 --28.80,19.20,1.73,0.00,1.00,28.80,19.20,0 --33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0 --38.40,24.00,1.77,0.00,1.00,38.40,24.00,0 --43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0 --48.00,28.80,1.82,0.00,1.00,48.00,28.80,0 --52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0 --57.60,33.60,1.86,0.00,1.00,57.60,28.80,0 --62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0 --67.20,38.40,1.90,0.00,1.00,67.20,33.60,0 --72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0 --81.60,38.40,1.94,0.00,1.00,76.80,38.40,0 --86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0 --91.20,38.40,1.99,0.00,1.00,86.40,38.40,0 --96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0 --105.60,38.40,2.03,0.00,1.00,96.00,38.40,0 --110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0 --115.20,33.60,2.07,0.00,1.00,105.60,33.60,0 --120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0 --124.80,33.60,2.11,0.00,1.00,115.20,33.60,0 --129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0 --134.40,28.80,2.16,0.00,1.00,124.80,28.80,0 --139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0 --144.00,24.00,2.20,0.00,1.00,134.40,24.00,0 --148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0 --153.60,19.20,2.24,0.00,1.00,144.00,19.20,0 --158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0 --163.20,14.40,2.29,0.00,1.00,153.60,14.40,0 --168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.33,0.00,1.00,163.20,9.60,0 --172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.37,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0 -153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0 -144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0 -134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0 -124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0 -120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0 -115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0 -110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0 -105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0 -96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0 -91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0 -86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0 -81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0 -72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0 -67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0 -62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0 -57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0 -52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0 -48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0 -43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0 -38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0 -33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0 -28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0 -14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.20,0.00,1.00,0.00,0.00,0 --9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0 --14.40,9.60,3.25,0.00,1.00,9.60,4.80,0 --14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0 --19.20,14.40,3.29,0.00,1.00,19.20,9.60,0 --24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0 --28.80,19.20,3.33,0.00,1.00,28.80,14.40,0 --33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0 --38.40,24.00,3.38,0.00,1.00,38.40,19.20,0 --43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0 --48.00,24.00,3.42,0.00,1.00,48.00,24.00,0 --52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0 --57.60,28.80,3.46,0.00,1.00,57.60,28.80,0 --62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0 --67.20,33.60,3.50,0.00,1.00,67.20,28.80,0 --72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0 --81.60,33.60,3.55,0.00,1.00,76.80,33.60,0 --86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0 --91.20,33.60,3.59,0.00,1.00,86.40,33.60,0 --96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0 --100.80,33.60,3.63,0.00,1.00,96.00,33.60,0 --110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0 --115.20,33.60,3.67,0.00,1.00,105.60,28.80,0 --120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0 --124.80,28.80,3.72,0.00,1.00,115.20,28.80,0 --129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0 --134.40,24.00,3.76,0.00,1.00,124.80,24.00,0 --139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0 --144.00,19.20,3.80,0.00,1.00,134.40,24.00,0 --148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0 --153.60,14.40,3.85,0.00,1.00,144.00,19.20,0 --158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0 --163.20,9.60,3.89,0.00,1.00,153.60,14.40,0 --168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0 --168.00,4.80,3.93,0.00,1.00,163.20,9.60,0 --172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0 --177.60,0.00,3.97,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0 -124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0 -120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0 -115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0 -110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0 -100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0 -96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0 -91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0 -86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0 -81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0 -72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0 -67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0 -62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0 -57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0 -52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0 -48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0 -43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0 -38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0 -33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0 -28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0 -24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0 -14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0 -14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0 --4.80,0.00,4.81,0.00,1.00,0.00,0.00,0 --9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0 --14.40,4.80,4.85,0.00,1.00,9.60,4.80,0 --19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0 --19.20,9.60,4.89,0.00,1.00,19.20,9.60,0 --24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0 --28.80,14.40,4.93,0.00,1.00,28.80,14.40,0 --33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0 --38.40,19.20,4.98,0.00,1.00,38.40,14.40,0 --43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0 --48.00,24.00,5.02,0.00,1.00,48.00,19.20,0 --52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0 --57.60,24.00,5.06,0.00,1.00,57.60,24.00,0 --62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0 --72.00,28.80,5.11,0.00,1.00,67.20,24.00,0 --76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0 --81.60,28.80,5.15,0.00,1.00,76.80,28.80,0 --86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0 --91.20,28.80,5.19,0.00,1.00,86.40,28.80,0 --96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0 --100.80,28.80,5.23,0.00,1.00,96.00,28.80,0 --105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0 --115.20,28.80,5.28,0.00,1.00,105.60,28.80,0 --120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0 --124.80,24.00,5.32,0.00,1.00,115.20,24.00,0 --129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0 --134.40,24.00,5.36,0.00,1.00,124.80,24.00,0 --139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0 --144.00,19.20,5.40,0.00,1.00,134.40,19.20,0 --148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0 --153.60,14.40,5.45,0.00,1.00,144.00,14.40,0 --158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0 --163.20,9.60,5.49,0.00,1.00,153.60,9.60,0 --163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0 --168.00,4.80,5.53,0.00,1.00,163.20,9.60,0 --172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0 --177.60,0.00,5.58,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0 -163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0 -129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0 -124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0 -120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0 -115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0 -105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0 -100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0 -96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0 -91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0 -86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0 -81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0 -76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0 -72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0 -62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0 -57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0 -52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0 -48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0 -43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0 -38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0 -33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0 -28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0 -24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0 -19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0 -19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0 -0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,6.41,0.00,1.00,0.00,0.00,0 --9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0 --14.40,4.80,6.45,0.00,1.00,9.60,4.80,0 --19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0 --24.00,9.60,6.49,0.00,1.00,19.20,9.60,0 --28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0 --33.60,14.40,6.54,0.00,1.00,28.80,9.60,0 --33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0 --38.40,14.40,6.58,0.00,1.00,38.40,14.40,0 --43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0 --48.00,19.20,6.62,0.00,1.00,48.00,14.40,0 --57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0 --62.40,19.20,6.66,0.00,1.00,57.60,19.20,0 --67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0 --72.00,24.00,6.71,0.00,1.00,67.20,19.20,0 --76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0 --81.60,24.00,6.75,0.00,1.00,76.80,24.00,0 --86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0 --91.20,24.00,6.79,0.00,1.00,86.40,24.00,0 --96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0 --100.80,24.00,6.84,0.00,1.00,96.00,24.00,0 --105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0 --110.40,24.00,6.88,0.00,1.00,105.60,24.00,0 --115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0 --120.00,19.20,6.92,0.00,1.00,115.20,19.20,0 --129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0 --134.40,19.20,6.96,0.00,1.00,124.80,19.20,0 --139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0 --144.00,14.40,7.01,0.00,1.00,134.40,14.40,0 --148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0 --148.80,14.40,7.05,0.00,1.00,144.00,14.40,0 --153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0 --158.40,9.60,7.09,0.00,1.00,153.60,9.60,0 --163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0 --168.00,4.80,7.13,0.00,1.00,163.20,4.80,0 --172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0 --177.60,0.00,7.18,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0 -163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0 -158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0 -148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0 -144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0 -134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0 -129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0 -120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0 -115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0 -110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0 -105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0 -100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0 -96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0 -91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0 -86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0 -81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0 -76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0 -72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0 -67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0 -62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0 -57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0 -48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0 -43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0 -38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0 -33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0 -33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0 -28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0 -24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0 -19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0 -0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,8.01,0.00,1.00,0.00,0.00,0 --9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0 --14.40,4.80,8.05,0.00,1.00,9.60,4.80,0 --19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0 --24.00,9.60,8.10,0.00,1.00,19.20,4.80,0 --28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0 --33.60,9.60,8.14,0.00,1.00,24.00,9.60,0 --38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0 --43.20,14.40,8.18,0.00,1.00,33.60,9.60,0 --48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0 --52.80,14.40,8.22,0.00,1.00,43.20,14.40,0 --57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0 --62.40,19.20,8.27,0.00,1.00,52.80,14.40,0 --67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0 --72.00,19.20,8.31,0.00,1.00,62.40,14.40,0 --76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0 --81.60,19.20,8.35,0.00,1.00,76.80,19.20,0 --86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0 --91.20,19.20,8.40,0.00,1.00,86.40,19.20,0 --96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0 --100.80,19.20,8.44,0.00,1.00,96.00,19.20,0 --105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0 --110.40,19.20,8.48,0.00,1.00,105.60,19.20,0 --115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0 --120.00,14.40,8.52,0.00,1.00,120.00,14.40,0 --124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0 --129.60,14.40,8.57,0.00,1.00,129.60,14.40,0 --134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0 --139.20,14.40,8.61,0.00,1.00,139.20,14.40,0 --144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0 --148.80,9.60,8.65,0.00,1.00,148.80,9.60,0 --153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0 --158.40,4.80,8.69,0.00,1.00,158.40,9.60,0 --163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0 --168.00,4.80,8.74,0.00,1.00,163.20,4.80,0 --172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0 -148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0 -144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0 -139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0 -134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0 -129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0 -124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0 -120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0 -115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0 -110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0 -105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0 -100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0 -96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0 -91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0 -86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0 -81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0 -76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0 -72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0 -67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0 -62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0 -52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0 -48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0 -43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0 -38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0 -33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0 -28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0 -24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0 -19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0 -9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0 -0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,9.61,0.00,1.00,0.00,0.00,0 --9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0 --14.40,4.80,9.66,0.00,1.00,9.60,0.00,0 --19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0 --24.00,4.80,9.70,0.00,1.00,14.40,4.80,0 --28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0 --33.60,9.60,9.74,0.00,1.00,24.00,4.80,0 --38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0 --43.20,9.60,9.78,0.00,1.00,33.60,9.60,0 --48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0 --52.80,9.60,9.83,0.00,1.00,43.20,9.60,0 --57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0 --62.40,14.40,9.87,0.00,1.00,52.80,9.60,0 --67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0 --72.00,14.40,9.91,0.00,1.00,62.40,14.40,0 --76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0 --81.60,14.40,9.95,0.00,1.00,76.80,14.40,0 --86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0 --91.20,14.40,10.00,0.00,1.00,86.40,14.40,0 --96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0 --100.80,14.40,10.04,0.00,1.00,96.00,14.40,0 --105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0 --110.40,14.40,10.08,0.00,1.00,110.40,14.40,0 --115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0 --120.00,14.40,10.13,0.00,1.00,120.00,9.60,0 --124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0 --129.60,9.60,10.17,0.00,1.00,129.60,9.60,0 --134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0 --139.20,9.60,10.21,0.00,1.00,139.20,9.60,0 --144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0 --148.80,9.60,10.25,0.00,1.00,148.80,9.60,0 --153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0 --158.40,4.80,10.30,0.00,1.00,158.40,4.80,0 --163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0 --168.00,4.80,10.34,0.00,1.00,168.00,4.80,0 --172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0 -148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0 -144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0 -139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0 -134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0 -129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0 -124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0 -120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0 -115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0 -110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0 -105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0 -100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0 -96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0 -91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0 -86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0 -81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0 -76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0 -72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0 -67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0 -62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0 -48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0 -43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0 -38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0 -33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0 -28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0 -24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0 -19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0 -14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,11.21,0.00,1.00,0.00,0.00,0 --9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0 --14.40,0.00,11.26,0.00,1.00,9.60,0.00,0 --19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0 --24.00,4.80,11.30,0.00,1.00,14.40,4.80,0 --28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0 --33.60,4.80,11.34,0.00,1.00,24.00,4.80,0 --38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0 --43.20,4.80,11.39,0.00,1.00,33.60,4.80,0 --48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0 --52.80,9.60,11.43,0.00,1.00,43.20,4.80,0 --57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0 --62.40,9.60,11.47,0.00,1.00,52.80,4.80,0 --67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0 --72.00,9.60,11.51,0.00,1.00,62.40,9.60,0 --76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0 --81.60,9.60,11.56,0.00,1.00,72.00,9.60,0 --86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0 --91.20,9.60,11.60,0.00,1.00,86.40,9.60,0 --96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0 --100.80,9.60,11.64,0.00,1.00,96.00,9.60,0 --105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0 --110.40,9.60,11.68,0.00,1.00,110.40,9.60,0 --115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0 --120.00,9.60,11.73,0.00,1.00,120.00,9.60,0 --124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0 --129.60,9.60,11.77,0.00,1.00,129.60,4.80,0 --134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0 --139.20,4.80,11.81,0.00,1.00,139.20,4.80,0 --144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0 --148.80,4.80,11.86,0.00,1.00,148.80,4.80,0 --153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0 --158.40,4.80,11.90,0.00,1.00,158.40,4.80,0 --163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0 --168.00,0.00,11.94,0.00,1.00,168.00,4.80,0 --172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0 -158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0 -148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0 -144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0 -139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0 -134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0 -129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0 -124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0 -120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0 -115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0 -110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0 -105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0 -100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0 -96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0 -91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0 -86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0 -81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0 -76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0 -72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0 -67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0 -62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0 -57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0 -43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0 -33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0 -28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0 -24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0 -19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,12.82,0.00,1.00,0.00,0.00,0 --9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0 --14.40,0.00,12.86,0.00,1.00,9.60,0.00,0 --19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0 --24.00,0.00,12.90,0.00,1.00,14.40,0.00,0 --28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0 --33.60,4.80,12.95,0.00,1.00,24.00,0.00,0 --38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0 --43.20,4.80,12.99,0.00,1.00,28.80,0.00,0 --48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0 --52.80,4.80,13.03,0.00,1.00,38.40,4.80,0 --57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0 --62.40,4.80,13.07,0.00,1.00,48.00,4.80,0 --67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0 --72.00,4.80,13.12,0.00,1.00,62.40,4.80,0 --76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0 --81.60,4.80,13.16,0.00,1.00,72.00,4.80,0 --86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0 --91.20,4.80,13.20,0.00,1.00,86.40,4.80,0 --96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0 --100.80,4.80,13.24,0.00,1.00,96.00,4.80,0 --105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0 --110.40,4.80,13.29,0.00,1.00,110.40,4.80,0 --115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0 --120.00,4.80,13.33,0.00,1.00,120.00,4.80,0 --124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0 --129.60,4.80,13.37,0.00,1.00,134.40,4.80,0 --134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0 --139.20,4.80,13.42,0.00,1.00,144.00,4.80,0 --144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0 --148.80,4.80,13.46,0.00,1.00,153.60,0.00,0 --153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0 --158.40,0.00,13.50,0.00,1.00,158.40,0.00,0 --163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0 --168.00,0.00,13.54,0.00,1.00,168.00,0.00,0 --172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0 -163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0 -158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0 -153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0 -148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0 -144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0 -139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0 -134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0 -129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0 -124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0 -120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0 -115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0 -110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0 -105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0 -100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0 -96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0 -91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0 -86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0 -81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0 -76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0 -72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0 -67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0 -57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0 -52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0 -43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0 -33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0 -28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0 -24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0 -19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0 -14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0 -9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,14.42,0.00,1.00,0.00,0.00,0 --9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0 --14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0 --19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0 --24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0 --28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0 --33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0 --38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0 --43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0 --48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0 --52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0 --57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0 --62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0 --67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0 --72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0 --76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0 --81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0 --86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0 --91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0 --96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0 --100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0 --105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0 --110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0 --115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0 --120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0 --124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0 --129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0 --134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0 --139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0 --144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0 --148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0 --153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0 --158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0 --163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0 --168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0 --172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0 -177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0 -172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0 -168.00,0.00,15.25,0.00,1.00,4.80,0.00,0 -163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0 -158.40,0.00,15.30,0.00,1.00,9.60,0.00,0 -153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0 -148.80,0.00,15.34,0.00,1.00,19.20,0.00,0 -144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0 -139.20,0.00,15.38,0.00,1.00,28.80,0.00,0 -134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0 -129.60,0.00,15.42,0.00,1.00,33.60,0.00,0 -124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0 -120.00,0.00,15.47,0.00,1.00,43.20,0.00,0 -115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0 -110.40,0.00,15.51,0.00,1.00,57.60,0.00,0 -105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0 -100.80,0.00,15.55,0.00,1.00,67.20,0.00,0 -96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0 -91.20,0.00,15.59,0.00,1.00,81.60,0.00,0 -86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0 -81.60,0.00,15.64,0.00,1.00,96.00,0.00,0 -76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0 -72.00,0.00,15.68,0.00,1.00,110.40,0.00,0 -67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0 -62.40,0.00,15.72,0.00,1.00,120.00,0.00,0 -57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0 -52.80,0.00,15.77,0.00,1.00,134.40,0.00,0 -48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0 -43.20,0.00,15.81,0.00,1.00,144.00,0.00,0 -38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0 -33.60,0.00,15.85,0.00,1.00,153.60,0.00,0 -28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0 -24.00,0.00,15.89,0.00,1.00,158.40,0.00,0 -19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0 -14.40,0.00,15.94,0.00,1.00,168.00,0.00,0 -9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0 -4.80,0.00,15.98,0.00,1.00,172.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 diff --git a/scripts/testv/stvOMASA_3ISM_1MASA1TC16c.met b/scripts/testv/stvOMASA_3ISM_1MASA1TC16c.met deleted file mode 100644 index f2ce23bd2054140614b7d2ad88769d5d2db77990..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_1MASA1TC16c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6349efe3448d28979b80744bcdc29d57f1c025704939b42d7b913d7fc3f23ccc -size 102300 diff --git a/scripts/testv/stvOMASA_3ISM_1MASA1TC16c.wav b/scripts/testv/stvOMASA_3ISM_1MASA1TC16c.wav deleted file mode 100644 index 1374d409b813c1c75adb5d0ada2c206453068a64..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_1MASA1TC16c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fd9745f6ef3cdcd2a67a40207883baa6e23bc8290441dfb1f4fc7cabd0e72428 -size 384080 diff --git a/scripts/testv/stvOMASA_3ISM_1MASA1TC16c_ISM1.csv b/scripts/testv/stvOMASA_3ISM_1MASA1TC16c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_1MASA1TC16c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_3ISM_1MASA1TC16c_ISM2.csv b/scripts/testv/stvOMASA_3ISM_1MASA1TC16c_ISM2.csv deleted file mode 100644 index f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_1MASA1TC16c_ISM2.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,4.80,16.00,0.00,1.00,0.00,0.00,0 -0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0 -0.00,14.40,15.96,0.00,1.00,4.80,9.60,0 -0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0 -0.00,24.00,15.91,0.00,1.00,14.40,19.20,0 -0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0 -0.00,33.60,15.87,0.00,1.00,19.20,28.80,0 -0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0 -0.00,43.20,15.83,0.00,1.00,28.80,38.40,0 -0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0 -0.00,52.80,15.79,0.00,1.00,38.40,48.00,0 -0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0 -0.00,62.40,15.74,0.00,1.00,48.00,57.60,0 -4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0 -4.80,72.00,15.70,0.00,1.00,57.60,67.20,0 -4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0 -9.60,81.60,15.66,0.00,1.00,72.00,76.80,0 -19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0 -134.40,86.40,15.62,0.00,1.00,86.40,86.40,0 -168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0 -172.80,76.80,15.57,0.00,1.00,100.80,86.40,0 -177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0 -177.60,67.20,15.53,0.00,1.00,110.40,76.80,0 -177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0 -177.60,57.60,15.49,0.00,1.00,124.80,67.20,0 -177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0 -177.60,48.00,15.44,0.00,1.00,134.40,57.60,0 -177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0 -177.60,38.40,15.40,0.00,1.00,144.00,48.00,0 -177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0 -177.60,28.80,15.36,0.00,1.00,153.60,38.40,0 -177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0 -177.60,19.20,15.32,0.00,1.00,158.40,28.80,0 -177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0 -177.60,9.60,15.27,0.00,1.00,168.00,19.20,0 -177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0 -177.60,0.00,15.23,0.00,1.00,172.80,9.60,0 --177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0 --177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0 --177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0 --177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0 --177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0 --177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0 --177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0 --177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0 --177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0 --177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0 --177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0 --177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0 --177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0 --177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0 --177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0 --177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0 --172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0 --168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0 --134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0 --19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0 --9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0 --4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0 --4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0 --4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0 --0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0 --0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0 --0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0 --0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0 --0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0 --0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0 --0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0 --0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0 --0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0 --0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0 --0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0 --0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0 --0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0 --0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,14.40,0.00,1.00,0.00,0.00,0 --0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0 --0.00,14.40,14.36,0.00,1.00,9.60,9.60,0 --0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0 --0.00,24.00,14.31,0.00,1.00,14.40,19.20,0 --0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0 --0.00,33.60,14.27,0.00,1.00,24.00,28.80,0 --4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0 --4.80,43.20,14.23,0.00,1.00,28.80,38.40,0 --4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0 --4.80,52.80,14.18,0.00,1.00,38.40,48.00,0 --4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0 --4.80,62.40,14.14,0.00,1.00,48.00,57.60,0 --9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0 --9.60,72.00,14.10,0.00,1.00,62.40,67.20,0 --14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0 --24.00,81.60,14.06,0.00,1.00,72.00,76.80,0 --43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0 --110.40,86.40,14.01,0.00,1.00,86.40,86.40,0 --148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0 --163.20,76.80,13.97,0.00,1.00,96.00,81.60,0 --168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0 --172.80,67.20,13.93,0.00,1.00,110.40,72.00,0 --172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0 --172.80,57.60,13.89,0.00,1.00,120.00,62.40,0 --172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0 --177.60,48.00,13.84,0.00,1.00,134.40,52.80,0 --177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0 --177.60,38.40,13.80,0.00,1.00,144.00,43.20,0 --177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0 --177.60,28.80,13.76,0.00,1.00,148.80,33.60,0 --177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0 --177.60,19.20,13.71,0.00,1.00,158.40,24.00,0 --177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0 --177.60,9.60,13.67,0.00,1.00,168.00,14.40,0 --177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0 --177.60,0.00,13.63,0.00,1.00,172.80,4.80,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0 -177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0 -177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0 -177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0 -177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0 -177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0 -177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0 -172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0 -172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0 -172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0 -172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0 -168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0 -163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0 -148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0 -110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0 -43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0 -24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0 -14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0 -9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0 -9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0 -4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0 -4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0 -4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0 -4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0 -4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0 -0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0 -0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0 -0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0 -0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0 -0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,12.80,0.00,1.00,0.00,0.00,0 --0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0 --0.00,14.40,12.75,0.00,1.00,9.60,9.60,0 --4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0 --4.80,24.00,12.71,0.00,1.00,14.40,19.20,0 --4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0 --4.80,33.60,12.67,0.00,1.00,24.00,28.80,0 --4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0 --9.60,43.20,12.62,0.00,1.00,33.60,38.40,0 --9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0 --9.60,52.80,12.58,0.00,1.00,43.20,48.00,0 --14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0 --14.40,62.40,12.54,0.00,1.00,52.80,57.60,0 --19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0 --24.00,72.00,12.50,0.00,1.00,62.40,67.20,0 --33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0 --43.20,76.80,12.45,0.00,1.00,72.00,72.00,0 --67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0 --96.00,81.60,12.41,0.00,1.00,86.40,81.60,0 --124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0 --144.00,76.80,12.37,0.00,1.00,96.00,76.80,0 --153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0 --158.40,67.20,12.33,0.00,1.00,110.40,72.00,0 --163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0 --168.00,57.60,12.28,0.00,1.00,120.00,62.40,0 --168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0 --168.00,48.00,12.24,0.00,1.00,129.60,52.80,0 --172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0 --172.80,38.40,12.20,0.00,1.00,139.20,43.20,0 --172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0 --172.80,28.80,12.15,0.00,1.00,148.80,33.60,0 --177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0 --177.60,19.20,12.11,0.00,1.00,158.40,24.00,0 --177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0 --177.60,9.60,12.07,0.00,1.00,168.00,14.40,0 --177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0 --177.60,0.00,12.03,0.00,1.00,172.80,4.80,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0 -177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0 -172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0 -172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0 -168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0 -168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0 -168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0 -163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0 -158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0 -153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0 -144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0 -124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0 -96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0 -67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0 -43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0 -33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0 -24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0 -19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0 -14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0 -14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0 -9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0 -9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0 -9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0 -4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0 -4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0 -0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,11.19,0.00,1.00,0.00,0.00,0 --0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0 --4.80,14.40,11.15,0.00,1.00,9.60,9.60,0 --4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0 --4.80,24.00,11.11,0.00,1.00,14.40,19.20,0 --4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0 --9.60,33.60,11.07,0.00,1.00,24.00,28.80,0 --9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0 --14.40,43.20,11.02,0.00,1.00,33.60,38.40,0 --14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0 --14.40,52.80,10.98,0.00,1.00,43.20,48.00,0 --19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0 --24.00,57.60,10.94,0.00,1.00,52.80,52.80,0 --28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0 --33.60,67.20,10.89,0.00,1.00,62.40,62.40,0 --43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0 --57.60,72.00,10.85,0.00,1.00,76.80,72.00,0 --76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0 --96.00,76.80,10.81,0.00,1.00,86.40,76.80,0 --115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0 --129.60,72.00,10.77,0.00,1.00,96.00,76.80,0 --139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0 --148.80,67.20,10.72,0.00,1.00,105.60,67.20,0 --153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0 --158.40,57.60,10.68,0.00,1.00,120.00,62.40,0 --163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0 --163.20,48.00,10.64,0.00,1.00,129.60,52.80,0 --168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0 --168.00,38.40,10.60,0.00,1.00,139.20,43.20,0 --172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0 --172.80,28.80,10.55,0.00,1.00,148.80,33.60,0 --172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0 --172.80,19.20,10.51,0.00,1.00,158.40,24.00,0 --177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0 --177.60,9.60,10.47,0.00,1.00,163.20,14.40,0 --177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0 --177.60,0.00,10.42,0.00,1.00,172.80,4.80,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0 -168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0 -168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0 -163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0 -163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0 -158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0 -153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0 -148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0 -139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0 -129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0 -115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0 -96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0 -76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0 -57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0 -43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0 -33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0 -28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0 -24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0 -19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0 -14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0 -14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0 -14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0 -9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0 -9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0 -4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0 -4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0 -0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,9.59,0.00,1.00,0.00,0.00,0 --4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0 --4.80,14.40,9.55,0.00,1.00,9.60,9.60,0 --4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0 --9.60,24.00,9.51,0.00,1.00,19.20,19.20,0 --9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0 --9.60,33.60,9.46,0.00,1.00,24.00,28.80,0 --14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0 --14.40,38.40,9.42,0.00,1.00,33.60,33.60,0 --19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0 --24.00,48.00,9.38,0.00,1.00,43.20,43.20,0 --24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0 --28.80,57.60,9.34,0.00,1.00,52.80,52.80,0 --38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0 --43.20,62.40,9.29,0.00,1.00,67.20,62.40,0 --52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0 --62.40,72.00,9.25,0.00,1.00,76.80,67.20,0 --76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0 --96.00,72.00,9.21,0.00,1.00,86.40,72.00,0 --110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0 --120.00,67.20,9.16,0.00,1.00,96.00,72.00,0 --134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0 --139.20,62.40,9.12,0.00,1.00,105.60,67.20,0 --148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0 --153.60,57.60,9.08,0.00,1.00,115.20,57.60,0 --158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0 --158.40,48.00,9.04,0.00,1.00,129.60,52.80,0 --163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0 --163.20,38.40,8.99,0.00,1.00,139.20,43.20,0 --168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0 --168.00,28.80,8.95,0.00,1.00,148.80,33.60,0 --172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0 --172.80,19.20,8.91,0.00,1.00,153.60,24.00,0 --172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0 --177.60,9.60,8.87,0.00,1.00,163.20,14.40,0 --177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0 --177.60,0.00,8.82,0.00,1.00,172.80,4.80,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0 -168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0 -163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0 -163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0 -158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0 -158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0 -153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0 -148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0 -139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0 -134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0 -120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0 -110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0 -96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0 -76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0 -62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0 -52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0 -43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0 -38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0 -28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0 -24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0 -24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0 -19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0 -14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0 -14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0 -9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0 -9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0 -9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0 -0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,7.99,0.00,1.00,0.00,0.00,0 --4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0 --4.80,14.40,7.95,0.00,1.00,9.60,9.60,0 --9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0 --9.60,24.00,7.90,0.00,1.00,19.20,19.20,0 --14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0 --14.40,28.80,7.86,0.00,1.00,28.80,24.00,0 --19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0 --19.20,38.40,7.82,0.00,1.00,38.40,33.60,0 --24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0 --28.80,48.00,7.78,0.00,1.00,48.00,43.20,0 --33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0 --38.40,52.80,7.73,0.00,1.00,57.60,52.80,0 --43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0 --48.00,62.40,7.69,0.00,1.00,67.20,57.60,0 --57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0 --67.20,67.20,7.65,0.00,1.00,76.80,62.40,0 --81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0 --91.20,67.20,7.60,0.00,1.00,86.40,67.20,0 --105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0 --115.20,67.20,7.56,0.00,1.00,96.00,67.20,0 --124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0 --134.40,57.60,7.52,0.00,1.00,105.60,62.40,0 --139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0 --144.00,52.80,7.48,0.00,1.00,115.20,57.60,0 --148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0 --153.60,43.20,7.43,0.00,1.00,124.80,48.00,0 --158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0 --163.20,38.40,7.39,0.00,1.00,134.40,38.40,0 --163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0 --168.00,28.80,7.35,0.00,1.00,144.00,33.60,0 --168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0 --172.80,19.20,7.31,0.00,1.00,153.60,24.00,0 --172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0 --177.60,9.60,7.26,0.00,1.00,163.20,14.40,0 --177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0 --177.60,0.00,7.22,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0 -163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0 -158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0 -153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0 -148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0 -144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0 -139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0 -134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0 -124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0 -115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0 -105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0 -91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0 -81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0 -67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0 -57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0 -48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0 -43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0 -38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0 -33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0 -28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0 -24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0 -19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0 -19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0 -14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0 -9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0 -0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,6.39,0.00,1.00,0.00,0.00,0 --4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0 --4.80,14.40,6.34,0.00,1.00,9.60,9.60,0 --9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0 --9.60,19.20,6.30,0.00,1.00,19.20,14.40,0 --14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0 --19.20,28.80,6.26,0.00,1.00,28.80,24.00,0 --19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0 --24.00,38.40,6.22,0.00,1.00,38.40,33.60,0 --28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0 --33.60,43.20,6.17,0.00,1.00,48.00,38.40,0 --38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0 --43.20,52.80,6.13,0.00,1.00,57.60,48.00,0 --48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0 --52.80,57.60,6.09,0.00,1.00,67.20,52.80,0 --62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0 --72.00,62.40,6.05,0.00,1.00,76.80,57.60,0 --81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0 --91.20,62.40,6.00,0.00,1.00,86.40,62.40,0 --100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0 --110.40,62.40,5.96,0.00,1.00,96.00,62.40,0 --120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0 --129.60,57.60,5.92,0.00,1.00,105.60,57.60,0 --134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0 --139.20,48.00,5.87,0.00,1.00,115.20,52.80,0 --144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0 --148.80,43.20,5.83,0.00,1.00,124.80,48.00,0 --153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0 --158.40,33.60,5.79,0.00,1.00,134.40,38.40,0 --163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0 --163.20,28.80,5.75,0.00,1.00,144.00,28.80,0 --168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0 --168.00,19.20,5.70,0.00,1.00,153.60,24.00,0 --172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0 --172.80,9.60,5.66,0.00,1.00,163.20,14.40,0 --177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0 --177.60,0.00,5.62,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0 -163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0 -158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0 -148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0 -144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0 -139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0 -134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0 -129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0 -120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0 -110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0 -100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0 -91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0 -81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0 -72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0 -62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0 -52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0 -48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0 -43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0 -38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0 -33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0 -28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0 -24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0 -19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0 -19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0 -9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0 -4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0 -0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,4.79,0.00,1.00,0.00,0.00,0 --4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0 --9.60,14.40,4.74,0.00,1.00,9.60,9.60,0 --9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0 --14.40,19.20,4.70,0.00,1.00,19.20,14.40,0 --14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0 --19.20,28.80,4.66,0.00,1.00,28.80,24.00,0 --24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0 --28.80,33.60,4.61,0.00,1.00,38.40,28.80,0 --28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0 --33.60,43.20,4.57,0.00,1.00,48.00,38.40,0 --38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0 --48.00,48.00,4.53,0.00,1.00,57.60,43.20,0 --52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0 --57.60,52.80,4.49,0.00,1.00,67.20,48.00,0 --67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0 --76.80,57.60,4.44,0.00,1.00,76.80,52.80,0 --81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0 --91.20,57.60,4.40,0.00,1.00,86.40,57.60,0 --100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0 --110.40,57.60,4.36,0.00,1.00,96.00,57.60,0 --115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0 --124.80,52.80,4.32,0.00,1.00,105.60,52.80,0 --129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0 --139.20,48.00,4.27,0.00,1.00,115.20,48.00,0 --144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0 --148.80,38.40,4.23,0.00,1.00,124.80,43.20,0 --153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0 --153.60,33.60,4.19,0.00,1.00,134.40,38.40,0 --158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0 --163.20,24.00,4.14,0.00,1.00,144.00,28.80,0 --163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0 --168.00,19.20,4.10,0.00,1.00,153.60,24.00,0 --172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0 --172.80,9.60,4.06,0.00,1.00,163.20,14.40,0 --177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0 --177.60,0.00,4.02,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0 -163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0 -163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0 -158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0 -148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0 -144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0 -139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0 -129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0 -124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0 -115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0 -110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0 -100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0 -91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0 -81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0 -76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0 -67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0 -57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0 -52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0 -48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0 -38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0 -33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0 -28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0 -28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0 -24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0 -19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0 -14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0 -14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0 -9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0 -0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.18,0.00,1.00,0.00,0.00,0 --4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0 --9.60,9.60,3.14,0.00,1.00,9.60,9.60,0 --9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0 --14.40,19.20,3.10,0.00,1.00,19.20,14.40,0 --19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0 --24.00,24.00,3.05,0.00,1.00,28.80,24.00,0 --24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0 --28.80,33.60,3.01,0.00,1.00,38.40,28.80,0 --33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0 --38.40,38.40,2.97,0.00,1.00,48.00,33.60,0 --43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0 --48.00,43.20,2.93,0.00,1.00,57.60,43.20,0 --52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0 --62.40,48.00,2.88,0.00,1.00,67.20,48.00,0 --67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0 --76.80,52.80,2.84,0.00,1.00,76.80,48.00,0 --86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0 --91.20,52.80,2.80,0.00,1.00,86.40,52.80,0 --100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0 --105.60,52.80,2.76,0.00,1.00,96.00,52.80,0 --115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0 --120.00,48.00,2.71,0.00,1.00,105.60,48.00,0 --129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0 --134.40,43.20,2.67,0.00,1.00,115.20,43.20,0 --139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0 --144.00,38.40,2.63,0.00,1.00,124.80,38.40,0 --148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0 --153.60,33.60,2.58,0.00,1.00,134.40,33.60,0 --158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0 --158.40,24.00,2.54,0.00,1.00,144.00,28.80,0 --163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0 --168.00,19.20,2.50,0.00,1.00,153.60,19.20,0 --168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.46,0.00,1.00,163.20,14.40,0 --177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.41,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0 -158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0 -148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0 -144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0 -139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0 -134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0 -129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0 -120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0 -115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0 -105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0 -100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0 -91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0 -86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0 -76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0 -67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0 -62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0 -52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0 -48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0 -43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0 -38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0 -33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0 -28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0 -24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0 -24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0 -19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0 -0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.58,0.00,1.00,0.00,0.00,0 --4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.54,0.00,1.00,9.60,4.80,0 --14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0 --14.40,19.20,1.50,0.00,1.00,19.20,14.40,0 --19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0 --24.00,24.00,1.45,0.00,1.00,28.80,19.20,0 --28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0 --33.60,28.80,1.41,0.00,1.00,38.40,28.80,0 --38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0 --43.20,38.40,1.37,0.00,1.00,48.00,33.60,0 --48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0 --52.80,43.20,1.32,0.00,1.00,57.60,38.40,0 --57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0 --62.40,43.20,1.28,0.00,1.00,67.20,43.20,0 --72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0 --76.80,48.00,1.24,0.00,1.00,76.80,43.20,0 --86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0 --91.20,48.00,1.20,0.00,1.00,86.40,48.00,0 --100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0 --105.60,48.00,1.15,0.00,1.00,96.00,48.00,0 --110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0 --120.00,43.20,1.11,0.00,1.00,105.60,43.20,0 --124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0 --129.60,38.40,1.07,0.00,1.00,115.20,43.20,0 --134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0 --139.20,33.60,1.03,0.00,1.00,124.80,38.40,0 --144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0 --148.80,28.80,0.98,0.00,1.00,134.40,33.60,0 --153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0 --158.40,24.00,0.94,0.00,1.00,144.00,24.00,0 --163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0 --163.20,14.40,0.90,0.00,1.00,153.60,19.20,0 --168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.85,0.00,1.00,163.20,14.40,0 --172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.81,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0 -148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0 -144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0 -139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0 -134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0 -129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0 -124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0 -120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0 -110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0 -105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0 -100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0 -91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0 -86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0 -76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0 -72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0 -62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0 -57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0 -52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0 -48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0 -43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0 -38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0 -28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0 -19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0 -0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,0.00,0.00,1.00,0.00,0.00,0 --4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0 --9.60,9.60,0.04,0.00,1.00,9.60,4.80,0 --14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0 --19.20,14.40,0.09,0.00,1.00,19.20,14.40,0 --24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0 --24.00,24.00,0.13,0.00,1.00,28.80,19.20,0 --28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0 --33.60,28.80,0.17,0.00,1.00,38.40,24.00,0 --38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0 --43.20,33.60,0.21,0.00,1.00,48.00,28.80,0 --48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0 --52.80,38.40,0.26,0.00,1.00,57.60,33.60,0 --62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0 --67.20,38.40,0.30,0.00,1.00,67.20,38.40,0 --72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0 --76.80,43.20,0.34,0.00,1.00,76.80,38.40,0 --86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0 --91.20,43.20,0.38,0.00,1.00,86.40,43.20,0 --96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0 --105.60,43.20,0.43,0.00,1.00,96.00,43.20,0 --110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0 --115.20,38.40,0.47,0.00,1.00,105.60,38.40,0 --124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0 --129.60,38.40,0.51,0.00,1.00,115.20,38.40,0 --134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0 --139.20,33.60,0.56,0.00,1.00,124.80,33.60,0 --144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0 --148.80,28.80,0.60,0.00,1.00,134.40,28.80,0 --153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0 --158.40,19.20,0.64,0.00,1.00,144.00,24.00,0 --158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0 --163.20,14.40,0.68,0.00,1.00,153.60,19.20,0 --168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.73,0.00,1.00,163.20,9.60,0 --172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.77,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0 -158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0 -158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0 -148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0 -144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0 -139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0 -134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0 -129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0 -124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0 -115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0 -110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0 -105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0 -96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0 -91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0 -86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0 -76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0 -72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0 -67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0 -62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0 -52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0 -48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0 -43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0 -38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0 -28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0 -19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0 -0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.60,0.00,1.00,0.00,0.00,0 --9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.64,0.00,1.00,9.60,4.80,0 --14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0 --19.20,14.40,1.69,0.00,1.00,19.20,9.60,0 --24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0 --28.80,19.20,1.73,0.00,1.00,28.80,19.20,0 --33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0 --38.40,24.00,1.77,0.00,1.00,38.40,24.00,0 --43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0 --48.00,28.80,1.82,0.00,1.00,48.00,28.80,0 --52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0 --57.60,33.60,1.86,0.00,1.00,57.60,28.80,0 --62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0 --67.20,38.40,1.90,0.00,1.00,67.20,33.60,0 --72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0 --81.60,38.40,1.94,0.00,1.00,76.80,38.40,0 --86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0 --91.20,38.40,1.99,0.00,1.00,86.40,38.40,0 --96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0 --105.60,38.40,2.03,0.00,1.00,96.00,38.40,0 --110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0 --115.20,33.60,2.07,0.00,1.00,105.60,33.60,0 --120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0 --124.80,33.60,2.11,0.00,1.00,115.20,33.60,0 --129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0 --134.40,28.80,2.16,0.00,1.00,124.80,28.80,0 --139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0 --144.00,24.00,2.20,0.00,1.00,134.40,24.00,0 --148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0 --153.60,19.20,2.24,0.00,1.00,144.00,19.20,0 --158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0 --163.20,14.40,2.29,0.00,1.00,153.60,14.40,0 --168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.33,0.00,1.00,163.20,9.60,0 --172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.37,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0 -153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0 -144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0 -134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0 -124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0 -120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0 -115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0 -110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0 -105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0 -96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0 -91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0 -86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0 -81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0 -72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0 -67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0 -62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0 -57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0 -52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0 -48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0 -43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0 -38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0 -33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0 -28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0 -14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.20,0.00,1.00,0.00,0.00,0 --9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0 --14.40,9.60,3.25,0.00,1.00,9.60,4.80,0 --14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0 --19.20,14.40,3.29,0.00,1.00,19.20,9.60,0 --24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0 --28.80,19.20,3.33,0.00,1.00,28.80,14.40,0 --33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0 --38.40,24.00,3.38,0.00,1.00,38.40,19.20,0 --43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0 --48.00,24.00,3.42,0.00,1.00,48.00,24.00,0 --52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0 --57.60,28.80,3.46,0.00,1.00,57.60,28.80,0 --62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0 --67.20,33.60,3.50,0.00,1.00,67.20,28.80,0 --72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0 --81.60,33.60,3.55,0.00,1.00,76.80,33.60,0 --86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0 --91.20,33.60,3.59,0.00,1.00,86.40,33.60,0 --96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0 --100.80,33.60,3.63,0.00,1.00,96.00,33.60,0 --110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0 --115.20,33.60,3.67,0.00,1.00,105.60,28.80,0 --120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0 --124.80,28.80,3.72,0.00,1.00,115.20,28.80,0 --129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0 --134.40,24.00,3.76,0.00,1.00,124.80,24.00,0 --139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0 --144.00,19.20,3.80,0.00,1.00,134.40,24.00,0 --148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0 --153.60,14.40,3.85,0.00,1.00,144.00,19.20,0 --158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0 --163.20,9.60,3.89,0.00,1.00,153.60,14.40,0 --168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0 --168.00,4.80,3.93,0.00,1.00,163.20,9.60,0 --172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0 --177.60,0.00,3.97,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0 -124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0 -120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0 -115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0 -110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0 -100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0 -96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0 -91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0 -86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0 -81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0 -72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0 -67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0 -62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0 -57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0 -52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0 -48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0 -43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0 -38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0 -33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0 -28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0 -24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0 -14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0 -14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0 --4.80,0.00,4.81,0.00,1.00,0.00,0.00,0 --9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0 --14.40,4.80,4.85,0.00,1.00,9.60,4.80,0 --19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0 --19.20,9.60,4.89,0.00,1.00,19.20,9.60,0 --24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0 --28.80,14.40,4.93,0.00,1.00,28.80,14.40,0 --33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0 --38.40,19.20,4.98,0.00,1.00,38.40,14.40,0 --43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0 --48.00,24.00,5.02,0.00,1.00,48.00,19.20,0 --52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0 --57.60,24.00,5.06,0.00,1.00,57.60,24.00,0 --62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0 --72.00,28.80,5.11,0.00,1.00,67.20,24.00,0 --76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0 --81.60,28.80,5.15,0.00,1.00,76.80,28.80,0 --86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0 --91.20,28.80,5.19,0.00,1.00,86.40,28.80,0 --96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0 --100.80,28.80,5.23,0.00,1.00,96.00,28.80,0 --105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0 --115.20,28.80,5.28,0.00,1.00,105.60,28.80,0 --120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0 --124.80,24.00,5.32,0.00,1.00,115.20,24.00,0 --129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0 --134.40,24.00,5.36,0.00,1.00,124.80,24.00,0 --139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0 --144.00,19.20,5.40,0.00,1.00,134.40,19.20,0 --148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0 --153.60,14.40,5.45,0.00,1.00,144.00,14.40,0 --158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0 --163.20,9.60,5.49,0.00,1.00,153.60,9.60,0 --163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0 --168.00,4.80,5.53,0.00,1.00,163.20,9.60,0 --172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0 --177.60,0.00,5.58,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0 -163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0 -129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0 -124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0 -120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0 -115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0 -105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0 -100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0 -96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0 -91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0 -86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0 -81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0 -76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0 -72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0 -62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0 -57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0 -52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0 -48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0 -43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0 -38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0 -33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0 -28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0 -24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0 -19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0 -19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0 -0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,6.41,0.00,1.00,0.00,0.00,0 --9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0 --14.40,4.80,6.45,0.00,1.00,9.60,4.80,0 --19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0 --24.00,9.60,6.49,0.00,1.00,19.20,9.60,0 --28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0 --33.60,14.40,6.54,0.00,1.00,28.80,9.60,0 --33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0 --38.40,14.40,6.58,0.00,1.00,38.40,14.40,0 --43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0 --48.00,19.20,6.62,0.00,1.00,48.00,14.40,0 --57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0 --62.40,19.20,6.66,0.00,1.00,57.60,19.20,0 --67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0 --72.00,24.00,6.71,0.00,1.00,67.20,19.20,0 --76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0 --81.60,24.00,6.75,0.00,1.00,76.80,24.00,0 --86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0 --91.20,24.00,6.79,0.00,1.00,86.40,24.00,0 --96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0 --100.80,24.00,6.84,0.00,1.00,96.00,24.00,0 --105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0 --110.40,24.00,6.88,0.00,1.00,105.60,24.00,0 --115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0 --120.00,19.20,6.92,0.00,1.00,115.20,19.20,0 --129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0 --134.40,19.20,6.96,0.00,1.00,124.80,19.20,0 --139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0 --144.00,14.40,7.01,0.00,1.00,134.40,14.40,0 --148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0 --148.80,14.40,7.05,0.00,1.00,144.00,14.40,0 --153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0 --158.40,9.60,7.09,0.00,1.00,153.60,9.60,0 --163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0 --168.00,4.80,7.13,0.00,1.00,163.20,4.80,0 --172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0 --177.60,0.00,7.18,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0 -163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0 -158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0 -148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0 -144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0 -134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0 -129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0 -120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0 -115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0 -110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0 -105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0 -100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0 -96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0 -91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0 -86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0 -81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0 -76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0 -72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0 -67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0 -62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0 -57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0 -48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0 -43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0 -38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0 -33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0 -33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0 -28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0 -24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0 -19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0 -0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,8.01,0.00,1.00,0.00,0.00,0 --9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0 --14.40,4.80,8.05,0.00,1.00,9.60,4.80,0 --19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0 --24.00,9.60,8.10,0.00,1.00,19.20,4.80,0 --28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0 --33.60,9.60,8.14,0.00,1.00,24.00,9.60,0 --38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0 --43.20,14.40,8.18,0.00,1.00,33.60,9.60,0 --48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0 --52.80,14.40,8.22,0.00,1.00,43.20,14.40,0 --57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0 --62.40,19.20,8.27,0.00,1.00,52.80,14.40,0 --67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0 --72.00,19.20,8.31,0.00,1.00,62.40,14.40,0 --76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0 --81.60,19.20,8.35,0.00,1.00,76.80,19.20,0 --86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0 --91.20,19.20,8.40,0.00,1.00,86.40,19.20,0 --96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0 --100.80,19.20,8.44,0.00,1.00,96.00,19.20,0 --105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0 --110.40,19.20,8.48,0.00,1.00,105.60,19.20,0 --115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0 --120.00,14.40,8.52,0.00,1.00,120.00,14.40,0 --124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0 --129.60,14.40,8.57,0.00,1.00,129.60,14.40,0 --134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0 --139.20,14.40,8.61,0.00,1.00,139.20,14.40,0 --144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0 --148.80,9.60,8.65,0.00,1.00,148.80,9.60,0 --153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0 --158.40,4.80,8.69,0.00,1.00,158.40,9.60,0 --163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0 --168.00,4.80,8.74,0.00,1.00,163.20,4.80,0 --172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0 -148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0 -144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0 -139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0 -134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0 -129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0 -124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0 -120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0 -115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0 -110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0 -105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0 -100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0 -96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0 -91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0 -86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0 -81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0 -76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0 -72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0 -67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0 -62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0 -52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0 -48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0 -43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0 -38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0 -33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0 -28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0 -24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0 -19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0 -9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0 -0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,9.61,0.00,1.00,0.00,0.00,0 --9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0 --14.40,4.80,9.66,0.00,1.00,9.60,0.00,0 --19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0 --24.00,4.80,9.70,0.00,1.00,14.40,4.80,0 --28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0 --33.60,9.60,9.74,0.00,1.00,24.00,4.80,0 --38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0 --43.20,9.60,9.78,0.00,1.00,33.60,9.60,0 --48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0 --52.80,9.60,9.83,0.00,1.00,43.20,9.60,0 --57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0 --62.40,14.40,9.87,0.00,1.00,52.80,9.60,0 --67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0 --72.00,14.40,9.91,0.00,1.00,62.40,14.40,0 --76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0 --81.60,14.40,9.95,0.00,1.00,76.80,14.40,0 --86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0 --91.20,14.40,10.00,0.00,1.00,86.40,14.40,0 --96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0 --100.80,14.40,10.04,0.00,1.00,96.00,14.40,0 --105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0 --110.40,14.40,10.08,0.00,1.00,110.40,14.40,0 --115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0 --120.00,14.40,10.13,0.00,1.00,120.00,9.60,0 --124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0 --129.60,9.60,10.17,0.00,1.00,129.60,9.60,0 --134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0 --139.20,9.60,10.21,0.00,1.00,139.20,9.60,0 --144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0 --148.80,9.60,10.25,0.00,1.00,148.80,9.60,0 --153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0 --158.40,4.80,10.30,0.00,1.00,158.40,4.80,0 --163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0 --168.00,4.80,10.34,0.00,1.00,168.00,4.80,0 --172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0 -148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0 -144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0 -139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0 -134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0 -129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0 -124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0 -120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0 -115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0 -110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0 -105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0 -100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0 -96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0 -91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0 -86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0 -81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0 -76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0 -72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0 -67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0 -62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0 -48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0 -43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0 -38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0 -33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0 -28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0 -24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0 -19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0 -14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,11.21,0.00,1.00,0.00,0.00,0 --9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0 --14.40,0.00,11.26,0.00,1.00,9.60,0.00,0 --19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0 --24.00,4.80,11.30,0.00,1.00,14.40,4.80,0 --28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0 --33.60,4.80,11.34,0.00,1.00,24.00,4.80,0 --38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0 --43.20,4.80,11.39,0.00,1.00,33.60,4.80,0 --48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0 --52.80,9.60,11.43,0.00,1.00,43.20,4.80,0 --57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0 --62.40,9.60,11.47,0.00,1.00,52.80,4.80,0 --67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0 --72.00,9.60,11.51,0.00,1.00,62.40,9.60,0 --76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0 --81.60,9.60,11.56,0.00,1.00,72.00,9.60,0 --86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0 --91.20,9.60,11.60,0.00,1.00,86.40,9.60,0 --96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0 --100.80,9.60,11.64,0.00,1.00,96.00,9.60,0 --105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0 --110.40,9.60,11.68,0.00,1.00,110.40,9.60,0 --115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0 --120.00,9.60,11.73,0.00,1.00,120.00,9.60,0 --124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0 --129.60,9.60,11.77,0.00,1.00,129.60,4.80,0 --134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0 --139.20,4.80,11.81,0.00,1.00,139.20,4.80,0 --144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0 --148.80,4.80,11.86,0.00,1.00,148.80,4.80,0 --153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0 --158.40,4.80,11.90,0.00,1.00,158.40,4.80,0 --163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0 --168.00,0.00,11.94,0.00,1.00,168.00,4.80,0 --172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0 -158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0 -148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0 -144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0 -139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0 -134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0 -129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0 -124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0 -120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0 -115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0 -110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0 -105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0 -100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0 -96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0 -91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0 -86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0 -81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0 -76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0 -72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0 -67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0 -62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0 -57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0 -43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0 -33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0 -28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0 -24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0 -19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,12.82,0.00,1.00,0.00,0.00,0 --9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0 --14.40,0.00,12.86,0.00,1.00,9.60,0.00,0 --19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0 --24.00,0.00,12.90,0.00,1.00,14.40,0.00,0 --28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0 --33.60,4.80,12.95,0.00,1.00,24.00,0.00,0 --38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0 --43.20,4.80,12.99,0.00,1.00,28.80,0.00,0 --48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0 --52.80,4.80,13.03,0.00,1.00,38.40,4.80,0 --57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0 --62.40,4.80,13.07,0.00,1.00,48.00,4.80,0 --67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0 --72.00,4.80,13.12,0.00,1.00,62.40,4.80,0 --76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0 --81.60,4.80,13.16,0.00,1.00,72.00,4.80,0 --86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0 --91.20,4.80,13.20,0.00,1.00,86.40,4.80,0 --96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0 --100.80,4.80,13.24,0.00,1.00,96.00,4.80,0 --105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0 --110.40,4.80,13.29,0.00,1.00,110.40,4.80,0 --115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0 --120.00,4.80,13.33,0.00,1.00,120.00,4.80,0 --124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0 --129.60,4.80,13.37,0.00,1.00,134.40,4.80,0 --134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0 --139.20,4.80,13.42,0.00,1.00,144.00,4.80,0 --144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0 --148.80,4.80,13.46,0.00,1.00,153.60,0.00,0 --153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0 --158.40,0.00,13.50,0.00,1.00,158.40,0.00,0 --163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0 --168.00,0.00,13.54,0.00,1.00,168.00,0.00,0 --172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0 -163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0 -158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0 -153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0 -148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0 -144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0 -139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0 -134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0 -129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0 -124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0 -120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0 -115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0 -110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0 -105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0 -100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0 -96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0 -91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0 -86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0 -81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0 -76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0 -72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0 -67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0 -57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0 -52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0 -43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0 -33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0 -28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0 -24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0 -19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0 -14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0 -9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,14.42,0.00,1.00,0.00,0.00,0 --9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0 --14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0 --19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0 --24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0 --28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0 --33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0 --38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0 --43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0 --48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0 --52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0 --57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0 --62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0 --67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0 --72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0 --76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0 --81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0 --86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0 --91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0 --96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0 --100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0 --105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0 --110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0 --115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0 --120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0 --124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0 --129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0 --134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0 --139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0 --144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0 --148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0 --153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0 --158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0 --163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0 --168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0 --172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0 -177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0 -172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0 -168.00,0.00,15.25,0.00,1.00,4.80,0.00,0 -163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0 -158.40,0.00,15.30,0.00,1.00,9.60,0.00,0 -153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0 -148.80,0.00,15.34,0.00,1.00,19.20,0.00,0 -144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0 -139.20,0.00,15.38,0.00,1.00,28.80,0.00,0 -134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0 -129.60,0.00,15.42,0.00,1.00,33.60,0.00,0 -124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0 -120.00,0.00,15.47,0.00,1.00,43.20,0.00,0 -115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0 -110.40,0.00,15.51,0.00,1.00,57.60,0.00,0 -105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0 -100.80,0.00,15.55,0.00,1.00,67.20,0.00,0 -96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0 -91.20,0.00,15.59,0.00,1.00,81.60,0.00,0 -86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0 -81.60,0.00,15.64,0.00,1.00,96.00,0.00,0 -76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0 -72.00,0.00,15.68,0.00,1.00,110.40,0.00,0 -67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0 -62.40,0.00,15.72,0.00,1.00,120.00,0.00,0 -57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0 -52.80,0.00,15.77,0.00,1.00,134.40,0.00,0 -48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0 -43.20,0.00,15.81,0.00,1.00,144.00,0.00,0 -38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0 -33.60,0.00,15.85,0.00,1.00,153.60,0.00,0 -28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0 -24.00,0.00,15.89,0.00,1.00,158.40,0.00,0 -19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0 -14.40,0.00,15.94,0.00,1.00,168.00,0.00,0 -9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0 -4.80,0.00,15.98,0.00,1.00,172.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 diff --git a/scripts/testv/stvOMASA_3ISM_1MASA1TC16c_ISM3.csv b/scripts/testv/stvOMASA_3ISM_1MASA1TC16c_ISM3.csv deleted file mode 100644 index 14eee9b693b536fa2fd22d2813d7f588b8930b06..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_1MASA1TC16c_ISM3.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0 --177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0 -4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0 --168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0 -14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0 --163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0 -19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0 --153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0 -28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0 --148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0 -38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0 --139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0 -48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0 --124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0 -57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0 --115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0 -72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0 --100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0 -86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0 --86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0 -100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0 --76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0 -110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0 --62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0 -124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0 --52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0 -134.40,33.60,0.28,0.00,1.00,177.60,0.00,0 --38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0 -144.00,28.80,0.30,0.00,1.00,177.60,0.00,0 --33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0 -153.60,24.00,0.32,0.00,1.00,177.60,0.00,0 --24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0 -158.40,19.20,0.34,0.00,1.00,177.60,0.00,0 --14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0 -168.00,9.60,0.36,0.00,1.00,177.60,0.00,0 --9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0 -172.80,4.80,0.38,0.00,1.00,177.60,0.00,0 --0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0 --177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0 -4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0 -14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0 -19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0 --158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0 -28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0 --148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0 -33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0 --139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0 -43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0 --129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0 -57.60,38.40,15.47,0.00,1.00,177.60,0.00,0 --120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0 -67.20,43.20,15.44,0.00,1.00,177.60,0.00,0 --105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0 -81.60,43.20,15.42,0.00,1.00,177.60,0.00,0 --91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0 -96.00,43.20,15.40,0.00,1.00,0.00,0.00,0 --76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0 -110.40,43.20,15.38,0.00,1.00,0.00,0.00,0 --67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0 -120.00,38.40,15.36,0.00,1.00,0.00,0.00,0 --52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0 -129.60,38.40,15.34,0.00,1.00,0.00,0.00,0 --43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0 -144.00,33.60,15.32,0.00,1.00,0.00,0.00,0 --33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0 -148.80,24.00,15.30,0.00,1.00,0.00,0.00,0 --24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0 -158.40,19.20,15.27,0.00,1.00,0.00,0.00,0 --19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0 -168.00,14.40,15.25,0.00,1.00,0.00,0.00,0 --9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0 -172.80,4.80,15.23,0.00,1.00,0.00,0.00,0 --4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0 -0.00,0.00,15.21,0.00,1.00,0.00,0.00,0 --177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0 -9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0 -14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0 --163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0 -24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0 --153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0 -28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0 --144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0 -38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0 --134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0 -48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0 --124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0 -62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0 --115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0 -72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0 --100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0 -86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0 --86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0 -96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0 --76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0 -110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0 --62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0 -120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0 --52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0 -134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0 --43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0 -144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0 --33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0 -148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0 --24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0 -158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0 --19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0 -168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0 --9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0 -172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0 -4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0 -14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0 -19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0 --153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0 -28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0 --148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0 -38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0 --139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0 -48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0 --124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0 -57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0 --115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0 -72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0 --105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0 -81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0 --91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0 -96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0 --76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0 -105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0 --67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0 -120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0 --57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0 -129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0 --43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0 -139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0 --33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0 -148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0 --28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0 -158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0 --19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0 -163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0 --9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0 -172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0 -0.00,0.00,1.60,0.00,1.00,0.00,0.00,0 --177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0 -9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0 -14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0 --158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0 -24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0 --153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0 -33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0 --144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0 -43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0 --134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0 -52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0 --124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0 -62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0 --110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0 -72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0 --100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0 -86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0 --86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0 -96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0 --76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0 -110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0 --67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0 -120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0 --52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0 -129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0 --43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0 -139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0 --33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0 -148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0 --24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0 -158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0 --19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0 -168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0 -172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0 -4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0 -14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0 --163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0 -24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0 --153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0 -28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0 --144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0 -38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0 --134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0 -48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0 --124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0 -62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0 --115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0 -72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0 --100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0 -81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0 --91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0 -96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0 --81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0 -105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0 --67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0 -115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0 --57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0 -129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0 --48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0 -139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0 --38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0 -148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0 --28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0 -153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0 --19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0 -163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0 --9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0 -172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0 -0.00,0.00,13.61,0.00,1.00,0.00,0.00,0 --177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0 -9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0 --168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0 -24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0 --148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0 -33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0 --139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0 -43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0 --129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0 -52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0 --120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0 -62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0 --110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0 -76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0 --100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0 -86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0 --86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0 -96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0 --76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0 -105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0 --67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0 -120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0 --57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0 -129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0 --48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0 -139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0 --38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0 -148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0 -158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0 --19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0 -163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0 -172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0 -4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0 -14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0 --163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0 -24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0 --153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0 -33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0 --144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0 -43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0 --134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0 -52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0 --124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0 -62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0 --115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0 -72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0 --100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0 -81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0 --91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0 -96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0 --81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0 -105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0 --67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0 -115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0 --57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0 -124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0 --48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0 -134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0 --38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0 -144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0 --28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0 -153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0 --19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0 -163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0 --14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0 -172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0 --4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0 -0.00,0.00,3.20,0.00,1.00,0.00,0.00,0 --177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0 -9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0 -19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0 -24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0 --148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0 -33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0 --139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0 -43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0 --129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0 -52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0 --120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0 -67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0 --110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0 -76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0 --100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0 -86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0 --86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0 -96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0 --76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0 -105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0 --67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0 -115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0 --57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0 -129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0 --48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0 -139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0 --38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0 -148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0 -153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0 --19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0 -163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0 -172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0 -4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0 -14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0 -24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0 --153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0 -33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0 --144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0 -43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0 --134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0 -52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0 --124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0 -62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0 --110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0 -72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0 --100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0 -81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0 --91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0 -96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0 --81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0 -105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0 --72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0 -115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0 --57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0 -124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0 --48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0 -134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0 --38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0 -144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0 --28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0 -153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0 --24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0 -163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0 --14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0 -172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -0.00,0.00,12.01,0.00,1.00,0.00,0.00,0 --177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0 -9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0 --158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0 -28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0 --148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0 -38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0 --139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0 -48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0 --129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0 -57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0 --120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0 -67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0 --110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0 -76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0 --100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0 -86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0 --86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0 -96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0 --76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0 -105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0 --67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0 -115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0 --57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0 -124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0 --48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0 -134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0 --38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0 -144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0 --28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0 -153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0 --19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0 -163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0 -172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0 -4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0 -14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0 -24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0 --148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0 -33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0 --139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0 -43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0 --129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0 -52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0 --120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0 -62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0 --110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0 -72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0 --100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0 -81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0 --91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0 -96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0 --81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0 -105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0 --72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0 -115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0 --62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0 -124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0 --52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0 -134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0 --43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0 -144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0 --33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0 -153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0 --24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0 -163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0 -172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0 -0.00,0.00,4.81,0.00,1.00,0.00,0.00,0 --177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0 -9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0 -19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0 -28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0 --148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0 -38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0 --139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0 -48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0 --129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0 -57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0 --120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0 -67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0 --110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0 -76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0 --100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0 -86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0 --86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0 -96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0 --76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0 -105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0 --67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0 -115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0 --57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0 -124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0 --48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0 -134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0 --38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0 -144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0 --28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0 -153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0 --19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0 -163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0 --9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0 -172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0 -4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0 -14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0 -24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0 --148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0 -33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0 --139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0 -43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0 --129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0 -52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0 --120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0 -62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0 --110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0 -72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0 --100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0 -81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0 --91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0 -96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0 --81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0 -105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0 --72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0 -115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0 --62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0 -124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0 --52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0 -134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0 --43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0 -144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0 --33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0 -153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0 --24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0 -163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0 -172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -0.00,0.00,10.40,0.00,1.00,0.00,0.00,0 --177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0 -9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0 -19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0 -28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0 --148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0 -38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0 --139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0 -48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0 --129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0 -57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0 --120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0 -67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0 --110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0 -76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0 --100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0 -86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0 --86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0 -96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0 --76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0 -105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0 --67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0 -115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0 --57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0 -124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0 --48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0 -134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0 --38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0 -144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0 --28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0 -153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0 -163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0 --9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0 -172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0 -4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0 -14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0 -24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0 -33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0 --139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0 -43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0 --129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0 -52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0 --120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0 -62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0 --110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0 -72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0 --100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0 -81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0 --91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0 -96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0 --81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0 -105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0 --72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0 -115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0 --62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0 -124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0 --52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0 -134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0 --43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0 -144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0 --33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0 -153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0 --24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0 -163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0 -172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,6.41,0.00,1.00,0.00,0.00,0 --177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0 -9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0 -19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0 --158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0 -28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0 --148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0 -38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0 --139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0 -48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0 --129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0 -57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0 --120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0 -67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0 --110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0 -76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0 --100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0 -86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0 --86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0 -96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0 --76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0 -105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0 --67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0 -115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0 --57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0 -124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0 --48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0 -134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0 --38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0 -144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0 --28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0 -153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0 -163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0 -172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0 -4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0 -14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0 --158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0 -24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0 -33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0 --139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0 -43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0 --129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0 -52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0 --120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0 -62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0 --110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0 -72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0 --100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0 -81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0 --91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0 -96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0 --81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0 -105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0 --72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0 -115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0 --62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0 -124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0 --52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0 -134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0 --43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0 -144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0 --33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0 -153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0 --24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0 -163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0 --14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0 -172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.80,0.00,1.00,0.00,0.00,0 --177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0 -9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0 -19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0 --158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0 -28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0 --148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0 -38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0 --139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0 -48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0 --129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0 -57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0 --120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0 -67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0 --110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0 -76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0 --100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0 -86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0 --86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0 -96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0 --76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0 -105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0 --67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0 -115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0 --57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0 -124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0 --48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0 -134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0 --38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0 -144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0 --28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0 -153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0 --19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0 -163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0 -172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0 --0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0 -4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0 --168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0 -14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0 --158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0 -24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0 --148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0 -33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0 --139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0 -43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0 --129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0 -52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0 --120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0 -62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0 --110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0 -72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0 --100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0 -81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0 --91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0 -96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0 --81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0 -105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0 --72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0 -115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0 --62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0 -124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0 --52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0 -134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0 --43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0 -144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0 --33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0 -153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0 --24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0 -163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0 --14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0 -172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.01,0.00,1.00,0.00,0.00,0 --177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0 --168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0 -19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0 --158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0 -28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0 --148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0 -38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0 --139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0 -48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0 --129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0 -57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0 --120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0 -67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0 --110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0 -76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0 --100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0 -86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0 --86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0 -96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0 --76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0 -105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0 --67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0 -115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0 --57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0 -124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0 --48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0 -134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0 --38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0 -144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0 --28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0 -153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0 --19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0 -163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0 --9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0 -172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0 --0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0 --168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0 -14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0 --158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0 -24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0 --148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0 -33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0 --139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0 -43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0 --129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0 -52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0 --120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0 -62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0 --110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0 -72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0 --100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0 -81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0 --91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0 -96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0 --81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0 -105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0 --72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0 -115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0 --62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0 -124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0 --52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0 -134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0 --43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0 -144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0 --33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0 -153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0 --24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0 -163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0 --14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0 --4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0 -0.00,0.00,7.20,0.00,1.00,0.00,0.00,0 --177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0 --168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0 -19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0 --158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0 --148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0 -38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0 --139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0 -48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0 --129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0 -57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0 --120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0 -67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0 --110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0 -76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0 --100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0 -86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0 --86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0 -96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0 --76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0 -105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0 --67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0 -115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0 --57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0 -124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0 --48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0 -134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0 --38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0 -144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0 --28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0 --19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0 -163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0 --9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0 --0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0 --168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0 -14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0 --158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0 --148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0 -33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0 --139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0 -43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0 --129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0 -52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0 --120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0 -62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0 --110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0 -72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0 --100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0 -81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0 --91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0 -96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0 --81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0 -105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0 --72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0 -115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0 --62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0 -124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0 --52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0 -134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0 --43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0 -144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0 --33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0 -153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0 --24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0 --14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0 --4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0 -0.00,0.00,9.61,0.00,1.00,0.00,0.00,0 --177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0 --168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0 --158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0 --148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0 --139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0 -48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0 --129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0 -57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0 --120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0 -67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0 --110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0 -76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0 --100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0 -86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0 --86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0 -96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0 --76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0 -105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0 --67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0 -115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0 --57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0 -124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0 --48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0 -134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0 --38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0 --28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0 --19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0 -163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0 --9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0 --0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0 --168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0 --158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0 --148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0 -33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0 --139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0 -43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0 --129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0 -52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0 --120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0 -62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0 --110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0 -72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0 --100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0 -81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0 --91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0 -96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0 --81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0 -105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0 --72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0 -115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0 --62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0 -124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0 --52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0 -134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0 --43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0 -144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0 --33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0 -153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0 --24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0 --14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0 -172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0 --4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0 -0.00,0.00,5.60,0.00,1.00,0.00,0.00,0 --177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0 --168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0 --158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0 -28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0 --148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0 --139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0 -48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0 --129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0 -57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0 --120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0 -67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0 --110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0 -76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0 --100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0 -86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0 --86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0 -96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0 --76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0 -105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0 --67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0 -115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0 --57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0 -124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0 --48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0 -134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0 --38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0 --28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0 -153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0 --19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0 --9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0 --0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0 --168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0 --158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0 --148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0 -33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0 --139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0 -43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0 --129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0 -52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0 --120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0 -62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0 --110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0 -72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0 --100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0 -81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0 --91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0 -96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0 --81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0 -105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0 --72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0 -115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0 --62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0 -124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0 --52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0 -134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0 --43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0 -144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0 --33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0 -153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0 --24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0 --14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0 --4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0 -0.00,0.00,11.21,0.00,1.00,0.00,0.00,0 --177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0 --168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0 --158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0 -28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0 --148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0 -38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0 --139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0 -48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0 --129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0 -57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0 --120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0 -67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0 --110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0 -76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0 --100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0 -86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0 --86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0 -96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0 --76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0 -105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0 --67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0 -115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0 --57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0 -124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0 --48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0 -134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0 --38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0 -144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0 --28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0 -153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0 --19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0 --9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0 --0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0 --168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0 --158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0 --148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0 --139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0 -43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0 --129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0 -52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0 --120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0 -62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0 --110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0 -72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0 --100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0 -81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0 --91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0 -96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0 --81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0 -105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0 --72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0 -115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0 --62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0 -124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0 --52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0 -134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0 --43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0 --33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0 -153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0 --24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0 -163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0 --14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0 --4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,3.99,0.00,1.00,0.00,0.00,0 --177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0 --168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0 -19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0 --158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0 --148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0 -33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0 --139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0 -43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0 --129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0 -52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0 --120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0 -62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0 --110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0 -76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0 --100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0 -86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0 --86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0 -96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0 --76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0 -105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0 --67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0 -120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0 --57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0 --48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0 -139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0 --38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0 -148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0 --28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0 -158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0 --19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0 -163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0 --9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0 --0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0 --168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0 --158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0 --153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0 --144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0 -43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0 --134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0 --124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0 -62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0 --110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0 -72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0 --100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0 -81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0 --91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0 -96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0 --81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0 -105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0 --72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0 -115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0 --57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0 -124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0 --48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0 -134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0 --38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0 --28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0 --24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0 --14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0 --4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,12.82,0.00,1.00,0.00,0.00,0 --177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0 --168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0 --158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0 --148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0 -33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0 --139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0 --129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0 --120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0 -62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0 --110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0 -76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0 --100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0 -86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0 --86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0 -96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0 --76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0 -110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0 --67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0 -120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0 --57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0 --48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0 --38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0 --28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0 --19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0 --9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0 --0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0 --168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0 --163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0 --153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0 -33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0 --144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0 -43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0 --134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0 --124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0 -62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0 --115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0 -72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0 --100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0 -81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0 --91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0 -96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0 --81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0 -105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0 --67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0 -115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0 --57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0 -124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0 --48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0 -134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0 --38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0 -144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0 --28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0 --19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0 --14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0 --4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,2.39,0.00,1.00,0.00,0.00,0 --177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0 --168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0 --158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0 --153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0 -33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0 --144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0 --134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0 --124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0 -62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0 --110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0 -72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0 --100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0 -86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0 --86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0 -96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0 --76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0 -110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0 --67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0 -120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0 --52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0 -129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0 --43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0 --33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0 --24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0 --19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0 --9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0 --0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0 --168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0 --163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0 --153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0 -28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0 --144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0 -38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0 --134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0 -48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0 --124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0 -57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0 --115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0 -72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0 --105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0 -81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0 --91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0 -96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0 --81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0 -105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0 --67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0 -120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0 --57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0 -129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0 --48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0 -139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0 --38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0 --28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0 -158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0 --19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0 --9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0 --4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0 -0.00,0.00,14.42,0.00,1.00,0.00,0.00,0 --177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0 --168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0 --163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0 -24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0 --153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0 -28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0 --144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0 -38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0 --134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0 -48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0 --124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0 -62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0 --115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0 -72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0 --100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0 -86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0 --86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0 -96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0 --76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0 -110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0 --62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0 -120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0 --52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0 -134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0 --43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0 --33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0 --24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0 -158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0 --14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0 --9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0 --0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0 --172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0 --163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0 --153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0 --148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0 -38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0 --139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0 -48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0 --129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0 --115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0 -67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0 --105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0 -81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0 --91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0 -96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0 --76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0 -105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0 --67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0 -120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0 --52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0 -129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0 --43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0 -139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0 --33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0 --28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0 --19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0 -163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0 --9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0 --4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0 -0.00,0.00,0.79,0.00,1.00,0.00,0.00,0 --177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0 -4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0 --168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0 --163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0 -19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0 --153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0 -28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0 --148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0 -38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0 --139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0 -48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0 --124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0 -57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0 --115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0 -72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0 --100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0 -86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0 --86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0 -100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0 --76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0 -110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0 --62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0 -124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0 --48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0 -134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0 --38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0 --28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0 --24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0 -163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0 --14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0 -168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0 --9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0 --0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0 --177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0 --172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0 -9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0 --163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0 --158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0 --148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0 -33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0 --139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0 -43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0 --129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0 --120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0 -67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0 --105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0 -81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0 --91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0 -96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0 --76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0 -110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0 --67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0 -120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0 --52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0 -134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0 --43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0 -144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0 --33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0 -153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0 --24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0 --19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0 -168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0 --9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0 --4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0 diff --git a/scripts/testv/stvOMASA_3ISM_1MASA1TC32c.met b/scripts/testv/stvOMASA_3ISM_1MASA1TC32c.met deleted file mode 100644 index f2ce23bd2054140614b7d2ad88769d5d2db77990..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_1MASA1TC32c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6349efe3448d28979b80744bcdc29d57f1c025704939b42d7b913d7fc3f23ccc -size 102300 diff --git a/scripts/testv/stvOMASA_3ISM_1MASA1TC32c_ISM1.csv b/scripts/testv/stvOMASA_3ISM_1MASA1TC32c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_1MASA1TC32c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_3ISM_1MASA1TC32c_ISM2.csv b/scripts/testv/stvOMASA_3ISM_1MASA1TC32c_ISM2.csv deleted file mode 100644 index f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_1MASA1TC32c_ISM2.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,4.80,16.00,0.00,1.00,0.00,0.00,0 -0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0 -0.00,14.40,15.96,0.00,1.00,4.80,9.60,0 -0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0 -0.00,24.00,15.91,0.00,1.00,14.40,19.20,0 -0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0 -0.00,33.60,15.87,0.00,1.00,19.20,28.80,0 -0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0 -0.00,43.20,15.83,0.00,1.00,28.80,38.40,0 -0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0 -0.00,52.80,15.79,0.00,1.00,38.40,48.00,0 -0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0 -0.00,62.40,15.74,0.00,1.00,48.00,57.60,0 -4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0 -4.80,72.00,15.70,0.00,1.00,57.60,67.20,0 -4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0 -9.60,81.60,15.66,0.00,1.00,72.00,76.80,0 -19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0 -134.40,86.40,15.62,0.00,1.00,86.40,86.40,0 -168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0 -172.80,76.80,15.57,0.00,1.00,100.80,86.40,0 -177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0 -177.60,67.20,15.53,0.00,1.00,110.40,76.80,0 -177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0 -177.60,57.60,15.49,0.00,1.00,124.80,67.20,0 -177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0 -177.60,48.00,15.44,0.00,1.00,134.40,57.60,0 -177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0 -177.60,38.40,15.40,0.00,1.00,144.00,48.00,0 -177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0 -177.60,28.80,15.36,0.00,1.00,153.60,38.40,0 -177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0 -177.60,19.20,15.32,0.00,1.00,158.40,28.80,0 -177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0 -177.60,9.60,15.27,0.00,1.00,168.00,19.20,0 -177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0 -177.60,0.00,15.23,0.00,1.00,172.80,9.60,0 --177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0 --177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0 --177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0 --177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0 --177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0 --177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0 --177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0 --177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0 --177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0 --177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0 --177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0 --177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0 --177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0 --177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0 --177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0 --177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0 --172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0 --168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0 --134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0 --19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0 --9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0 --4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0 --4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0 --4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0 --0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0 --0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0 --0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0 --0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0 --0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0 --0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0 --0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0 --0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0 --0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0 --0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0 --0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0 --0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0 --0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0 --0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,14.40,0.00,1.00,0.00,0.00,0 --0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0 --0.00,14.40,14.36,0.00,1.00,9.60,9.60,0 --0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0 --0.00,24.00,14.31,0.00,1.00,14.40,19.20,0 --0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0 --0.00,33.60,14.27,0.00,1.00,24.00,28.80,0 --4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0 --4.80,43.20,14.23,0.00,1.00,28.80,38.40,0 --4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0 --4.80,52.80,14.18,0.00,1.00,38.40,48.00,0 --4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0 --4.80,62.40,14.14,0.00,1.00,48.00,57.60,0 --9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0 --9.60,72.00,14.10,0.00,1.00,62.40,67.20,0 --14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0 --24.00,81.60,14.06,0.00,1.00,72.00,76.80,0 --43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0 --110.40,86.40,14.01,0.00,1.00,86.40,86.40,0 --148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0 --163.20,76.80,13.97,0.00,1.00,96.00,81.60,0 --168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0 --172.80,67.20,13.93,0.00,1.00,110.40,72.00,0 --172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0 --172.80,57.60,13.89,0.00,1.00,120.00,62.40,0 --172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0 --177.60,48.00,13.84,0.00,1.00,134.40,52.80,0 --177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0 --177.60,38.40,13.80,0.00,1.00,144.00,43.20,0 --177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0 --177.60,28.80,13.76,0.00,1.00,148.80,33.60,0 --177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0 --177.60,19.20,13.71,0.00,1.00,158.40,24.00,0 --177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0 --177.60,9.60,13.67,0.00,1.00,168.00,14.40,0 --177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0 --177.60,0.00,13.63,0.00,1.00,172.80,4.80,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0 -177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0 -177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0 -177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0 -177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0 -177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0 -177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0 -172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0 -172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0 -172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0 -172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0 -168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0 -163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0 -148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0 -110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0 -43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0 -24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0 -14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0 -9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0 -9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0 -4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0 -4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0 -4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0 -4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0 -4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0 -0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0 -0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0 -0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0 -0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0 -0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,12.80,0.00,1.00,0.00,0.00,0 --0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0 --0.00,14.40,12.75,0.00,1.00,9.60,9.60,0 --4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0 --4.80,24.00,12.71,0.00,1.00,14.40,19.20,0 --4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0 --4.80,33.60,12.67,0.00,1.00,24.00,28.80,0 --4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0 --9.60,43.20,12.62,0.00,1.00,33.60,38.40,0 --9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0 --9.60,52.80,12.58,0.00,1.00,43.20,48.00,0 --14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0 --14.40,62.40,12.54,0.00,1.00,52.80,57.60,0 --19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0 --24.00,72.00,12.50,0.00,1.00,62.40,67.20,0 --33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0 --43.20,76.80,12.45,0.00,1.00,72.00,72.00,0 --67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0 --96.00,81.60,12.41,0.00,1.00,86.40,81.60,0 --124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0 --144.00,76.80,12.37,0.00,1.00,96.00,76.80,0 --153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0 --158.40,67.20,12.33,0.00,1.00,110.40,72.00,0 --163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0 --168.00,57.60,12.28,0.00,1.00,120.00,62.40,0 --168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0 --168.00,48.00,12.24,0.00,1.00,129.60,52.80,0 --172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0 --172.80,38.40,12.20,0.00,1.00,139.20,43.20,0 --172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0 --172.80,28.80,12.15,0.00,1.00,148.80,33.60,0 --177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0 --177.60,19.20,12.11,0.00,1.00,158.40,24.00,0 --177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0 --177.60,9.60,12.07,0.00,1.00,168.00,14.40,0 --177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0 --177.60,0.00,12.03,0.00,1.00,172.80,4.80,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0 -177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0 -172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0 -172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0 -168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0 -168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0 -168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0 -163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0 -158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0 -153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0 -144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0 -124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0 -96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0 -67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0 -43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0 -33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0 -24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0 -19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0 -14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0 -14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0 -9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0 -9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0 -9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0 -4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0 -4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0 -0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,11.19,0.00,1.00,0.00,0.00,0 --0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0 --4.80,14.40,11.15,0.00,1.00,9.60,9.60,0 --4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0 --4.80,24.00,11.11,0.00,1.00,14.40,19.20,0 --4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0 --9.60,33.60,11.07,0.00,1.00,24.00,28.80,0 --9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0 --14.40,43.20,11.02,0.00,1.00,33.60,38.40,0 --14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0 --14.40,52.80,10.98,0.00,1.00,43.20,48.00,0 --19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0 --24.00,57.60,10.94,0.00,1.00,52.80,52.80,0 --28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0 --33.60,67.20,10.89,0.00,1.00,62.40,62.40,0 --43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0 --57.60,72.00,10.85,0.00,1.00,76.80,72.00,0 --76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0 --96.00,76.80,10.81,0.00,1.00,86.40,76.80,0 --115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0 --129.60,72.00,10.77,0.00,1.00,96.00,76.80,0 --139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0 --148.80,67.20,10.72,0.00,1.00,105.60,67.20,0 --153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0 --158.40,57.60,10.68,0.00,1.00,120.00,62.40,0 --163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0 --163.20,48.00,10.64,0.00,1.00,129.60,52.80,0 --168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0 --168.00,38.40,10.60,0.00,1.00,139.20,43.20,0 --172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0 --172.80,28.80,10.55,0.00,1.00,148.80,33.60,0 --172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0 --172.80,19.20,10.51,0.00,1.00,158.40,24.00,0 --177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0 --177.60,9.60,10.47,0.00,1.00,163.20,14.40,0 --177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0 --177.60,0.00,10.42,0.00,1.00,172.80,4.80,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0 -168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0 -168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0 -163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0 -163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0 -158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0 -153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0 -148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0 -139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0 -129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0 -115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0 -96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0 -76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0 -57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0 -43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0 -33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0 -28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0 -24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0 -19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0 -14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0 -14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0 -14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0 -9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0 -9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0 -4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0 -4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0 -0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,9.59,0.00,1.00,0.00,0.00,0 --4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0 --4.80,14.40,9.55,0.00,1.00,9.60,9.60,0 --4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0 --9.60,24.00,9.51,0.00,1.00,19.20,19.20,0 --9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0 --9.60,33.60,9.46,0.00,1.00,24.00,28.80,0 --14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0 --14.40,38.40,9.42,0.00,1.00,33.60,33.60,0 --19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0 --24.00,48.00,9.38,0.00,1.00,43.20,43.20,0 --24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0 --28.80,57.60,9.34,0.00,1.00,52.80,52.80,0 --38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0 --43.20,62.40,9.29,0.00,1.00,67.20,62.40,0 --52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0 --62.40,72.00,9.25,0.00,1.00,76.80,67.20,0 --76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0 --96.00,72.00,9.21,0.00,1.00,86.40,72.00,0 --110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0 --120.00,67.20,9.16,0.00,1.00,96.00,72.00,0 --134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0 --139.20,62.40,9.12,0.00,1.00,105.60,67.20,0 --148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0 --153.60,57.60,9.08,0.00,1.00,115.20,57.60,0 --158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0 --158.40,48.00,9.04,0.00,1.00,129.60,52.80,0 --163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0 --163.20,38.40,8.99,0.00,1.00,139.20,43.20,0 --168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0 --168.00,28.80,8.95,0.00,1.00,148.80,33.60,0 --172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0 --172.80,19.20,8.91,0.00,1.00,153.60,24.00,0 --172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0 --177.60,9.60,8.87,0.00,1.00,163.20,14.40,0 --177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0 --177.60,0.00,8.82,0.00,1.00,172.80,4.80,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0 -168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0 -163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0 -163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0 -158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0 -158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0 -153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0 -148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0 -139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0 -134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0 -120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0 -110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0 -96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0 -76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0 -62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0 -52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0 -43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0 -38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0 -28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0 -24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0 -24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0 -19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0 -14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0 -14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0 -9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0 -9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0 -9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0 -0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,7.99,0.00,1.00,0.00,0.00,0 --4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0 --4.80,14.40,7.95,0.00,1.00,9.60,9.60,0 --9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0 --9.60,24.00,7.90,0.00,1.00,19.20,19.20,0 --14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0 --14.40,28.80,7.86,0.00,1.00,28.80,24.00,0 --19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0 --19.20,38.40,7.82,0.00,1.00,38.40,33.60,0 --24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0 --28.80,48.00,7.78,0.00,1.00,48.00,43.20,0 --33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0 --38.40,52.80,7.73,0.00,1.00,57.60,52.80,0 --43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0 --48.00,62.40,7.69,0.00,1.00,67.20,57.60,0 --57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0 --67.20,67.20,7.65,0.00,1.00,76.80,62.40,0 --81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0 --91.20,67.20,7.60,0.00,1.00,86.40,67.20,0 --105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0 --115.20,67.20,7.56,0.00,1.00,96.00,67.20,0 --124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0 --134.40,57.60,7.52,0.00,1.00,105.60,62.40,0 --139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0 --144.00,52.80,7.48,0.00,1.00,115.20,57.60,0 --148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0 --153.60,43.20,7.43,0.00,1.00,124.80,48.00,0 --158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0 --163.20,38.40,7.39,0.00,1.00,134.40,38.40,0 --163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0 --168.00,28.80,7.35,0.00,1.00,144.00,33.60,0 --168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0 --172.80,19.20,7.31,0.00,1.00,153.60,24.00,0 --172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0 --177.60,9.60,7.26,0.00,1.00,163.20,14.40,0 --177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0 --177.60,0.00,7.22,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0 -163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0 -158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0 -153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0 -148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0 -144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0 -139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0 -134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0 -124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0 -115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0 -105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0 -91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0 -81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0 -67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0 -57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0 -48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0 -43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0 -38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0 -33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0 -28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0 -24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0 -19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0 -19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0 -14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0 -9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0 -0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,6.39,0.00,1.00,0.00,0.00,0 --4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0 --4.80,14.40,6.34,0.00,1.00,9.60,9.60,0 --9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0 --9.60,19.20,6.30,0.00,1.00,19.20,14.40,0 --14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0 --19.20,28.80,6.26,0.00,1.00,28.80,24.00,0 --19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0 --24.00,38.40,6.22,0.00,1.00,38.40,33.60,0 --28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0 --33.60,43.20,6.17,0.00,1.00,48.00,38.40,0 --38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0 --43.20,52.80,6.13,0.00,1.00,57.60,48.00,0 --48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0 --52.80,57.60,6.09,0.00,1.00,67.20,52.80,0 --62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0 --72.00,62.40,6.05,0.00,1.00,76.80,57.60,0 --81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0 --91.20,62.40,6.00,0.00,1.00,86.40,62.40,0 --100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0 --110.40,62.40,5.96,0.00,1.00,96.00,62.40,0 --120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0 --129.60,57.60,5.92,0.00,1.00,105.60,57.60,0 --134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0 --139.20,48.00,5.87,0.00,1.00,115.20,52.80,0 --144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0 --148.80,43.20,5.83,0.00,1.00,124.80,48.00,0 --153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0 --158.40,33.60,5.79,0.00,1.00,134.40,38.40,0 --163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0 --163.20,28.80,5.75,0.00,1.00,144.00,28.80,0 --168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0 --168.00,19.20,5.70,0.00,1.00,153.60,24.00,0 --172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0 --172.80,9.60,5.66,0.00,1.00,163.20,14.40,0 --177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0 --177.60,0.00,5.62,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0 -163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0 -158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0 -148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0 -144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0 -139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0 -134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0 -129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0 -120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0 -110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0 -100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0 -91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0 -81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0 -72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0 -62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0 -52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0 -48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0 -43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0 -38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0 -33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0 -28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0 -24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0 -19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0 -19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0 -9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0 -4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0 -0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,4.79,0.00,1.00,0.00,0.00,0 --4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0 --9.60,14.40,4.74,0.00,1.00,9.60,9.60,0 --9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0 --14.40,19.20,4.70,0.00,1.00,19.20,14.40,0 --14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0 --19.20,28.80,4.66,0.00,1.00,28.80,24.00,0 --24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0 --28.80,33.60,4.61,0.00,1.00,38.40,28.80,0 --28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0 --33.60,43.20,4.57,0.00,1.00,48.00,38.40,0 --38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0 --48.00,48.00,4.53,0.00,1.00,57.60,43.20,0 --52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0 --57.60,52.80,4.49,0.00,1.00,67.20,48.00,0 --67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0 --76.80,57.60,4.44,0.00,1.00,76.80,52.80,0 --81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0 --91.20,57.60,4.40,0.00,1.00,86.40,57.60,0 --100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0 --110.40,57.60,4.36,0.00,1.00,96.00,57.60,0 --115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0 --124.80,52.80,4.32,0.00,1.00,105.60,52.80,0 --129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0 --139.20,48.00,4.27,0.00,1.00,115.20,48.00,0 --144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0 --148.80,38.40,4.23,0.00,1.00,124.80,43.20,0 --153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0 --153.60,33.60,4.19,0.00,1.00,134.40,38.40,0 --158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0 --163.20,24.00,4.14,0.00,1.00,144.00,28.80,0 --163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0 --168.00,19.20,4.10,0.00,1.00,153.60,24.00,0 --172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0 --172.80,9.60,4.06,0.00,1.00,163.20,14.40,0 --177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0 --177.60,0.00,4.02,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0 -163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0 -163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0 -158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0 -148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0 -144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0 -139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0 -129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0 -124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0 -115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0 -110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0 -100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0 -91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0 -81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0 -76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0 -67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0 -57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0 -52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0 -48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0 -38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0 -33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0 -28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0 -28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0 -24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0 -19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0 -14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0 -14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0 -9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0 -0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.18,0.00,1.00,0.00,0.00,0 --4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0 --9.60,9.60,3.14,0.00,1.00,9.60,9.60,0 --9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0 --14.40,19.20,3.10,0.00,1.00,19.20,14.40,0 --19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0 --24.00,24.00,3.05,0.00,1.00,28.80,24.00,0 --24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0 --28.80,33.60,3.01,0.00,1.00,38.40,28.80,0 --33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0 --38.40,38.40,2.97,0.00,1.00,48.00,33.60,0 --43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0 --48.00,43.20,2.93,0.00,1.00,57.60,43.20,0 --52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0 --62.40,48.00,2.88,0.00,1.00,67.20,48.00,0 --67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0 --76.80,52.80,2.84,0.00,1.00,76.80,48.00,0 --86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0 --91.20,52.80,2.80,0.00,1.00,86.40,52.80,0 --100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0 --105.60,52.80,2.76,0.00,1.00,96.00,52.80,0 --115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0 --120.00,48.00,2.71,0.00,1.00,105.60,48.00,0 --129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0 --134.40,43.20,2.67,0.00,1.00,115.20,43.20,0 --139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0 --144.00,38.40,2.63,0.00,1.00,124.80,38.40,0 --148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0 --153.60,33.60,2.58,0.00,1.00,134.40,33.60,0 --158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0 --158.40,24.00,2.54,0.00,1.00,144.00,28.80,0 --163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0 --168.00,19.20,2.50,0.00,1.00,153.60,19.20,0 --168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.46,0.00,1.00,163.20,14.40,0 --177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.41,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0 -158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0 -148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0 -144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0 -139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0 -134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0 -129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0 -120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0 -115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0 -105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0 -100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0 -91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0 -86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0 -76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0 -67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0 -62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0 -52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0 -48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0 -43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0 -38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0 -33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0 -28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0 -24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0 -24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0 -19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0 -0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.58,0.00,1.00,0.00,0.00,0 --4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.54,0.00,1.00,9.60,4.80,0 --14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0 --14.40,19.20,1.50,0.00,1.00,19.20,14.40,0 --19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0 --24.00,24.00,1.45,0.00,1.00,28.80,19.20,0 --28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0 --33.60,28.80,1.41,0.00,1.00,38.40,28.80,0 --38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0 --43.20,38.40,1.37,0.00,1.00,48.00,33.60,0 --48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0 --52.80,43.20,1.32,0.00,1.00,57.60,38.40,0 --57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0 --62.40,43.20,1.28,0.00,1.00,67.20,43.20,0 --72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0 --76.80,48.00,1.24,0.00,1.00,76.80,43.20,0 --86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0 --91.20,48.00,1.20,0.00,1.00,86.40,48.00,0 --100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0 --105.60,48.00,1.15,0.00,1.00,96.00,48.00,0 --110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0 --120.00,43.20,1.11,0.00,1.00,105.60,43.20,0 --124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0 --129.60,38.40,1.07,0.00,1.00,115.20,43.20,0 --134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0 --139.20,33.60,1.03,0.00,1.00,124.80,38.40,0 --144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0 --148.80,28.80,0.98,0.00,1.00,134.40,33.60,0 --153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0 --158.40,24.00,0.94,0.00,1.00,144.00,24.00,0 --163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0 --163.20,14.40,0.90,0.00,1.00,153.60,19.20,0 --168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.85,0.00,1.00,163.20,14.40,0 --172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.81,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0 -148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0 -144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0 -139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0 -134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0 -129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0 -124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0 -120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0 -110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0 -105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0 -100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0 -91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0 -86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0 -76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0 -72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0 -62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0 -57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0 -52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0 -48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0 -43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0 -38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0 -28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0 -19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0 -0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,0.00,0.00,1.00,0.00,0.00,0 --4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0 --9.60,9.60,0.04,0.00,1.00,9.60,4.80,0 --14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0 --19.20,14.40,0.09,0.00,1.00,19.20,14.40,0 --24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0 --24.00,24.00,0.13,0.00,1.00,28.80,19.20,0 --28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0 --33.60,28.80,0.17,0.00,1.00,38.40,24.00,0 --38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0 --43.20,33.60,0.21,0.00,1.00,48.00,28.80,0 --48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0 --52.80,38.40,0.26,0.00,1.00,57.60,33.60,0 --62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0 --67.20,38.40,0.30,0.00,1.00,67.20,38.40,0 --72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0 --76.80,43.20,0.34,0.00,1.00,76.80,38.40,0 --86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0 --91.20,43.20,0.38,0.00,1.00,86.40,43.20,0 --96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0 --105.60,43.20,0.43,0.00,1.00,96.00,43.20,0 --110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0 --115.20,38.40,0.47,0.00,1.00,105.60,38.40,0 --124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0 --129.60,38.40,0.51,0.00,1.00,115.20,38.40,0 --134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0 --139.20,33.60,0.56,0.00,1.00,124.80,33.60,0 --144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0 --148.80,28.80,0.60,0.00,1.00,134.40,28.80,0 --153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0 --158.40,19.20,0.64,0.00,1.00,144.00,24.00,0 --158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0 --163.20,14.40,0.68,0.00,1.00,153.60,19.20,0 --168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.73,0.00,1.00,163.20,9.60,0 --172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.77,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0 -158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0 -158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0 -148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0 -144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0 -139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0 -134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0 -129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0 -124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0 -115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0 -110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0 -105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0 -96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0 -91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0 -86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0 -76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0 -72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0 -67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0 -62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0 -52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0 -48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0 -43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0 -38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0 -28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0 -19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0 -0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.60,0.00,1.00,0.00,0.00,0 --9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.64,0.00,1.00,9.60,4.80,0 --14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0 --19.20,14.40,1.69,0.00,1.00,19.20,9.60,0 --24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0 --28.80,19.20,1.73,0.00,1.00,28.80,19.20,0 --33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0 --38.40,24.00,1.77,0.00,1.00,38.40,24.00,0 --43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0 --48.00,28.80,1.82,0.00,1.00,48.00,28.80,0 --52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0 --57.60,33.60,1.86,0.00,1.00,57.60,28.80,0 --62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0 --67.20,38.40,1.90,0.00,1.00,67.20,33.60,0 --72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0 --81.60,38.40,1.94,0.00,1.00,76.80,38.40,0 --86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0 --91.20,38.40,1.99,0.00,1.00,86.40,38.40,0 --96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0 --105.60,38.40,2.03,0.00,1.00,96.00,38.40,0 --110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0 --115.20,33.60,2.07,0.00,1.00,105.60,33.60,0 --120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0 --124.80,33.60,2.11,0.00,1.00,115.20,33.60,0 --129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0 --134.40,28.80,2.16,0.00,1.00,124.80,28.80,0 --139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0 --144.00,24.00,2.20,0.00,1.00,134.40,24.00,0 --148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0 --153.60,19.20,2.24,0.00,1.00,144.00,19.20,0 --158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0 --163.20,14.40,2.29,0.00,1.00,153.60,14.40,0 --168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.33,0.00,1.00,163.20,9.60,0 --172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.37,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0 -153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0 -144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0 -134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0 -124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0 -120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0 -115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0 -110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0 -105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0 -96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0 -91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0 -86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0 -81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0 -72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0 -67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0 -62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0 -57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0 -52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0 -48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0 -43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0 -38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0 -33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0 -28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0 -14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.20,0.00,1.00,0.00,0.00,0 --9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0 --14.40,9.60,3.25,0.00,1.00,9.60,4.80,0 --14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0 --19.20,14.40,3.29,0.00,1.00,19.20,9.60,0 --24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0 --28.80,19.20,3.33,0.00,1.00,28.80,14.40,0 --33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0 --38.40,24.00,3.38,0.00,1.00,38.40,19.20,0 --43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0 --48.00,24.00,3.42,0.00,1.00,48.00,24.00,0 --52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0 --57.60,28.80,3.46,0.00,1.00,57.60,28.80,0 --62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0 --67.20,33.60,3.50,0.00,1.00,67.20,28.80,0 --72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0 --81.60,33.60,3.55,0.00,1.00,76.80,33.60,0 --86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0 --91.20,33.60,3.59,0.00,1.00,86.40,33.60,0 --96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0 --100.80,33.60,3.63,0.00,1.00,96.00,33.60,0 --110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0 --115.20,33.60,3.67,0.00,1.00,105.60,28.80,0 --120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0 --124.80,28.80,3.72,0.00,1.00,115.20,28.80,0 --129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0 --134.40,24.00,3.76,0.00,1.00,124.80,24.00,0 --139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0 --144.00,19.20,3.80,0.00,1.00,134.40,24.00,0 --148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0 --153.60,14.40,3.85,0.00,1.00,144.00,19.20,0 --158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0 --163.20,9.60,3.89,0.00,1.00,153.60,14.40,0 --168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0 --168.00,4.80,3.93,0.00,1.00,163.20,9.60,0 --172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0 --177.60,0.00,3.97,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0 -124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0 -120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0 -115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0 -110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0 -100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0 -96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0 -91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0 -86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0 -81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0 -72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0 -67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0 -62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0 -57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0 -52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0 -48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0 -43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0 -38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0 -33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0 -28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0 -24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0 -14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0 -14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0 --4.80,0.00,4.81,0.00,1.00,0.00,0.00,0 --9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0 --14.40,4.80,4.85,0.00,1.00,9.60,4.80,0 --19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0 --19.20,9.60,4.89,0.00,1.00,19.20,9.60,0 --24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0 --28.80,14.40,4.93,0.00,1.00,28.80,14.40,0 --33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0 --38.40,19.20,4.98,0.00,1.00,38.40,14.40,0 --43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0 --48.00,24.00,5.02,0.00,1.00,48.00,19.20,0 --52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0 --57.60,24.00,5.06,0.00,1.00,57.60,24.00,0 --62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0 --72.00,28.80,5.11,0.00,1.00,67.20,24.00,0 --76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0 --81.60,28.80,5.15,0.00,1.00,76.80,28.80,0 --86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0 --91.20,28.80,5.19,0.00,1.00,86.40,28.80,0 --96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0 --100.80,28.80,5.23,0.00,1.00,96.00,28.80,0 --105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0 --115.20,28.80,5.28,0.00,1.00,105.60,28.80,0 --120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0 --124.80,24.00,5.32,0.00,1.00,115.20,24.00,0 --129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0 --134.40,24.00,5.36,0.00,1.00,124.80,24.00,0 --139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0 --144.00,19.20,5.40,0.00,1.00,134.40,19.20,0 --148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0 --153.60,14.40,5.45,0.00,1.00,144.00,14.40,0 --158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0 --163.20,9.60,5.49,0.00,1.00,153.60,9.60,0 --163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0 --168.00,4.80,5.53,0.00,1.00,163.20,9.60,0 --172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0 --177.60,0.00,5.58,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0 -163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0 -129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0 -124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0 -120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0 -115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0 -105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0 -100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0 -96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0 -91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0 -86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0 -81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0 -76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0 -72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0 -62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0 -57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0 -52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0 -48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0 -43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0 -38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0 -33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0 -28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0 -24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0 -19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0 -19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0 -0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,6.41,0.00,1.00,0.00,0.00,0 --9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0 --14.40,4.80,6.45,0.00,1.00,9.60,4.80,0 --19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0 --24.00,9.60,6.49,0.00,1.00,19.20,9.60,0 --28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0 --33.60,14.40,6.54,0.00,1.00,28.80,9.60,0 --33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0 --38.40,14.40,6.58,0.00,1.00,38.40,14.40,0 --43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0 --48.00,19.20,6.62,0.00,1.00,48.00,14.40,0 --57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0 --62.40,19.20,6.66,0.00,1.00,57.60,19.20,0 --67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0 --72.00,24.00,6.71,0.00,1.00,67.20,19.20,0 --76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0 --81.60,24.00,6.75,0.00,1.00,76.80,24.00,0 --86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0 --91.20,24.00,6.79,0.00,1.00,86.40,24.00,0 --96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0 --100.80,24.00,6.84,0.00,1.00,96.00,24.00,0 --105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0 --110.40,24.00,6.88,0.00,1.00,105.60,24.00,0 --115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0 --120.00,19.20,6.92,0.00,1.00,115.20,19.20,0 --129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0 --134.40,19.20,6.96,0.00,1.00,124.80,19.20,0 --139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0 --144.00,14.40,7.01,0.00,1.00,134.40,14.40,0 --148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0 --148.80,14.40,7.05,0.00,1.00,144.00,14.40,0 --153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0 --158.40,9.60,7.09,0.00,1.00,153.60,9.60,0 --163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0 --168.00,4.80,7.13,0.00,1.00,163.20,4.80,0 --172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0 --177.60,0.00,7.18,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0 -163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0 -158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0 -148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0 -144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0 -134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0 -129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0 -120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0 -115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0 -110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0 -105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0 -100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0 -96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0 -91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0 -86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0 -81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0 -76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0 -72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0 -67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0 -62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0 -57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0 -48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0 -43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0 -38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0 -33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0 -33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0 -28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0 -24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0 -19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0 -0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,8.01,0.00,1.00,0.00,0.00,0 --9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0 --14.40,4.80,8.05,0.00,1.00,9.60,4.80,0 --19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0 --24.00,9.60,8.10,0.00,1.00,19.20,4.80,0 --28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0 --33.60,9.60,8.14,0.00,1.00,24.00,9.60,0 --38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0 --43.20,14.40,8.18,0.00,1.00,33.60,9.60,0 --48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0 --52.80,14.40,8.22,0.00,1.00,43.20,14.40,0 --57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0 --62.40,19.20,8.27,0.00,1.00,52.80,14.40,0 --67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0 --72.00,19.20,8.31,0.00,1.00,62.40,14.40,0 --76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0 --81.60,19.20,8.35,0.00,1.00,76.80,19.20,0 --86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0 --91.20,19.20,8.40,0.00,1.00,86.40,19.20,0 --96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0 --100.80,19.20,8.44,0.00,1.00,96.00,19.20,0 --105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0 --110.40,19.20,8.48,0.00,1.00,105.60,19.20,0 --115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0 --120.00,14.40,8.52,0.00,1.00,120.00,14.40,0 --124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0 --129.60,14.40,8.57,0.00,1.00,129.60,14.40,0 --134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0 --139.20,14.40,8.61,0.00,1.00,139.20,14.40,0 --144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0 --148.80,9.60,8.65,0.00,1.00,148.80,9.60,0 --153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0 --158.40,4.80,8.69,0.00,1.00,158.40,9.60,0 --163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0 --168.00,4.80,8.74,0.00,1.00,163.20,4.80,0 --172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0 -148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0 -144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0 -139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0 -134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0 -129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0 -124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0 -120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0 -115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0 -110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0 -105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0 -100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0 -96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0 -91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0 -86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0 -81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0 -76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0 -72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0 -67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0 -62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0 -52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0 -48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0 -43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0 -38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0 -33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0 -28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0 -24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0 -19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0 -9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0 -0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,9.61,0.00,1.00,0.00,0.00,0 --9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0 --14.40,4.80,9.66,0.00,1.00,9.60,0.00,0 --19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0 --24.00,4.80,9.70,0.00,1.00,14.40,4.80,0 --28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0 --33.60,9.60,9.74,0.00,1.00,24.00,4.80,0 --38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0 --43.20,9.60,9.78,0.00,1.00,33.60,9.60,0 --48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0 --52.80,9.60,9.83,0.00,1.00,43.20,9.60,0 --57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0 --62.40,14.40,9.87,0.00,1.00,52.80,9.60,0 --67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0 --72.00,14.40,9.91,0.00,1.00,62.40,14.40,0 --76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0 --81.60,14.40,9.95,0.00,1.00,76.80,14.40,0 --86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0 --91.20,14.40,10.00,0.00,1.00,86.40,14.40,0 --96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0 --100.80,14.40,10.04,0.00,1.00,96.00,14.40,0 --105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0 --110.40,14.40,10.08,0.00,1.00,110.40,14.40,0 --115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0 --120.00,14.40,10.13,0.00,1.00,120.00,9.60,0 --124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0 --129.60,9.60,10.17,0.00,1.00,129.60,9.60,0 --134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0 --139.20,9.60,10.21,0.00,1.00,139.20,9.60,0 --144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0 --148.80,9.60,10.25,0.00,1.00,148.80,9.60,0 --153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0 --158.40,4.80,10.30,0.00,1.00,158.40,4.80,0 --163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0 --168.00,4.80,10.34,0.00,1.00,168.00,4.80,0 --172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0 -148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0 -144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0 -139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0 -134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0 -129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0 -124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0 -120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0 -115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0 -110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0 -105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0 -100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0 -96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0 -91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0 -86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0 -81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0 -76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0 -72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0 -67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0 -62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0 -48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0 -43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0 -38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0 -33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0 -28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0 -24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0 -19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0 -14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,11.21,0.00,1.00,0.00,0.00,0 --9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0 --14.40,0.00,11.26,0.00,1.00,9.60,0.00,0 --19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0 --24.00,4.80,11.30,0.00,1.00,14.40,4.80,0 --28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0 --33.60,4.80,11.34,0.00,1.00,24.00,4.80,0 --38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0 --43.20,4.80,11.39,0.00,1.00,33.60,4.80,0 --48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0 --52.80,9.60,11.43,0.00,1.00,43.20,4.80,0 --57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0 --62.40,9.60,11.47,0.00,1.00,52.80,4.80,0 --67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0 --72.00,9.60,11.51,0.00,1.00,62.40,9.60,0 --76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0 --81.60,9.60,11.56,0.00,1.00,72.00,9.60,0 --86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0 --91.20,9.60,11.60,0.00,1.00,86.40,9.60,0 --96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0 --100.80,9.60,11.64,0.00,1.00,96.00,9.60,0 --105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0 --110.40,9.60,11.68,0.00,1.00,110.40,9.60,0 --115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0 --120.00,9.60,11.73,0.00,1.00,120.00,9.60,0 --124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0 --129.60,9.60,11.77,0.00,1.00,129.60,4.80,0 --134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0 --139.20,4.80,11.81,0.00,1.00,139.20,4.80,0 --144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0 --148.80,4.80,11.86,0.00,1.00,148.80,4.80,0 --153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0 --158.40,4.80,11.90,0.00,1.00,158.40,4.80,0 --163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0 --168.00,0.00,11.94,0.00,1.00,168.00,4.80,0 --172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0 -158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0 -148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0 -144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0 -139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0 -134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0 -129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0 -124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0 -120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0 -115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0 -110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0 -105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0 -100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0 -96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0 -91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0 -86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0 -81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0 -76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0 -72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0 -67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0 -62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0 -57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0 -43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0 -33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0 -28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0 -24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0 -19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,12.82,0.00,1.00,0.00,0.00,0 --9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0 --14.40,0.00,12.86,0.00,1.00,9.60,0.00,0 --19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0 --24.00,0.00,12.90,0.00,1.00,14.40,0.00,0 --28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0 --33.60,4.80,12.95,0.00,1.00,24.00,0.00,0 --38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0 --43.20,4.80,12.99,0.00,1.00,28.80,0.00,0 --48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0 --52.80,4.80,13.03,0.00,1.00,38.40,4.80,0 --57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0 --62.40,4.80,13.07,0.00,1.00,48.00,4.80,0 --67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0 --72.00,4.80,13.12,0.00,1.00,62.40,4.80,0 --76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0 --81.60,4.80,13.16,0.00,1.00,72.00,4.80,0 --86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0 --91.20,4.80,13.20,0.00,1.00,86.40,4.80,0 --96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0 --100.80,4.80,13.24,0.00,1.00,96.00,4.80,0 --105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0 --110.40,4.80,13.29,0.00,1.00,110.40,4.80,0 --115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0 --120.00,4.80,13.33,0.00,1.00,120.00,4.80,0 --124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0 --129.60,4.80,13.37,0.00,1.00,134.40,4.80,0 --134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0 --139.20,4.80,13.42,0.00,1.00,144.00,4.80,0 --144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0 --148.80,4.80,13.46,0.00,1.00,153.60,0.00,0 --153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0 --158.40,0.00,13.50,0.00,1.00,158.40,0.00,0 --163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0 --168.00,0.00,13.54,0.00,1.00,168.00,0.00,0 --172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0 -163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0 -158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0 -153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0 -148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0 -144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0 -139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0 -134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0 -129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0 -124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0 -120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0 -115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0 -110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0 -105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0 -100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0 -96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0 -91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0 -86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0 -81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0 -76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0 -72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0 -67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0 -57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0 -52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0 -43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0 -33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0 -28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0 -24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0 -19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0 -14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0 -9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,14.42,0.00,1.00,0.00,0.00,0 --9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0 --14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0 --19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0 --24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0 --28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0 --33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0 --38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0 --43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0 --48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0 --52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0 --57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0 --62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0 --67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0 --72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0 --76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0 --81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0 --86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0 --91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0 --96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0 --100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0 --105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0 --110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0 --115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0 --120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0 --124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0 --129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0 --134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0 --139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0 --144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0 --148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0 --153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0 --158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0 --163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0 --168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0 --172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0 -177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0 -172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0 -168.00,0.00,15.25,0.00,1.00,4.80,0.00,0 -163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0 -158.40,0.00,15.30,0.00,1.00,9.60,0.00,0 -153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0 -148.80,0.00,15.34,0.00,1.00,19.20,0.00,0 -144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0 -139.20,0.00,15.38,0.00,1.00,28.80,0.00,0 -134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0 -129.60,0.00,15.42,0.00,1.00,33.60,0.00,0 -124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0 -120.00,0.00,15.47,0.00,1.00,43.20,0.00,0 -115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0 -110.40,0.00,15.51,0.00,1.00,57.60,0.00,0 -105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0 -100.80,0.00,15.55,0.00,1.00,67.20,0.00,0 -96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0 -91.20,0.00,15.59,0.00,1.00,81.60,0.00,0 -86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0 -81.60,0.00,15.64,0.00,1.00,96.00,0.00,0 -76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0 -72.00,0.00,15.68,0.00,1.00,110.40,0.00,0 -67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0 -62.40,0.00,15.72,0.00,1.00,120.00,0.00,0 -57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0 -52.80,0.00,15.77,0.00,1.00,134.40,0.00,0 -48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0 -43.20,0.00,15.81,0.00,1.00,144.00,0.00,0 -38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0 -33.60,0.00,15.85,0.00,1.00,153.60,0.00,0 -28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0 -24.00,0.00,15.89,0.00,1.00,158.40,0.00,0 -19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0 -14.40,0.00,15.94,0.00,1.00,168.00,0.00,0 -9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0 -4.80,0.00,15.98,0.00,1.00,172.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 diff --git a/scripts/testv/stvOMASA_3ISM_1MASA1TC32c_ISM3.csv b/scripts/testv/stvOMASA_3ISM_1MASA1TC32c_ISM3.csv deleted file mode 100644 index 14eee9b693b536fa2fd22d2813d7f588b8930b06..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_1MASA1TC32c_ISM3.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0 --177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0 -4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0 --168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0 -14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0 --163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0 -19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0 --153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0 -28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0 --148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0 -38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0 --139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0 -48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0 --124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0 -57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0 --115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0 -72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0 --100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0 -86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0 --86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0 -100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0 --76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0 -110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0 --62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0 -124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0 --52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0 -134.40,33.60,0.28,0.00,1.00,177.60,0.00,0 --38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0 -144.00,28.80,0.30,0.00,1.00,177.60,0.00,0 --33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0 -153.60,24.00,0.32,0.00,1.00,177.60,0.00,0 --24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0 -158.40,19.20,0.34,0.00,1.00,177.60,0.00,0 --14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0 -168.00,9.60,0.36,0.00,1.00,177.60,0.00,0 --9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0 -172.80,4.80,0.38,0.00,1.00,177.60,0.00,0 --0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0 --177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0 -4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0 -14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0 -19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0 --158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0 -28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0 --148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0 -33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0 --139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0 -43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0 --129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0 -57.60,38.40,15.47,0.00,1.00,177.60,0.00,0 --120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0 -67.20,43.20,15.44,0.00,1.00,177.60,0.00,0 --105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0 -81.60,43.20,15.42,0.00,1.00,177.60,0.00,0 --91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0 -96.00,43.20,15.40,0.00,1.00,0.00,0.00,0 --76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0 -110.40,43.20,15.38,0.00,1.00,0.00,0.00,0 --67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0 -120.00,38.40,15.36,0.00,1.00,0.00,0.00,0 --52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0 -129.60,38.40,15.34,0.00,1.00,0.00,0.00,0 --43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0 -144.00,33.60,15.32,0.00,1.00,0.00,0.00,0 --33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0 -148.80,24.00,15.30,0.00,1.00,0.00,0.00,0 --24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0 -158.40,19.20,15.27,0.00,1.00,0.00,0.00,0 --19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0 -168.00,14.40,15.25,0.00,1.00,0.00,0.00,0 --9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0 -172.80,4.80,15.23,0.00,1.00,0.00,0.00,0 --4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0 -0.00,0.00,15.21,0.00,1.00,0.00,0.00,0 --177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0 -9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0 -14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0 --163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0 -24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0 --153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0 -28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0 --144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0 -38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0 --134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0 -48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0 --124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0 -62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0 --115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0 -72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0 --100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0 -86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0 --86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0 -96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0 --76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0 -110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0 --62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0 -120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0 --52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0 -134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0 --43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0 -144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0 --33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0 -148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0 --24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0 -158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0 --19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0 -168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0 --9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0 -172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0 -4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0 -14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0 -19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0 --153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0 -28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0 --148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0 -38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0 --139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0 -48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0 --124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0 -57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0 --115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0 -72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0 --105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0 -81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0 --91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0 -96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0 --76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0 -105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0 --67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0 -120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0 --57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0 -129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0 --43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0 -139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0 --33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0 -148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0 --28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0 -158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0 --19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0 -163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0 --9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0 -172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0 -0.00,0.00,1.60,0.00,1.00,0.00,0.00,0 --177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0 -9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0 -14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0 --158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0 -24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0 --153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0 -33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0 --144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0 -43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0 --134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0 -52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0 --124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0 -62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0 --110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0 -72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0 --100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0 -86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0 --86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0 -96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0 --76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0 -110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0 --67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0 -120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0 --52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0 -129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0 --43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0 -139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0 --33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0 -148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0 --24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0 -158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0 --19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0 -168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0 -172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0 -4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0 -14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0 --163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0 -24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0 --153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0 -28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0 --144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0 -38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0 --134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0 -48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0 --124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0 -62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0 --115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0 -72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0 --100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0 -81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0 --91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0 -96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0 --81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0 -105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0 --67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0 -115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0 --57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0 -129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0 --48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0 -139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0 --38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0 -148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0 --28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0 -153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0 --19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0 -163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0 --9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0 -172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0 -0.00,0.00,13.61,0.00,1.00,0.00,0.00,0 --177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0 -9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0 --168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0 -24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0 --148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0 -33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0 --139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0 -43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0 --129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0 -52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0 --120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0 -62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0 --110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0 -76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0 --100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0 -86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0 --86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0 -96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0 --76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0 -105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0 --67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0 -120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0 --57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0 -129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0 --48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0 -139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0 --38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0 -148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0 -158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0 --19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0 -163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0 -172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0 -4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0 -14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0 --163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0 -24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0 --153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0 -33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0 --144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0 -43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0 --134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0 -52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0 --124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0 -62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0 --115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0 -72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0 --100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0 -81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0 --91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0 -96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0 --81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0 -105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0 --67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0 -115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0 --57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0 -124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0 --48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0 -134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0 --38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0 -144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0 --28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0 -153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0 --19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0 -163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0 --14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0 -172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0 --4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0 -0.00,0.00,3.20,0.00,1.00,0.00,0.00,0 --177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0 -9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0 -19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0 -24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0 --148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0 -33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0 --139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0 -43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0 --129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0 -52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0 --120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0 -67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0 --110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0 -76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0 --100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0 -86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0 --86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0 -96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0 --76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0 -105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0 --67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0 -115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0 --57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0 -129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0 --48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0 -139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0 --38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0 -148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0 -153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0 --19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0 -163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0 -172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0 -4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0 -14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0 -24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0 --153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0 -33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0 --144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0 -43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0 --134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0 -52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0 --124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0 -62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0 --110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0 -72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0 --100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0 -81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0 --91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0 -96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0 --81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0 -105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0 --72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0 -115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0 --57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0 -124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0 --48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0 -134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0 --38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0 -144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0 --28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0 -153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0 --24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0 -163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0 --14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0 -172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -0.00,0.00,12.01,0.00,1.00,0.00,0.00,0 --177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0 -9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0 --158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0 -28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0 --148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0 -38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0 --139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0 -48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0 --129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0 -57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0 --120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0 -67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0 --110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0 -76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0 --100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0 -86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0 --86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0 -96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0 --76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0 -105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0 --67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0 -115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0 --57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0 -124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0 --48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0 -134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0 --38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0 -144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0 --28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0 -153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0 --19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0 -163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0 -172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0 -4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0 -14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0 -24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0 --148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0 -33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0 --139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0 -43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0 --129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0 -52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0 --120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0 -62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0 --110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0 -72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0 --100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0 -81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0 --91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0 -96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0 --81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0 -105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0 --72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0 -115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0 --62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0 -124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0 --52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0 -134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0 --43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0 -144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0 --33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0 -153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0 --24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0 -163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0 -172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0 -0.00,0.00,4.81,0.00,1.00,0.00,0.00,0 --177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0 -9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0 -19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0 -28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0 --148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0 -38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0 --139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0 -48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0 --129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0 -57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0 --120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0 -67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0 --110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0 -76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0 --100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0 -86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0 --86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0 -96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0 --76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0 -105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0 --67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0 -115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0 --57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0 -124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0 --48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0 -134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0 --38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0 -144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0 --28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0 -153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0 --19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0 -163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0 --9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0 -172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0 -4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0 -14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0 -24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0 --148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0 -33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0 --139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0 -43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0 --129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0 -52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0 --120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0 -62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0 --110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0 -72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0 --100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0 -81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0 --91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0 -96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0 --81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0 -105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0 --72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0 -115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0 --62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0 -124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0 --52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0 -134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0 --43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0 -144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0 --33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0 -153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0 --24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0 -163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0 -172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -0.00,0.00,10.40,0.00,1.00,0.00,0.00,0 --177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0 -9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0 -19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0 -28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0 --148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0 -38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0 --139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0 -48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0 --129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0 -57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0 --120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0 -67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0 --110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0 -76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0 --100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0 -86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0 --86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0 -96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0 --76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0 -105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0 --67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0 -115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0 --57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0 -124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0 --48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0 -134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0 --38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0 -144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0 --28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0 -153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0 -163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0 --9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0 -172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0 -4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0 -14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0 -24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0 -33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0 --139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0 -43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0 --129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0 -52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0 --120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0 -62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0 --110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0 -72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0 --100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0 -81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0 --91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0 -96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0 --81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0 -105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0 --72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0 -115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0 --62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0 -124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0 --52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0 -134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0 --43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0 -144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0 --33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0 -153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0 --24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0 -163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0 -172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,6.41,0.00,1.00,0.00,0.00,0 --177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0 -9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0 -19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0 --158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0 -28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0 --148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0 -38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0 --139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0 -48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0 --129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0 -57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0 --120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0 -67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0 --110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0 -76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0 --100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0 -86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0 --86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0 -96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0 --76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0 -105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0 --67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0 -115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0 --57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0 -124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0 --48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0 -134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0 --38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0 -144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0 --28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0 -153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0 -163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0 -172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0 -4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0 -14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0 --158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0 -24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0 -33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0 --139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0 -43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0 --129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0 -52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0 --120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0 -62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0 --110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0 -72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0 --100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0 -81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0 --91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0 -96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0 --81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0 -105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0 --72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0 -115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0 --62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0 -124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0 --52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0 -134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0 --43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0 -144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0 --33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0 -153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0 --24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0 -163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0 --14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0 -172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.80,0.00,1.00,0.00,0.00,0 --177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0 -9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0 -19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0 --158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0 -28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0 --148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0 -38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0 --139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0 -48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0 --129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0 -57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0 --120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0 -67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0 --110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0 -76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0 --100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0 -86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0 --86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0 -96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0 --76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0 -105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0 --67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0 -115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0 --57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0 -124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0 --48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0 -134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0 --38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0 -144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0 --28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0 -153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0 --19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0 -163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0 -172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0 --0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0 -4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0 --168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0 -14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0 --158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0 -24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0 --148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0 -33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0 --139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0 -43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0 --129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0 -52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0 --120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0 -62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0 --110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0 -72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0 --100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0 -81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0 --91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0 -96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0 --81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0 -105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0 --72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0 -115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0 --62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0 -124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0 --52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0 -134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0 --43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0 -144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0 --33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0 -153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0 --24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0 -163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0 --14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0 -172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.01,0.00,1.00,0.00,0.00,0 --177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0 --168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0 -19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0 --158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0 -28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0 --148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0 -38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0 --139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0 -48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0 --129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0 -57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0 --120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0 -67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0 --110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0 -76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0 --100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0 -86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0 --86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0 -96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0 --76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0 -105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0 --67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0 -115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0 --57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0 -124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0 --48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0 -134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0 --38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0 -144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0 --28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0 -153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0 --19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0 -163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0 --9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0 -172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0 --0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0 --168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0 -14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0 --158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0 -24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0 --148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0 -33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0 --139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0 -43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0 --129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0 -52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0 --120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0 -62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0 --110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0 -72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0 --100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0 -81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0 --91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0 -96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0 --81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0 -105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0 --72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0 -115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0 --62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0 -124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0 --52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0 -134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0 --43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0 -144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0 --33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0 -153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0 --24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0 -163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0 --14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0 --4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0 -0.00,0.00,7.20,0.00,1.00,0.00,0.00,0 --177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0 --168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0 -19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0 --158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0 --148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0 -38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0 --139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0 -48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0 --129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0 -57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0 --120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0 -67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0 --110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0 -76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0 --100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0 -86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0 --86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0 -96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0 --76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0 -105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0 --67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0 -115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0 --57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0 -124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0 --48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0 -134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0 --38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0 -144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0 --28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0 --19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0 -163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0 --9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0 --0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0 --168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0 -14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0 --158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0 --148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0 -33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0 --139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0 -43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0 --129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0 -52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0 --120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0 -62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0 --110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0 -72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0 --100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0 -81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0 --91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0 -96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0 --81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0 -105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0 --72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0 -115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0 --62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0 -124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0 --52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0 -134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0 --43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0 -144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0 --33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0 -153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0 --24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0 --14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0 --4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0 -0.00,0.00,9.61,0.00,1.00,0.00,0.00,0 --177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0 --168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0 --158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0 --148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0 --139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0 -48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0 --129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0 -57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0 --120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0 -67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0 --110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0 -76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0 --100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0 -86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0 --86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0 -96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0 --76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0 -105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0 --67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0 -115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0 --57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0 -124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0 --48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0 -134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0 --38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0 --28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0 --19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0 -163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0 --9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0 --0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0 --168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0 --158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0 --148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0 -33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0 --139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0 -43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0 --129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0 -52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0 --120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0 -62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0 --110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0 -72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0 --100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0 -81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0 --91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0 -96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0 --81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0 -105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0 --72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0 -115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0 --62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0 -124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0 --52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0 -134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0 --43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0 -144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0 --33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0 -153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0 --24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0 --14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0 -172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0 --4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0 -0.00,0.00,5.60,0.00,1.00,0.00,0.00,0 --177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0 --168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0 --158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0 -28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0 --148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0 --139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0 -48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0 --129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0 -57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0 --120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0 -67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0 --110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0 -76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0 --100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0 -86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0 --86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0 -96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0 --76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0 -105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0 --67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0 -115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0 --57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0 -124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0 --48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0 -134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0 --38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0 --28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0 -153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0 --19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0 --9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0 --0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0 --168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0 --158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0 --148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0 -33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0 --139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0 -43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0 --129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0 -52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0 --120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0 -62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0 --110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0 -72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0 --100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0 -81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0 --91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0 -96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0 --81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0 -105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0 --72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0 -115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0 --62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0 -124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0 --52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0 -134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0 --43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0 -144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0 --33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0 -153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0 --24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0 --14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0 --4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0 -0.00,0.00,11.21,0.00,1.00,0.00,0.00,0 --177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0 --168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0 --158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0 -28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0 --148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0 -38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0 --139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0 -48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0 --129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0 -57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0 --120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0 -67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0 --110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0 -76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0 --100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0 -86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0 --86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0 -96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0 --76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0 -105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0 --67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0 -115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0 --57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0 -124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0 --48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0 -134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0 --38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0 -144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0 --28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0 -153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0 --19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0 --9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0 --0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0 --168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0 --158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0 --148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0 --139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0 -43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0 --129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0 -52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0 --120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0 -62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0 --110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0 -72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0 --100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0 -81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0 --91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0 -96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0 --81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0 -105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0 --72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0 -115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0 --62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0 -124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0 --52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0 -134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0 --43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0 --33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0 -153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0 --24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0 -163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0 --14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0 --4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,3.99,0.00,1.00,0.00,0.00,0 --177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0 --168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0 -19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0 --158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0 --148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0 -33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0 --139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0 -43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0 --129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0 -52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0 --120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0 -62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0 --110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0 -76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0 --100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0 -86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0 --86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0 -96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0 --76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0 -105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0 --67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0 -120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0 --57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0 --48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0 -139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0 --38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0 -148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0 --28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0 -158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0 --19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0 -163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0 --9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0 --0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0 --168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0 --158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0 --153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0 --144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0 -43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0 --134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0 --124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0 -62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0 --110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0 -72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0 --100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0 -81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0 --91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0 -96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0 --81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0 -105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0 --72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0 -115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0 --57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0 -124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0 --48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0 -134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0 --38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0 --28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0 --24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0 --14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0 --4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,12.82,0.00,1.00,0.00,0.00,0 --177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0 --168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0 --158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0 --148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0 -33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0 --139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0 --129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0 --120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0 -62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0 --110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0 -76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0 --100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0 -86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0 --86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0 -96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0 --76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0 -110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0 --67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0 -120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0 --57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0 --48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0 --38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0 --28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0 --19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0 --9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0 --0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0 --168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0 --163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0 --153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0 -33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0 --144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0 -43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0 --134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0 --124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0 -62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0 --115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0 -72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0 --100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0 -81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0 --91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0 -96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0 --81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0 -105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0 --67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0 -115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0 --57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0 -124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0 --48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0 -134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0 --38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0 -144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0 --28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0 --19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0 --14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0 --4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,2.39,0.00,1.00,0.00,0.00,0 --177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0 --168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0 --158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0 --153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0 -33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0 --144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0 --134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0 --124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0 -62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0 --110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0 -72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0 --100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0 -86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0 --86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0 -96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0 --76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0 -110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0 --67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0 -120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0 --52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0 -129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0 --43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0 --33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0 --24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0 --19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0 --9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0 --0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0 --168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0 --163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0 --153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0 -28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0 --144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0 -38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0 --134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0 -48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0 --124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0 -57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0 --115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0 -72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0 --105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0 -81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0 --91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0 -96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0 --81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0 -105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0 --67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0 -120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0 --57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0 -129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0 --48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0 -139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0 --38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0 --28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0 -158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0 --19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0 --9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0 --4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0 -0.00,0.00,14.42,0.00,1.00,0.00,0.00,0 --177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0 --168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0 --163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0 -24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0 --153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0 -28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0 --144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0 -38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0 --134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0 -48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0 --124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0 -62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0 --115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0 -72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0 --100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0 -86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0 --86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0 -96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0 --76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0 -110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0 --62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0 -120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0 --52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0 -134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0 --43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0 --33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0 --24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0 -158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0 --14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0 --9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0 --0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0 --172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0 --163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0 --153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0 --148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0 -38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0 --139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0 -48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0 --129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0 --115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0 -67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0 --105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0 -81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0 --91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0 -96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0 --76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0 -105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0 --67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0 -120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0 --52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0 -129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0 --43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0 -139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0 --33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0 --28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0 --19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0 -163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0 --9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0 --4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0 -0.00,0.00,0.79,0.00,1.00,0.00,0.00,0 --177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0 -4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0 --168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0 --163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0 -19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0 --153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0 -28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0 --148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0 -38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0 --139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0 -48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0 --124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0 -57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0 --115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0 -72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0 --100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0 -86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0 --86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0 -100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0 --76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0 -110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0 --62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0 -124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0 --48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0 -134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0 --38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0 --28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0 --24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0 -163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0 --14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0 -168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0 --9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0 --0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0 --177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0 --172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0 -9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0 --163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0 --158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0 --148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0 -33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0 --139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0 -43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0 --129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0 --120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0 -67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0 --105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0 -81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0 --91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0 -96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0 --76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0 -110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0 --67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0 -120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0 --52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0 -134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0 --43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0 -144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0 --33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0 -153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0 --24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0 --19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0 -168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0 --9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0 --4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0 diff --git a/scripts/testv/stvOMASA_3ISM_1MASA2TC16c.met b/scripts/testv/stvOMASA_3ISM_1MASA2TC16c.met deleted file mode 100644 index 00acdae5394c5d40e9193d7dd9cd1fee6d182c24..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_1MASA2TC16c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5a1f87bfe360dbd221a94583aa68a58ef050e968a63351730d643f2dc2cac4e1 -size 204600 diff --git a/scripts/testv/stvOMASA_3ISM_1MASA2TC16c_ISM1.csv b/scripts/testv/stvOMASA_3ISM_1MASA2TC16c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_1MASA2TC16c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_3ISM_1MASA2TC16c_ISM2.csv b/scripts/testv/stvOMASA_3ISM_1MASA2TC16c_ISM2.csv deleted file mode 100644 index f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_1MASA2TC16c_ISM2.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,4.80,16.00,0.00,1.00,0.00,0.00,0 -0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0 -0.00,14.40,15.96,0.00,1.00,4.80,9.60,0 -0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0 -0.00,24.00,15.91,0.00,1.00,14.40,19.20,0 -0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0 -0.00,33.60,15.87,0.00,1.00,19.20,28.80,0 -0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0 -0.00,43.20,15.83,0.00,1.00,28.80,38.40,0 -0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0 -0.00,52.80,15.79,0.00,1.00,38.40,48.00,0 -0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0 -0.00,62.40,15.74,0.00,1.00,48.00,57.60,0 -4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0 -4.80,72.00,15.70,0.00,1.00,57.60,67.20,0 -4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0 -9.60,81.60,15.66,0.00,1.00,72.00,76.80,0 -19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0 -134.40,86.40,15.62,0.00,1.00,86.40,86.40,0 -168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0 -172.80,76.80,15.57,0.00,1.00,100.80,86.40,0 -177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0 -177.60,67.20,15.53,0.00,1.00,110.40,76.80,0 -177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0 -177.60,57.60,15.49,0.00,1.00,124.80,67.20,0 -177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0 -177.60,48.00,15.44,0.00,1.00,134.40,57.60,0 -177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0 -177.60,38.40,15.40,0.00,1.00,144.00,48.00,0 -177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0 -177.60,28.80,15.36,0.00,1.00,153.60,38.40,0 -177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0 -177.60,19.20,15.32,0.00,1.00,158.40,28.80,0 -177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0 -177.60,9.60,15.27,0.00,1.00,168.00,19.20,0 -177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0 -177.60,0.00,15.23,0.00,1.00,172.80,9.60,0 --177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0 --177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0 --177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0 --177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0 --177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0 --177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0 --177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0 --177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0 --177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0 --177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0 --177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0 --177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0 --177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0 --177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0 --177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0 --177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0 --172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0 --168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0 --134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0 --19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0 --9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0 --4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0 --4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0 --4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0 --0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0 --0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0 --0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0 --0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0 --0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0 --0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0 --0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0 --0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0 --0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0 --0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0 --0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0 --0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0 --0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0 --0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,14.40,0.00,1.00,0.00,0.00,0 --0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0 --0.00,14.40,14.36,0.00,1.00,9.60,9.60,0 --0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0 --0.00,24.00,14.31,0.00,1.00,14.40,19.20,0 --0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0 --0.00,33.60,14.27,0.00,1.00,24.00,28.80,0 --4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0 --4.80,43.20,14.23,0.00,1.00,28.80,38.40,0 --4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0 --4.80,52.80,14.18,0.00,1.00,38.40,48.00,0 --4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0 --4.80,62.40,14.14,0.00,1.00,48.00,57.60,0 --9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0 --9.60,72.00,14.10,0.00,1.00,62.40,67.20,0 --14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0 --24.00,81.60,14.06,0.00,1.00,72.00,76.80,0 --43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0 --110.40,86.40,14.01,0.00,1.00,86.40,86.40,0 --148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0 --163.20,76.80,13.97,0.00,1.00,96.00,81.60,0 --168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0 --172.80,67.20,13.93,0.00,1.00,110.40,72.00,0 --172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0 --172.80,57.60,13.89,0.00,1.00,120.00,62.40,0 --172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0 --177.60,48.00,13.84,0.00,1.00,134.40,52.80,0 --177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0 --177.60,38.40,13.80,0.00,1.00,144.00,43.20,0 --177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0 --177.60,28.80,13.76,0.00,1.00,148.80,33.60,0 --177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0 --177.60,19.20,13.71,0.00,1.00,158.40,24.00,0 --177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0 --177.60,9.60,13.67,0.00,1.00,168.00,14.40,0 --177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0 --177.60,0.00,13.63,0.00,1.00,172.80,4.80,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0 -177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0 -177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0 -177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0 -177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0 -177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0 -177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0 -172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0 -172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0 -172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0 -172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0 -168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0 -163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0 -148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0 -110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0 -43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0 -24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0 -14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0 -9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0 -9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0 -4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0 -4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0 -4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0 -4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0 -4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0 -0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0 -0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0 -0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0 -0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0 -0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,12.80,0.00,1.00,0.00,0.00,0 --0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0 --0.00,14.40,12.75,0.00,1.00,9.60,9.60,0 --4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0 --4.80,24.00,12.71,0.00,1.00,14.40,19.20,0 --4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0 --4.80,33.60,12.67,0.00,1.00,24.00,28.80,0 --4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0 --9.60,43.20,12.62,0.00,1.00,33.60,38.40,0 --9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0 --9.60,52.80,12.58,0.00,1.00,43.20,48.00,0 --14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0 --14.40,62.40,12.54,0.00,1.00,52.80,57.60,0 --19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0 --24.00,72.00,12.50,0.00,1.00,62.40,67.20,0 --33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0 --43.20,76.80,12.45,0.00,1.00,72.00,72.00,0 --67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0 --96.00,81.60,12.41,0.00,1.00,86.40,81.60,0 --124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0 --144.00,76.80,12.37,0.00,1.00,96.00,76.80,0 --153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0 --158.40,67.20,12.33,0.00,1.00,110.40,72.00,0 --163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0 --168.00,57.60,12.28,0.00,1.00,120.00,62.40,0 --168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0 --168.00,48.00,12.24,0.00,1.00,129.60,52.80,0 --172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0 --172.80,38.40,12.20,0.00,1.00,139.20,43.20,0 --172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0 --172.80,28.80,12.15,0.00,1.00,148.80,33.60,0 --177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0 --177.60,19.20,12.11,0.00,1.00,158.40,24.00,0 --177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0 --177.60,9.60,12.07,0.00,1.00,168.00,14.40,0 --177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0 --177.60,0.00,12.03,0.00,1.00,172.80,4.80,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0 -177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0 -172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0 -172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0 -168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0 -168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0 -168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0 -163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0 -158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0 -153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0 -144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0 -124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0 -96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0 -67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0 -43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0 -33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0 -24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0 -19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0 -14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0 -14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0 -9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0 -9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0 -9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0 -4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0 -4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0 -0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,11.19,0.00,1.00,0.00,0.00,0 --0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0 --4.80,14.40,11.15,0.00,1.00,9.60,9.60,0 --4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0 --4.80,24.00,11.11,0.00,1.00,14.40,19.20,0 --4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0 --9.60,33.60,11.07,0.00,1.00,24.00,28.80,0 --9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0 --14.40,43.20,11.02,0.00,1.00,33.60,38.40,0 --14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0 --14.40,52.80,10.98,0.00,1.00,43.20,48.00,0 --19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0 --24.00,57.60,10.94,0.00,1.00,52.80,52.80,0 --28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0 --33.60,67.20,10.89,0.00,1.00,62.40,62.40,0 --43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0 --57.60,72.00,10.85,0.00,1.00,76.80,72.00,0 --76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0 --96.00,76.80,10.81,0.00,1.00,86.40,76.80,0 --115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0 --129.60,72.00,10.77,0.00,1.00,96.00,76.80,0 --139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0 --148.80,67.20,10.72,0.00,1.00,105.60,67.20,0 --153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0 --158.40,57.60,10.68,0.00,1.00,120.00,62.40,0 --163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0 --163.20,48.00,10.64,0.00,1.00,129.60,52.80,0 --168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0 --168.00,38.40,10.60,0.00,1.00,139.20,43.20,0 --172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0 --172.80,28.80,10.55,0.00,1.00,148.80,33.60,0 --172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0 --172.80,19.20,10.51,0.00,1.00,158.40,24.00,0 --177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0 --177.60,9.60,10.47,0.00,1.00,163.20,14.40,0 --177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0 --177.60,0.00,10.42,0.00,1.00,172.80,4.80,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0 -168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0 -168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0 -163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0 -163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0 -158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0 -153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0 -148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0 -139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0 -129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0 -115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0 -96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0 -76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0 -57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0 -43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0 -33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0 -28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0 -24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0 -19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0 -14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0 -14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0 -14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0 -9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0 -9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0 -4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0 -4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0 -0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,9.59,0.00,1.00,0.00,0.00,0 --4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0 --4.80,14.40,9.55,0.00,1.00,9.60,9.60,0 --4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0 --9.60,24.00,9.51,0.00,1.00,19.20,19.20,0 --9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0 --9.60,33.60,9.46,0.00,1.00,24.00,28.80,0 --14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0 --14.40,38.40,9.42,0.00,1.00,33.60,33.60,0 --19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0 --24.00,48.00,9.38,0.00,1.00,43.20,43.20,0 --24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0 --28.80,57.60,9.34,0.00,1.00,52.80,52.80,0 --38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0 --43.20,62.40,9.29,0.00,1.00,67.20,62.40,0 --52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0 --62.40,72.00,9.25,0.00,1.00,76.80,67.20,0 --76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0 --96.00,72.00,9.21,0.00,1.00,86.40,72.00,0 --110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0 --120.00,67.20,9.16,0.00,1.00,96.00,72.00,0 --134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0 --139.20,62.40,9.12,0.00,1.00,105.60,67.20,0 --148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0 --153.60,57.60,9.08,0.00,1.00,115.20,57.60,0 --158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0 --158.40,48.00,9.04,0.00,1.00,129.60,52.80,0 --163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0 --163.20,38.40,8.99,0.00,1.00,139.20,43.20,0 --168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0 --168.00,28.80,8.95,0.00,1.00,148.80,33.60,0 --172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0 --172.80,19.20,8.91,0.00,1.00,153.60,24.00,0 --172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0 --177.60,9.60,8.87,0.00,1.00,163.20,14.40,0 --177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0 --177.60,0.00,8.82,0.00,1.00,172.80,4.80,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0 -168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0 -163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0 -163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0 -158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0 -158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0 -153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0 -148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0 -139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0 -134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0 -120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0 -110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0 -96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0 -76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0 -62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0 -52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0 -43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0 -38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0 -28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0 -24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0 -24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0 -19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0 -14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0 -14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0 -9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0 -9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0 -9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0 -0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,7.99,0.00,1.00,0.00,0.00,0 --4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0 --4.80,14.40,7.95,0.00,1.00,9.60,9.60,0 --9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0 --9.60,24.00,7.90,0.00,1.00,19.20,19.20,0 --14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0 --14.40,28.80,7.86,0.00,1.00,28.80,24.00,0 --19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0 --19.20,38.40,7.82,0.00,1.00,38.40,33.60,0 --24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0 --28.80,48.00,7.78,0.00,1.00,48.00,43.20,0 --33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0 --38.40,52.80,7.73,0.00,1.00,57.60,52.80,0 --43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0 --48.00,62.40,7.69,0.00,1.00,67.20,57.60,0 --57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0 --67.20,67.20,7.65,0.00,1.00,76.80,62.40,0 --81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0 --91.20,67.20,7.60,0.00,1.00,86.40,67.20,0 --105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0 --115.20,67.20,7.56,0.00,1.00,96.00,67.20,0 --124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0 --134.40,57.60,7.52,0.00,1.00,105.60,62.40,0 --139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0 --144.00,52.80,7.48,0.00,1.00,115.20,57.60,0 --148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0 --153.60,43.20,7.43,0.00,1.00,124.80,48.00,0 --158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0 --163.20,38.40,7.39,0.00,1.00,134.40,38.40,0 --163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0 --168.00,28.80,7.35,0.00,1.00,144.00,33.60,0 --168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0 --172.80,19.20,7.31,0.00,1.00,153.60,24.00,0 --172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0 --177.60,9.60,7.26,0.00,1.00,163.20,14.40,0 --177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0 --177.60,0.00,7.22,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0 -163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0 -158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0 -153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0 -148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0 -144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0 -139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0 -134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0 -124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0 -115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0 -105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0 -91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0 -81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0 -67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0 -57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0 -48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0 -43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0 -38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0 -33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0 -28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0 -24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0 -19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0 -19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0 -14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0 -9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0 -0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,6.39,0.00,1.00,0.00,0.00,0 --4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0 --4.80,14.40,6.34,0.00,1.00,9.60,9.60,0 --9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0 --9.60,19.20,6.30,0.00,1.00,19.20,14.40,0 --14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0 --19.20,28.80,6.26,0.00,1.00,28.80,24.00,0 --19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0 --24.00,38.40,6.22,0.00,1.00,38.40,33.60,0 --28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0 --33.60,43.20,6.17,0.00,1.00,48.00,38.40,0 --38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0 --43.20,52.80,6.13,0.00,1.00,57.60,48.00,0 --48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0 --52.80,57.60,6.09,0.00,1.00,67.20,52.80,0 --62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0 --72.00,62.40,6.05,0.00,1.00,76.80,57.60,0 --81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0 --91.20,62.40,6.00,0.00,1.00,86.40,62.40,0 --100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0 --110.40,62.40,5.96,0.00,1.00,96.00,62.40,0 --120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0 --129.60,57.60,5.92,0.00,1.00,105.60,57.60,0 --134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0 --139.20,48.00,5.87,0.00,1.00,115.20,52.80,0 --144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0 --148.80,43.20,5.83,0.00,1.00,124.80,48.00,0 --153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0 --158.40,33.60,5.79,0.00,1.00,134.40,38.40,0 --163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0 --163.20,28.80,5.75,0.00,1.00,144.00,28.80,0 --168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0 --168.00,19.20,5.70,0.00,1.00,153.60,24.00,0 --172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0 --172.80,9.60,5.66,0.00,1.00,163.20,14.40,0 --177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0 --177.60,0.00,5.62,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0 -163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0 -158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0 -148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0 -144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0 -139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0 -134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0 -129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0 -120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0 -110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0 -100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0 -91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0 -81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0 -72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0 -62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0 -52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0 -48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0 -43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0 -38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0 -33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0 -28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0 -24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0 -19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0 -19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0 -9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0 -4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0 -0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,4.79,0.00,1.00,0.00,0.00,0 --4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0 --9.60,14.40,4.74,0.00,1.00,9.60,9.60,0 --9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0 --14.40,19.20,4.70,0.00,1.00,19.20,14.40,0 --14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0 --19.20,28.80,4.66,0.00,1.00,28.80,24.00,0 --24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0 --28.80,33.60,4.61,0.00,1.00,38.40,28.80,0 --28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0 --33.60,43.20,4.57,0.00,1.00,48.00,38.40,0 --38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0 --48.00,48.00,4.53,0.00,1.00,57.60,43.20,0 --52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0 --57.60,52.80,4.49,0.00,1.00,67.20,48.00,0 --67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0 --76.80,57.60,4.44,0.00,1.00,76.80,52.80,0 --81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0 --91.20,57.60,4.40,0.00,1.00,86.40,57.60,0 --100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0 --110.40,57.60,4.36,0.00,1.00,96.00,57.60,0 --115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0 --124.80,52.80,4.32,0.00,1.00,105.60,52.80,0 --129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0 --139.20,48.00,4.27,0.00,1.00,115.20,48.00,0 --144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0 --148.80,38.40,4.23,0.00,1.00,124.80,43.20,0 --153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0 --153.60,33.60,4.19,0.00,1.00,134.40,38.40,0 --158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0 --163.20,24.00,4.14,0.00,1.00,144.00,28.80,0 --163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0 --168.00,19.20,4.10,0.00,1.00,153.60,24.00,0 --172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0 --172.80,9.60,4.06,0.00,1.00,163.20,14.40,0 --177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0 --177.60,0.00,4.02,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0 -163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0 -163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0 -158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0 -148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0 -144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0 -139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0 -129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0 -124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0 -115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0 -110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0 -100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0 -91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0 -81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0 -76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0 -67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0 -57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0 -52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0 -48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0 -38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0 -33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0 -28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0 -28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0 -24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0 -19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0 -14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0 -14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0 -9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0 -0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.18,0.00,1.00,0.00,0.00,0 --4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0 --9.60,9.60,3.14,0.00,1.00,9.60,9.60,0 --9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0 --14.40,19.20,3.10,0.00,1.00,19.20,14.40,0 --19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0 --24.00,24.00,3.05,0.00,1.00,28.80,24.00,0 --24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0 --28.80,33.60,3.01,0.00,1.00,38.40,28.80,0 --33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0 --38.40,38.40,2.97,0.00,1.00,48.00,33.60,0 --43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0 --48.00,43.20,2.93,0.00,1.00,57.60,43.20,0 --52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0 --62.40,48.00,2.88,0.00,1.00,67.20,48.00,0 --67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0 --76.80,52.80,2.84,0.00,1.00,76.80,48.00,0 --86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0 --91.20,52.80,2.80,0.00,1.00,86.40,52.80,0 --100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0 --105.60,52.80,2.76,0.00,1.00,96.00,52.80,0 --115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0 --120.00,48.00,2.71,0.00,1.00,105.60,48.00,0 --129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0 --134.40,43.20,2.67,0.00,1.00,115.20,43.20,0 --139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0 --144.00,38.40,2.63,0.00,1.00,124.80,38.40,0 --148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0 --153.60,33.60,2.58,0.00,1.00,134.40,33.60,0 --158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0 --158.40,24.00,2.54,0.00,1.00,144.00,28.80,0 --163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0 --168.00,19.20,2.50,0.00,1.00,153.60,19.20,0 --168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.46,0.00,1.00,163.20,14.40,0 --177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.41,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0 -158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0 -148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0 -144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0 -139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0 -134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0 -129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0 -120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0 -115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0 -105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0 -100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0 -91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0 -86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0 -76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0 -67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0 -62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0 -52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0 -48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0 -43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0 -38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0 -33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0 -28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0 -24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0 -24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0 -19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0 -0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.58,0.00,1.00,0.00,0.00,0 --4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.54,0.00,1.00,9.60,4.80,0 --14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0 --14.40,19.20,1.50,0.00,1.00,19.20,14.40,0 --19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0 --24.00,24.00,1.45,0.00,1.00,28.80,19.20,0 --28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0 --33.60,28.80,1.41,0.00,1.00,38.40,28.80,0 --38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0 --43.20,38.40,1.37,0.00,1.00,48.00,33.60,0 --48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0 --52.80,43.20,1.32,0.00,1.00,57.60,38.40,0 --57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0 --62.40,43.20,1.28,0.00,1.00,67.20,43.20,0 --72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0 --76.80,48.00,1.24,0.00,1.00,76.80,43.20,0 --86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0 --91.20,48.00,1.20,0.00,1.00,86.40,48.00,0 --100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0 --105.60,48.00,1.15,0.00,1.00,96.00,48.00,0 --110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0 --120.00,43.20,1.11,0.00,1.00,105.60,43.20,0 --124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0 --129.60,38.40,1.07,0.00,1.00,115.20,43.20,0 --134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0 --139.20,33.60,1.03,0.00,1.00,124.80,38.40,0 --144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0 --148.80,28.80,0.98,0.00,1.00,134.40,33.60,0 --153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0 --158.40,24.00,0.94,0.00,1.00,144.00,24.00,0 --163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0 --163.20,14.40,0.90,0.00,1.00,153.60,19.20,0 --168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.85,0.00,1.00,163.20,14.40,0 --172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.81,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0 -148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0 -144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0 -139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0 -134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0 -129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0 -124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0 -120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0 -110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0 -105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0 -100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0 -91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0 -86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0 -76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0 -72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0 -62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0 -57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0 -52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0 -48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0 -43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0 -38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0 -28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0 -19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0 -0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,0.00,0.00,1.00,0.00,0.00,0 --4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0 --9.60,9.60,0.04,0.00,1.00,9.60,4.80,0 --14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0 --19.20,14.40,0.09,0.00,1.00,19.20,14.40,0 --24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0 --24.00,24.00,0.13,0.00,1.00,28.80,19.20,0 --28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0 --33.60,28.80,0.17,0.00,1.00,38.40,24.00,0 --38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0 --43.20,33.60,0.21,0.00,1.00,48.00,28.80,0 --48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0 --52.80,38.40,0.26,0.00,1.00,57.60,33.60,0 --62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0 --67.20,38.40,0.30,0.00,1.00,67.20,38.40,0 --72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0 --76.80,43.20,0.34,0.00,1.00,76.80,38.40,0 --86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0 --91.20,43.20,0.38,0.00,1.00,86.40,43.20,0 --96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0 --105.60,43.20,0.43,0.00,1.00,96.00,43.20,0 --110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0 --115.20,38.40,0.47,0.00,1.00,105.60,38.40,0 --124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0 --129.60,38.40,0.51,0.00,1.00,115.20,38.40,0 --134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0 --139.20,33.60,0.56,0.00,1.00,124.80,33.60,0 --144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0 --148.80,28.80,0.60,0.00,1.00,134.40,28.80,0 --153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0 --158.40,19.20,0.64,0.00,1.00,144.00,24.00,0 --158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0 --163.20,14.40,0.68,0.00,1.00,153.60,19.20,0 --168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.73,0.00,1.00,163.20,9.60,0 --172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.77,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0 -158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0 -158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0 -148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0 -144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0 -139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0 -134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0 -129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0 -124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0 -115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0 -110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0 -105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0 -96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0 -91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0 -86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0 -76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0 -72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0 -67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0 -62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0 -52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0 -48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0 -43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0 -38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0 -28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0 -19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0 -0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.60,0.00,1.00,0.00,0.00,0 --9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.64,0.00,1.00,9.60,4.80,0 --14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0 --19.20,14.40,1.69,0.00,1.00,19.20,9.60,0 --24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0 --28.80,19.20,1.73,0.00,1.00,28.80,19.20,0 --33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0 --38.40,24.00,1.77,0.00,1.00,38.40,24.00,0 --43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0 --48.00,28.80,1.82,0.00,1.00,48.00,28.80,0 --52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0 --57.60,33.60,1.86,0.00,1.00,57.60,28.80,0 --62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0 --67.20,38.40,1.90,0.00,1.00,67.20,33.60,0 --72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0 --81.60,38.40,1.94,0.00,1.00,76.80,38.40,0 --86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0 --91.20,38.40,1.99,0.00,1.00,86.40,38.40,0 --96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0 --105.60,38.40,2.03,0.00,1.00,96.00,38.40,0 --110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0 --115.20,33.60,2.07,0.00,1.00,105.60,33.60,0 --120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0 --124.80,33.60,2.11,0.00,1.00,115.20,33.60,0 --129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0 --134.40,28.80,2.16,0.00,1.00,124.80,28.80,0 --139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0 --144.00,24.00,2.20,0.00,1.00,134.40,24.00,0 --148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0 --153.60,19.20,2.24,0.00,1.00,144.00,19.20,0 --158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0 --163.20,14.40,2.29,0.00,1.00,153.60,14.40,0 --168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.33,0.00,1.00,163.20,9.60,0 --172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.37,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0 -153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0 -144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0 -134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0 -124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0 -120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0 -115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0 -110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0 -105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0 -96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0 -91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0 -86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0 -81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0 -72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0 -67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0 -62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0 -57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0 -52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0 -48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0 -43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0 -38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0 -33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0 -28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0 -14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.20,0.00,1.00,0.00,0.00,0 --9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0 --14.40,9.60,3.25,0.00,1.00,9.60,4.80,0 --14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0 --19.20,14.40,3.29,0.00,1.00,19.20,9.60,0 --24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0 --28.80,19.20,3.33,0.00,1.00,28.80,14.40,0 --33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0 --38.40,24.00,3.38,0.00,1.00,38.40,19.20,0 --43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0 --48.00,24.00,3.42,0.00,1.00,48.00,24.00,0 --52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0 --57.60,28.80,3.46,0.00,1.00,57.60,28.80,0 --62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0 --67.20,33.60,3.50,0.00,1.00,67.20,28.80,0 --72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0 --81.60,33.60,3.55,0.00,1.00,76.80,33.60,0 --86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0 --91.20,33.60,3.59,0.00,1.00,86.40,33.60,0 --96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0 --100.80,33.60,3.63,0.00,1.00,96.00,33.60,0 --110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0 --115.20,33.60,3.67,0.00,1.00,105.60,28.80,0 --120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0 --124.80,28.80,3.72,0.00,1.00,115.20,28.80,0 --129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0 --134.40,24.00,3.76,0.00,1.00,124.80,24.00,0 --139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0 --144.00,19.20,3.80,0.00,1.00,134.40,24.00,0 --148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0 --153.60,14.40,3.85,0.00,1.00,144.00,19.20,0 --158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0 --163.20,9.60,3.89,0.00,1.00,153.60,14.40,0 --168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0 --168.00,4.80,3.93,0.00,1.00,163.20,9.60,0 --172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0 --177.60,0.00,3.97,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0 -124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0 -120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0 -115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0 -110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0 -100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0 -96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0 -91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0 -86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0 -81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0 -72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0 -67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0 -62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0 -57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0 -52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0 -48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0 -43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0 -38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0 -33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0 -28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0 -24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0 -14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0 -14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0 --4.80,0.00,4.81,0.00,1.00,0.00,0.00,0 --9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0 --14.40,4.80,4.85,0.00,1.00,9.60,4.80,0 --19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0 --19.20,9.60,4.89,0.00,1.00,19.20,9.60,0 --24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0 --28.80,14.40,4.93,0.00,1.00,28.80,14.40,0 --33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0 --38.40,19.20,4.98,0.00,1.00,38.40,14.40,0 --43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0 --48.00,24.00,5.02,0.00,1.00,48.00,19.20,0 --52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0 --57.60,24.00,5.06,0.00,1.00,57.60,24.00,0 --62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0 --72.00,28.80,5.11,0.00,1.00,67.20,24.00,0 --76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0 --81.60,28.80,5.15,0.00,1.00,76.80,28.80,0 --86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0 --91.20,28.80,5.19,0.00,1.00,86.40,28.80,0 --96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0 --100.80,28.80,5.23,0.00,1.00,96.00,28.80,0 --105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0 --115.20,28.80,5.28,0.00,1.00,105.60,28.80,0 --120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0 --124.80,24.00,5.32,0.00,1.00,115.20,24.00,0 --129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0 --134.40,24.00,5.36,0.00,1.00,124.80,24.00,0 --139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0 --144.00,19.20,5.40,0.00,1.00,134.40,19.20,0 --148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0 --153.60,14.40,5.45,0.00,1.00,144.00,14.40,0 --158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0 --163.20,9.60,5.49,0.00,1.00,153.60,9.60,0 --163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0 --168.00,4.80,5.53,0.00,1.00,163.20,9.60,0 --172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0 --177.60,0.00,5.58,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0 -163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0 -129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0 -124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0 -120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0 -115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0 -105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0 -100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0 -96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0 -91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0 -86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0 -81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0 -76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0 -72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0 -62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0 -57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0 -52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0 -48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0 -43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0 -38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0 -33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0 -28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0 -24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0 -19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0 -19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0 -0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,6.41,0.00,1.00,0.00,0.00,0 --9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0 --14.40,4.80,6.45,0.00,1.00,9.60,4.80,0 --19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0 --24.00,9.60,6.49,0.00,1.00,19.20,9.60,0 --28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0 --33.60,14.40,6.54,0.00,1.00,28.80,9.60,0 --33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0 --38.40,14.40,6.58,0.00,1.00,38.40,14.40,0 --43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0 --48.00,19.20,6.62,0.00,1.00,48.00,14.40,0 --57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0 --62.40,19.20,6.66,0.00,1.00,57.60,19.20,0 --67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0 --72.00,24.00,6.71,0.00,1.00,67.20,19.20,0 --76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0 --81.60,24.00,6.75,0.00,1.00,76.80,24.00,0 --86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0 --91.20,24.00,6.79,0.00,1.00,86.40,24.00,0 --96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0 --100.80,24.00,6.84,0.00,1.00,96.00,24.00,0 --105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0 --110.40,24.00,6.88,0.00,1.00,105.60,24.00,0 --115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0 --120.00,19.20,6.92,0.00,1.00,115.20,19.20,0 --129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0 --134.40,19.20,6.96,0.00,1.00,124.80,19.20,0 --139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0 --144.00,14.40,7.01,0.00,1.00,134.40,14.40,0 --148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0 --148.80,14.40,7.05,0.00,1.00,144.00,14.40,0 --153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0 --158.40,9.60,7.09,0.00,1.00,153.60,9.60,0 --163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0 --168.00,4.80,7.13,0.00,1.00,163.20,4.80,0 --172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0 --177.60,0.00,7.18,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0 -163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0 -158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0 -148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0 -144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0 -134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0 -129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0 -120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0 -115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0 -110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0 -105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0 -100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0 -96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0 -91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0 -86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0 -81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0 -76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0 -72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0 -67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0 -62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0 -57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0 -48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0 -43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0 -38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0 -33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0 -33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0 -28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0 -24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0 -19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0 -0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,8.01,0.00,1.00,0.00,0.00,0 --9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0 --14.40,4.80,8.05,0.00,1.00,9.60,4.80,0 --19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0 --24.00,9.60,8.10,0.00,1.00,19.20,4.80,0 --28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0 --33.60,9.60,8.14,0.00,1.00,24.00,9.60,0 --38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0 --43.20,14.40,8.18,0.00,1.00,33.60,9.60,0 --48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0 --52.80,14.40,8.22,0.00,1.00,43.20,14.40,0 --57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0 --62.40,19.20,8.27,0.00,1.00,52.80,14.40,0 --67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0 --72.00,19.20,8.31,0.00,1.00,62.40,14.40,0 --76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0 --81.60,19.20,8.35,0.00,1.00,76.80,19.20,0 --86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0 --91.20,19.20,8.40,0.00,1.00,86.40,19.20,0 --96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0 --100.80,19.20,8.44,0.00,1.00,96.00,19.20,0 --105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0 --110.40,19.20,8.48,0.00,1.00,105.60,19.20,0 --115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0 --120.00,14.40,8.52,0.00,1.00,120.00,14.40,0 --124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0 --129.60,14.40,8.57,0.00,1.00,129.60,14.40,0 --134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0 --139.20,14.40,8.61,0.00,1.00,139.20,14.40,0 --144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0 --148.80,9.60,8.65,0.00,1.00,148.80,9.60,0 --153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0 --158.40,4.80,8.69,0.00,1.00,158.40,9.60,0 --163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0 --168.00,4.80,8.74,0.00,1.00,163.20,4.80,0 --172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0 -148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0 -144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0 -139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0 -134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0 -129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0 -124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0 -120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0 -115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0 -110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0 -105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0 -100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0 -96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0 -91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0 -86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0 -81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0 -76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0 -72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0 -67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0 -62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0 -52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0 -48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0 -43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0 -38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0 -33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0 -28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0 -24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0 -19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0 -9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0 -0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,9.61,0.00,1.00,0.00,0.00,0 --9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0 --14.40,4.80,9.66,0.00,1.00,9.60,0.00,0 --19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0 --24.00,4.80,9.70,0.00,1.00,14.40,4.80,0 --28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0 --33.60,9.60,9.74,0.00,1.00,24.00,4.80,0 --38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0 --43.20,9.60,9.78,0.00,1.00,33.60,9.60,0 --48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0 --52.80,9.60,9.83,0.00,1.00,43.20,9.60,0 --57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0 --62.40,14.40,9.87,0.00,1.00,52.80,9.60,0 --67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0 --72.00,14.40,9.91,0.00,1.00,62.40,14.40,0 --76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0 --81.60,14.40,9.95,0.00,1.00,76.80,14.40,0 --86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0 --91.20,14.40,10.00,0.00,1.00,86.40,14.40,0 --96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0 --100.80,14.40,10.04,0.00,1.00,96.00,14.40,0 --105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0 --110.40,14.40,10.08,0.00,1.00,110.40,14.40,0 --115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0 --120.00,14.40,10.13,0.00,1.00,120.00,9.60,0 --124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0 --129.60,9.60,10.17,0.00,1.00,129.60,9.60,0 --134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0 --139.20,9.60,10.21,0.00,1.00,139.20,9.60,0 --144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0 --148.80,9.60,10.25,0.00,1.00,148.80,9.60,0 --153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0 --158.40,4.80,10.30,0.00,1.00,158.40,4.80,0 --163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0 --168.00,4.80,10.34,0.00,1.00,168.00,4.80,0 --172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0 -148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0 -144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0 -139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0 -134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0 -129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0 -124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0 -120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0 -115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0 -110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0 -105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0 -100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0 -96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0 -91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0 -86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0 -81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0 -76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0 -72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0 -67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0 -62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0 -48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0 -43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0 -38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0 -33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0 -28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0 -24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0 -19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0 -14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,11.21,0.00,1.00,0.00,0.00,0 --9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0 --14.40,0.00,11.26,0.00,1.00,9.60,0.00,0 --19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0 --24.00,4.80,11.30,0.00,1.00,14.40,4.80,0 --28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0 --33.60,4.80,11.34,0.00,1.00,24.00,4.80,0 --38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0 --43.20,4.80,11.39,0.00,1.00,33.60,4.80,0 --48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0 --52.80,9.60,11.43,0.00,1.00,43.20,4.80,0 --57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0 --62.40,9.60,11.47,0.00,1.00,52.80,4.80,0 --67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0 --72.00,9.60,11.51,0.00,1.00,62.40,9.60,0 --76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0 --81.60,9.60,11.56,0.00,1.00,72.00,9.60,0 --86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0 --91.20,9.60,11.60,0.00,1.00,86.40,9.60,0 --96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0 --100.80,9.60,11.64,0.00,1.00,96.00,9.60,0 --105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0 --110.40,9.60,11.68,0.00,1.00,110.40,9.60,0 --115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0 --120.00,9.60,11.73,0.00,1.00,120.00,9.60,0 --124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0 --129.60,9.60,11.77,0.00,1.00,129.60,4.80,0 --134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0 --139.20,4.80,11.81,0.00,1.00,139.20,4.80,0 --144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0 --148.80,4.80,11.86,0.00,1.00,148.80,4.80,0 --153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0 --158.40,4.80,11.90,0.00,1.00,158.40,4.80,0 --163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0 --168.00,0.00,11.94,0.00,1.00,168.00,4.80,0 --172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0 -158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0 -148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0 -144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0 -139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0 -134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0 -129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0 -124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0 -120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0 -115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0 -110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0 -105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0 -100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0 -96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0 -91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0 -86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0 -81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0 -76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0 -72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0 -67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0 -62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0 -57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0 -43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0 -33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0 -28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0 -24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0 -19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,12.82,0.00,1.00,0.00,0.00,0 --9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0 --14.40,0.00,12.86,0.00,1.00,9.60,0.00,0 --19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0 --24.00,0.00,12.90,0.00,1.00,14.40,0.00,0 --28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0 --33.60,4.80,12.95,0.00,1.00,24.00,0.00,0 --38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0 --43.20,4.80,12.99,0.00,1.00,28.80,0.00,0 --48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0 --52.80,4.80,13.03,0.00,1.00,38.40,4.80,0 --57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0 --62.40,4.80,13.07,0.00,1.00,48.00,4.80,0 --67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0 --72.00,4.80,13.12,0.00,1.00,62.40,4.80,0 --76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0 --81.60,4.80,13.16,0.00,1.00,72.00,4.80,0 --86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0 --91.20,4.80,13.20,0.00,1.00,86.40,4.80,0 --96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0 --100.80,4.80,13.24,0.00,1.00,96.00,4.80,0 --105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0 --110.40,4.80,13.29,0.00,1.00,110.40,4.80,0 --115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0 --120.00,4.80,13.33,0.00,1.00,120.00,4.80,0 --124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0 --129.60,4.80,13.37,0.00,1.00,134.40,4.80,0 --134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0 --139.20,4.80,13.42,0.00,1.00,144.00,4.80,0 --144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0 --148.80,4.80,13.46,0.00,1.00,153.60,0.00,0 --153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0 --158.40,0.00,13.50,0.00,1.00,158.40,0.00,0 --163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0 --168.00,0.00,13.54,0.00,1.00,168.00,0.00,0 --172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0 -163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0 -158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0 -153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0 -148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0 -144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0 -139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0 -134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0 -129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0 -124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0 -120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0 -115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0 -110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0 -105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0 -100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0 -96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0 -91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0 -86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0 -81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0 -76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0 -72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0 -67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0 -57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0 -52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0 -43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0 -33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0 -28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0 -24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0 -19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0 -14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0 -9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,14.42,0.00,1.00,0.00,0.00,0 --9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0 --14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0 --19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0 --24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0 --28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0 --33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0 --38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0 --43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0 --48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0 --52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0 --57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0 --62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0 --67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0 --72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0 --76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0 --81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0 --86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0 --91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0 --96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0 --100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0 --105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0 --110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0 --115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0 --120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0 --124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0 --129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0 --134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0 --139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0 --144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0 --148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0 --153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0 --158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0 --163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0 --168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0 --172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0 -177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0 -172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0 -168.00,0.00,15.25,0.00,1.00,4.80,0.00,0 -163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0 -158.40,0.00,15.30,0.00,1.00,9.60,0.00,0 -153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0 -148.80,0.00,15.34,0.00,1.00,19.20,0.00,0 -144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0 -139.20,0.00,15.38,0.00,1.00,28.80,0.00,0 -134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0 -129.60,0.00,15.42,0.00,1.00,33.60,0.00,0 -124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0 -120.00,0.00,15.47,0.00,1.00,43.20,0.00,0 -115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0 -110.40,0.00,15.51,0.00,1.00,57.60,0.00,0 -105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0 -100.80,0.00,15.55,0.00,1.00,67.20,0.00,0 -96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0 -91.20,0.00,15.59,0.00,1.00,81.60,0.00,0 -86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0 -81.60,0.00,15.64,0.00,1.00,96.00,0.00,0 -76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0 -72.00,0.00,15.68,0.00,1.00,110.40,0.00,0 -67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0 -62.40,0.00,15.72,0.00,1.00,120.00,0.00,0 -57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0 -52.80,0.00,15.77,0.00,1.00,134.40,0.00,0 -48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0 -43.20,0.00,15.81,0.00,1.00,144.00,0.00,0 -38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0 -33.60,0.00,15.85,0.00,1.00,153.60,0.00,0 -28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0 -24.00,0.00,15.89,0.00,1.00,158.40,0.00,0 -19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0 -14.40,0.00,15.94,0.00,1.00,168.00,0.00,0 -9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0 -4.80,0.00,15.98,0.00,1.00,172.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 diff --git a/scripts/testv/stvOMASA_3ISM_1MASA2TC16c_ISM3.csv b/scripts/testv/stvOMASA_3ISM_1MASA2TC16c_ISM3.csv deleted file mode 100644 index 14eee9b693b536fa2fd22d2813d7f588b8930b06..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_1MASA2TC16c_ISM3.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0 --177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0 -4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0 --168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0 -14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0 --163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0 -19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0 --153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0 -28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0 --148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0 -38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0 --139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0 -48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0 --124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0 -57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0 --115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0 -72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0 --100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0 -86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0 --86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0 -100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0 --76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0 -110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0 --62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0 -124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0 --52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0 -134.40,33.60,0.28,0.00,1.00,177.60,0.00,0 --38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0 -144.00,28.80,0.30,0.00,1.00,177.60,0.00,0 --33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0 -153.60,24.00,0.32,0.00,1.00,177.60,0.00,0 --24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0 -158.40,19.20,0.34,0.00,1.00,177.60,0.00,0 --14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0 -168.00,9.60,0.36,0.00,1.00,177.60,0.00,0 --9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0 -172.80,4.80,0.38,0.00,1.00,177.60,0.00,0 --0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0 --177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0 -4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0 -14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0 -19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0 --158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0 -28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0 --148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0 -33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0 --139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0 -43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0 --129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0 -57.60,38.40,15.47,0.00,1.00,177.60,0.00,0 --120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0 -67.20,43.20,15.44,0.00,1.00,177.60,0.00,0 --105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0 -81.60,43.20,15.42,0.00,1.00,177.60,0.00,0 --91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0 -96.00,43.20,15.40,0.00,1.00,0.00,0.00,0 --76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0 -110.40,43.20,15.38,0.00,1.00,0.00,0.00,0 --67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0 -120.00,38.40,15.36,0.00,1.00,0.00,0.00,0 --52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0 -129.60,38.40,15.34,0.00,1.00,0.00,0.00,0 --43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0 -144.00,33.60,15.32,0.00,1.00,0.00,0.00,0 --33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0 -148.80,24.00,15.30,0.00,1.00,0.00,0.00,0 --24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0 -158.40,19.20,15.27,0.00,1.00,0.00,0.00,0 --19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0 -168.00,14.40,15.25,0.00,1.00,0.00,0.00,0 --9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0 -172.80,4.80,15.23,0.00,1.00,0.00,0.00,0 --4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0 -0.00,0.00,15.21,0.00,1.00,0.00,0.00,0 --177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0 -9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0 -14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0 --163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0 -24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0 --153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0 -28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0 --144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0 -38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0 --134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0 -48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0 --124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0 -62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0 --115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0 -72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0 --100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0 -86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0 --86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0 -96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0 --76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0 -110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0 --62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0 -120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0 --52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0 -134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0 --43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0 -144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0 --33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0 -148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0 --24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0 -158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0 --19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0 -168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0 --9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0 -172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0 -4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0 -14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0 -19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0 --153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0 -28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0 --148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0 -38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0 --139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0 -48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0 --124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0 -57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0 --115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0 -72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0 --105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0 -81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0 --91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0 -96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0 --76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0 -105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0 --67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0 -120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0 --57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0 -129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0 --43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0 -139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0 --33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0 -148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0 --28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0 -158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0 --19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0 -163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0 --9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0 -172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0 -0.00,0.00,1.60,0.00,1.00,0.00,0.00,0 --177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0 -9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0 -14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0 --158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0 -24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0 --153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0 -33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0 --144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0 -43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0 --134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0 -52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0 --124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0 -62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0 --110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0 -72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0 --100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0 -86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0 --86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0 -96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0 --76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0 -110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0 --67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0 -120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0 --52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0 -129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0 --43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0 -139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0 --33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0 -148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0 --24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0 -158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0 --19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0 -168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0 -172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0 -4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0 -14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0 --163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0 -24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0 --153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0 -28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0 --144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0 -38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0 --134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0 -48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0 --124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0 -62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0 --115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0 -72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0 --100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0 -81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0 --91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0 -96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0 --81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0 -105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0 --67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0 -115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0 --57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0 -129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0 --48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0 -139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0 --38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0 -148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0 --28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0 -153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0 --19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0 -163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0 --9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0 -172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0 -0.00,0.00,13.61,0.00,1.00,0.00,0.00,0 --177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0 -9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0 --168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0 -24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0 --148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0 -33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0 --139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0 -43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0 --129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0 -52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0 --120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0 -62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0 --110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0 -76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0 --100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0 -86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0 --86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0 -96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0 --76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0 -105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0 --67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0 -120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0 --57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0 -129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0 --48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0 -139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0 --38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0 -148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0 -158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0 --19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0 -163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0 -172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0 -4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0 -14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0 --163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0 -24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0 --153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0 -33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0 --144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0 -43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0 --134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0 -52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0 --124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0 -62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0 --115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0 -72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0 --100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0 -81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0 --91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0 -96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0 --81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0 -105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0 --67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0 -115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0 --57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0 -124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0 --48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0 -134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0 --38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0 -144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0 --28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0 -153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0 --19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0 -163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0 --14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0 -172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0 --4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0 -0.00,0.00,3.20,0.00,1.00,0.00,0.00,0 --177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0 -9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0 -19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0 -24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0 --148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0 -33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0 --139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0 -43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0 --129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0 -52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0 --120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0 -67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0 --110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0 -76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0 --100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0 -86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0 --86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0 -96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0 --76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0 -105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0 --67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0 -115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0 --57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0 -129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0 --48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0 -139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0 --38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0 -148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0 -153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0 --19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0 -163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0 -172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0 -4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0 -14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0 -24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0 --153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0 -33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0 --144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0 -43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0 --134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0 -52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0 --124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0 -62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0 --110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0 -72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0 --100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0 -81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0 --91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0 -96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0 --81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0 -105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0 --72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0 -115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0 --57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0 -124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0 --48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0 -134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0 --38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0 -144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0 --28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0 -153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0 --24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0 -163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0 --14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0 -172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -0.00,0.00,12.01,0.00,1.00,0.00,0.00,0 --177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0 -9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0 --158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0 -28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0 --148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0 -38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0 --139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0 -48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0 --129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0 -57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0 --120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0 -67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0 --110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0 -76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0 --100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0 -86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0 --86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0 -96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0 --76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0 -105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0 --67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0 -115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0 --57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0 -124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0 --48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0 -134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0 --38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0 -144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0 --28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0 -153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0 --19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0 -163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0 -172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0 -4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0 -14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0 -24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0 --148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0 -33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0 --139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0 -43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0 --129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0 -52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0 --120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0 -62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0 --110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0 -72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0 --100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0 -81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0 --91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0 -96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0 --81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0 -105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0 --72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0 -115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0 --62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0 -124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0 --52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0 -134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0 --43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0 -144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0 --33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0 -153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0 --24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0 -163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0 -172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0 -0.00,0.00,4.81,0.00,1.00,0.00,0.00,0 --177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0 -9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0 -19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0 -28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0 --148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0 -38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0 --139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0 -48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0 --129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0 -57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0 --120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0 -67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0 --110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0 -76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0 --100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0 -86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0 --86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0 -96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0 --76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0 -105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0 --67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0 -115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0 --57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0 -124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0 --48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0 -134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0 --38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0 -144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0 --28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0 -153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0 --19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0 -163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0 --9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0 -172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0 -4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0 -14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0 -24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0 --148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0 -33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0 --139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0 -43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0 --129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0 -52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0 --120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0 -62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0 --110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0 -72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0 --100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0 -81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0 --91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0 -96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0 --81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0 -105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0 --72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0 -115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0 --62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0 -124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0 --52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0 -134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0 --43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0 -144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0 --33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0 -153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0 --24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0 -163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0 -172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -0.00,0.00,10.40,0.00,1.00,0.00,0.00,0 --177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0 -9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0 -19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0 -28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0 --148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0 -38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0 --139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0 -48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0 --129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0 -57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0 --120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0 -67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0 --110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0 -76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0 --100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0 -86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0 --86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0 -96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0 --76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0 -105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0 --67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0 -115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0 --57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0 -124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0 --48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0 -134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0 --38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0 -144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0 --28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0 -153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0 -163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0 --9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0 -172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0 -4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0 -14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0 -24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0 -33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0 --139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0 -43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0 --129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0 -52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0 --120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0 -62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0 --110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0 -72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0 --100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0 -81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0 --91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0 -96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0 --81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0 -105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0 --72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0 -115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0 --62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0 -124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0 --52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0 -134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0 --43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0 -144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0 --33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0 -153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0 --24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0 -163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0 -172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,6.41,0.00,1.00,0.00,0.00,0 --177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0 -9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0 -19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0 --158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0 -28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0 --148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0 -38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0 --139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0 -48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0 --129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0 -57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0 --120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0 -67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0 --110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0 -76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0 --100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0 -86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0 --86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0 -96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0 --76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0 -105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0 --67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0 -115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0 --57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0 -124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0 --48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0 -134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0 --38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0 -144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0 --28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0 -153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0 -163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0 -172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0 -4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0 -14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0 --158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0 -24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0 -33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0 --139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0 -43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0 --129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0 -52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0 --120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0 -62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0 --110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0 -72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0 --100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0 -81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0 --91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0 -96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0 --81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0 -105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0 --72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0 -115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0 --62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0 -124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0 --52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0 -134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0 --43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0 -144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0 --33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0 -153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0 --24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0 -163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0 --14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0 -172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.80,0.00,1.00,0.00,0.00,0 --177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0 -9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0 -19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0 --158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0 -28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0 --148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0 -38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0 --139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0 -48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0 --129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0 -57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0 --120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0 -67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0 --110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0 -76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0 --100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0 -86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0 --86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0 -96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0 --76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0 -105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0 --67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0 -115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0 --57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0 -124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0 --48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0 -134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0 --38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0 -144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0 --28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0 -153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0 --19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0 -163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0 -172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0 --0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0 -4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0 --168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0 -14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0 --158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0 -24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0 --148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0 -33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0 --139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0 -43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0 --129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0 -52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0 --120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0 -62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0 --110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0 -72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0 --100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0 -81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0 --91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0 -96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0 --81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0 -105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0 --72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0 -115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0 --62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0 -124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0 --52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0 -134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0 --43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0 -144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0 --33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0 -153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0 --24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0 -163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0 --14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0 -172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.01,0.00,1.00,0.00,0.00,0 --177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0 --168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0 -19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0 --158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0 -28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0 --148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0 -38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0 --139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0 -48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0 --129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0 -57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0 --120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0 -67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0 --110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0 -76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0 --100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0 -86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0 --86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0 -96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0 --76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0 -105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0 --67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0 -115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0 --57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0 -124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0 --48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0 -134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0 --38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0 -144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0 --28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0 -153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0 --19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0 -163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0 --9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0 -172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0 --0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0 --168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0 -14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0 --158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0 -24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0 --148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0 -33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0 --139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0 -43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0 --129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0 -52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0 --120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0 -62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0 --110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0 -72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0 --100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0 -81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0 --91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0 -96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0 --81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0 -105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0 --72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0 -115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0 --62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0 -124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0 --52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0 -134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0 --43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0 -144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0 --33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0 -153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0 --24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0 -163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0 --14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0 --4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0 -0.00,0.00,7.20,0.00,1.00,0.00,0.00,0 --177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0 --168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0 -19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0 --158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0 --148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0 -38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0 --139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0 -48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0 --129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0 -57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0 --120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0 -67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0 --110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0 -76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0 --100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0 -86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0 --86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0 -96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0 --76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0 -105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0 --67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0 -115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0 --57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0 -124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0 --48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0 -134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0 --38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0 -144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0 --28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0 --19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0 -163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0 --9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0 --0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0 --168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0 -14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0 --158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0 --148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0 -33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0 --139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0 -43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0 --129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0 -52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0 --120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0 -62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0 --110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0 -72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0 --100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0 -81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0 --91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0 -96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0 --81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0 -105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0 --72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0 -115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0 --62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0 -124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0 --52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0 -134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0 --43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0 -144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0 --33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0 -153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0 --24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0 --14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0 --4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0 -0.00,0.00,9.61,0.00,1.00,0.00,0.00,0 --177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0 --168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0 --158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0 --148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0 --139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0 -48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0 --129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0 -57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0 --120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0 -67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0 --110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0 -76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0 --100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0 -86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0 --86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0 -96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0 --76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0 -105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0 --67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0 -115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0 --57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0 -124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0 --48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0 -134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0 --38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0 --28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0 --19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0 -163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0 --9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0 --0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0 --168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0 --158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0 --148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0 -33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0 --139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0 -43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0 --129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0 -52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0 --120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0 -62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0 --110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0 -72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0 --100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0 -81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0 --91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0 -96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0 --81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0 -105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0 --72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0 -115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0 --62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0 -124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0 --52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0 -134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0 --43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0 -144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0 --33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0 -153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0 --24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0 --14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0 -172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0 --4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0 -0.00,0.00,5.60,0.00,1.00,0.00,0.00,0 --177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0 --168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0 --158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0 -28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0 --148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0 --139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0 -48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0 --129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0 -57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0 --120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0 -67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0 --110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0 -76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0 --100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0 -86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0 --86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0 -96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0 --76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0 -105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0 --67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0 -115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0 --57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0 -124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0 --48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0 -134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0 --38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0 --28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0 -153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0 --19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0 --9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0 --0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0 --168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0 --158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0 --148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0 -33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0 --139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0 -43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0 --129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0 -52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0 --120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0 -62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0 --110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0 -72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0 --100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0 -81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0 --91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0 -96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0 --81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0 -105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0 --72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0 -115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0 --62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0 -124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0 --52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0 -134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0 --43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0 -144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0 --33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0 -153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0 --24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0 --14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0 --4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0 -0.00,0.00,11.21,0.00,1.00,0.00,0.00,0 --177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0 --168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0 --158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0 -28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0 --148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0 -38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0 --139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0 -48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0 --129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0 -57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0 --120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0 -67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0 --110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0 -76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0 --100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0 -86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0 --86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0 -96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0 --76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0 -105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0 --67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0 -115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0 --57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0 -124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0 --48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0 -134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0 --38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0 -144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0 --28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0 -153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0 --19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0 --9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0 --0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0 --168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0 --158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0 --148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0 --139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0 -43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0 --129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0 -52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0 --120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0 -62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0 --110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0 -72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0 --100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0 -81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0 --91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0 -96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0 --81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0 -105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0 --72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0 -115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0 --62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0 -124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0 --52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0 -134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0 --43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0 --33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0 -153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0 --24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0 -163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0 --14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0 --4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,3.99,0.00,1.00,0.00,0.00,0 --177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0 --168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0 -19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0 --158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0 --148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0 -33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0 --139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0 -43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0 --129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0 -52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0 --120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0 -62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0 --110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0 -76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0 --100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0 -86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0 --86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0 -96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0 --76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0 -105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0 --67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0 -120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0 --57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0 --48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0 -139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0 --38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0 -148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0 --28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0 -158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0 --19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0 -163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0 --9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0 --0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0 --168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0 --158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0 --153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0 --144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0 -43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0 --134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0 --124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0 -62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0 --110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0 -72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0 --100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0 -81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0 --91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0 -96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0 --81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0 -105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0 --72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0 -115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0 --57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0 -124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0 --48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0 -134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0 --38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0 --28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0 --24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0 --14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0 --4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,12.82,0.00,1.00,0.00,0.00,0 --177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0 --168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0 --158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0 --148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0 -33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0 --139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0 --129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0 --120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0 -62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0 --110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0 -76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0 --100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0 -86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0 --86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0 -96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0 --76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0 -110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0 --67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0 -120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0 --57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0 --48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0 --38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0 --28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0 --19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0 --9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0 --0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0 --168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0 --163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0 --153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0 -33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0 --144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0 -43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0 --134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0 --124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0 -62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0 --115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0 -72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0 --100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0 -81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0 --91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0 -96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0 --81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0 -105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0 --67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0 -115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0 --57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0 -124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0 --48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0 -134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0 --38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0 -144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0 --28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0 --19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0 --14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0 --4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,2.39,0.00,1.00,0.00,0.00,0 --177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0 --168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0 --158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0 --153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0 -33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0 --144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0 --134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0 --124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0 -62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0 --110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0 -72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0 --100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0 -86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0 --86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0 -96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0 --76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0 -110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0 --67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0 -120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0 --52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0 -129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0 --43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0 --33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0 --24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0 --19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0 --9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0 --0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0 --168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0 --163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0 --153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0 -28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0 --144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0 -38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0 --134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0 -48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0 --124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0 -57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0 --115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0 -72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0 --105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0 -81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0 --91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0 -96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0 --81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0 -105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0 --67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0 -120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0 --57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0 -129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0 --48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0 -139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0 --38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0 --28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0 -158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0 --19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0 --9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0 --4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0 -0.00,0.00,14.42,0.00,1.00,0.00,0.00,0 --177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0 --168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0 --163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0 -24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0 --153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0 -28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0 --144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0 -38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0 --134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0 -48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0 --124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0 -62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0 --115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0 -72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0 --100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0 -86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0 --86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0 -96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0 --76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0 -110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0 --62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0 -120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0 --52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0 -134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0 --43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0 --33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0 --24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0 -158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0 --14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0 --9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0 --0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0 --172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0 --163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0 --153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0 --148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0 -38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0 --139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0 -48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0 --129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0 --115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0 -67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0 --105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0 -81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0 --91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0 -96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0 --76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0 -105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0 --67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0 -120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0 --52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0 -129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0 --43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0 -139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0 --33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0 --28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0 --19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0 -163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0 --9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0 --4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0 -0.00,0.00,0.79,0.00,1.00,0.00,0.00,0 --177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0 -4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0 --168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0 --163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0 -19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0 --153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0 -28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0 --148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0 -38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0 --139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0 -48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0 --124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0 -57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0 --115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0 -72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0 --100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0 -86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0 --86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0 -100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0 --76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0 -110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0 --62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0 -124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0 --48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0 -134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0 --38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0 --28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0 --24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0 -163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0 --14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0 -168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0 --9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0 --0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0 --177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0 --172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0 -9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0 --163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0 --158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0 --148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0 -33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0 --139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0 -43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0 --129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0 --120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0 -67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0 --105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0 -81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0 --91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0 -96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0 --76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0 -110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0 --67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0 -120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0 --52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0 -134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0 --43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0 -144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0 --33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0 -153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0 --24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0 --19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0 -168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0 --9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0 --4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0 diff --git a/scripts/testv/stvOMASA_3ISM_1MASA2TC32c.met b/scripts/testv/stvOMASA_3ISM_1MASA2TC32c.met deleted file mode 100644 index 00acdae5394c5d40e9193d7dd9cd1fee6d182c24..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_1MASA2TC32c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5a1f87bfe360dbd221a94583aa68a58ef050e968a63351730d643f2dc2cac4e1 -size 204600 diff --git a/scripts/testv/stvOMASA_3ISM_1MASA2TC32c_ISM1.csv b/scripts/testv/stvOMASA_3ISM_1MASA2TC32c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_1MASA2TC32c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_3ISM_1MASA2TC32c_ISM2.csv b/scripts/testv/stvOMASA_3ISM_1MASA2TC32c_ISM2.csv deleted file mode 100644 index f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_1MASA2TC32c_ISM2.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,4.80,16.00,0.00,1.00,0.00,0.00,0 -0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0 -0.00,14.40,15.96,0.00,1.00,4.80,9.60,0 -0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0 -0.00,24.00,15.91,0.00,1.00,14.40,19.20,0 -0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0 -0.00,33.60,15.87,0.00,1.00,19.20,28.80,0 -0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0 -0.00,43.20,15.83,0.00,1.00,28.80,38.40,0 -0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0 -0.00,52.80,15.79,0.00,1.00,38.40,48.00,0 -0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0 -0.00,62.40,15.74,0.00,1.00,48.00,57.60,0 -4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0 -4.80,72.00,15.70,0.00,1.00,57.60,67.20,0 -4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0 -9.60,81.60,15.66,0.00,1.00,72.00,76.80,0 -19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0 -134.40,86.40,15.62,0.00,1.00,86.40,86.40,0 -168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0 -172.80,76.80,15.57,0.00,1.00,100.80,86.40,0 -177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0 -177.60,67.20,15.53,0.00,1.00,110.40,76.80,0 -177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0 -177.60,57.60,15.49,0.00,1.00,124.80,67.20,0 -177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0 -177.60,48.00,15.44,0.00,1.00,134.40,57.60,0 -177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0 -177.60,38.40,15.40,0.00,1.00,144.00,48.00,0 -177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0 -177.60,28.80,15.36,0.00,1.00,153.60,38.40,0 -177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0 -177.60,19.20,15.32,0.00,1.00,158.40,28.80,0 -177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0 -177.60,9.60,15.27,0.00,1.00,168.00,19.20,0 -177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0 -177.60,0.00,15.23,0.00,1.00,172.80,9.60,0 --177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0 --177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0 --177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0 --177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0 --177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0 --177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0 --177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0 --177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0 --177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0 --177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0 --177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0 --177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0 --177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0 --177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0 --177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0 --177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0 --172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0 --168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0 --134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0 --19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0 --9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0 --4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0 --4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0 --4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0 --0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0 --0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0 --0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0 --0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0 --0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0 --0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0 --0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0 --0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0 --0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0 --0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0 --0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0 --0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0 --0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0 --0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,14.40,0.00,1.00,0.00,0.00,0 --0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0 --0.00,14.40,14.36,0.00,1.00,9.60,9.60,0 --0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0 --0.00,24.00,14.31,0.00,1.00,14.40,19.20,0 --0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0 --0.00,33.60,14.27,0.00,1.00,24.00,28.80,0 --4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0 --4.80,43.20,14.23,0.00,1.00,28.80,38.40,0 --4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0 --4.80,52.80,14.18,0.00,1.00,38.40,48.00,0 --4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0 --4.80,62.40,14.14,0.00,1.00,48.00,57.60,0 --9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0 --9.60,72.00,14.10,0.00,1.00,62.40,67.20,0 --14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0 --24.00,81.60,14.06,0.00,1.00,72.00,76.80,0 --43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0 --110.40,86.40,14.01,0.00,1.00,86.40,86.40,0 --148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0 --163.20,76.80,13.97,0.00,1.00,96.00,81.60,0 --168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0 --172.80,67.20,13.93,0.00,1.00,110.40,72.00,0 --172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0 --172.80,57.60,13.89,0.00,1.00,120.00,62.40,0 --172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0 --177.60,48.00,13.84,0.00,1.00,134.40,52.80,0 --177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0 --177.60,38.40,13.80,0.00,1.00,144.00,43.20,0 --177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0 --177.60,28.80,13.76,0.00,1.00,148.80,33.60,0 --177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0 --177.60,19.20,13.71,0.00,1.00,158.40,24.00,0 --177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0 --177.60,9.60,13.67,0.00,1.00,168.00,14.40,0 --177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0 --177.60,0.00,13.63,0.00,1.00,172.80,4.80,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0 -177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0 -177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0 -177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0 -177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0 -177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0 -177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0 -172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0 -172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0 -172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0 -172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0 -168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0 -163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0 -148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0 -110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0 -43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0 -24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0 -14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0 -9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0 -9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0 -4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0 -4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0 -4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0 -4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0 -4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0 -0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0 -0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0 -0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0 -0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0 -0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,12.80,0.00,1.00,0.00,0.00,0 --0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0 --0.00,14.40,12.75,0.00,1.00,9.60,9.60,0 --4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0 --4.80,24.00,12.71,0.00,1.00,14.40,19.20,0 --4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0 --4.80,33.60,12.67,0.00,1.00,24.00,28.80,0 --4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0 --9.60,43.20,12.62,0.00,1.00,33.60,38.40,0 --9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0 --9.60,52.80,12.58,0.00,1.00,43.20,48.00,0 --14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0 --14.40,62.40,12.54,0.00,1.00,52.80,57.60,0 --19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0 --24.00,72.00,12.50,0.00,1.00,62.40,67.20,0 --33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0 --43.20,76.80,12.45,0.00,1.00,72.00,72.00,0 --67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0 --96.00,81.60,12.41,0.00,1.00,86.40,81.60,0 --124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0 --144.00,76.80,12.37,0.00,1.00,96.00,76.80,0 --153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0 --158.40,67.20,12.33,0.00,1.00,110.40,72.00,0 --163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0 --168.00,57.60,12.28,0.00,1.00,120.00,62.40,0 --168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0 --168.00,48.00,12.24,0.00,1.00,129.60,52.80,0 --172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0 --172.80,38.40,12.20,0.00,1.00,139.20,43.20,0 --172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0 --172.80,28.80,12.15,0.00,1.00,148.80,33.60,0 --177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0 --177.60,19.20,12.11,0.00,1.00,158.40,24.00,0 --177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0 --177.60,9.60,12.07,0.00,1.00,168.00,14.40,0 --177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0 --177.60,0.00,12.03,0.00,1.00,172.80,4.80,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0 -177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0 -172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0 -172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0 -168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0 -168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0 -168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0 -163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0 -158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0 -153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0 -144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0 -124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0 -96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0 -67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0 -43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0 -33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0 -24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0 -19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0 -14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0 -14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0 -9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0 -9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0 -9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0 -4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0 -4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0 -0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,11.19,0.00,1.00,0.00,0.00,0 --0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0 --4.80,14.40,11.15,0.00,1.00,9.60,9.60,0 --4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0 --4.80,24.00,11.11,0.00,1.00,14.40,19.20,0 --4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0 --9.60,33.60,11.07,0.00,1.00,24.00,28.80,0 --9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0 --14.40,43.20,11.02,0.00,1.00,33.60,38.40,0 --14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0 --14.40,52.80,10.98,0.00,1.00,43.20,48.00,0 --19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0 --24.00,57.60,10.94,0.00,1.00,52.80,52.80,0 --28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0 --33.60,67.20,10.89,0.00,1.00,62.40,62.40,0 --43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0 --57.60,72.00,10.85,0.00,1.00,76.80,72.00,0 --76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0 --96.00,76.80,10.81,0.00,1.00,86.40,76.80,0 --115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0 --129.60,72.00,10.77,0.00,1.00,96.00,76.80,0 --139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0 --148.80,67.20,10.72,0.00,1.00,105.60,67.20,0 --153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0 --158.40,57.60,10.68,0.00,1.00,120.00,62.40,0 --163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0 --163.20,48.00,10.64,0.00,1.00,129.60,52.80,0 --168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0 --168.00,38.40,10.60,0.00,1.00,139.20,43.20,0 --172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0 --172.80,28.80,10.55,0.00,1.00,148.80,33.60,0 --172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0 --172.80,19.20,10.51,0.00,1.00,158.40,24.00,0 --177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0 --177.60,9.60,10.47,0.00,1.00,163.20,14.40,0 --177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0 --177.60,0.00,10.42,0.00,1.00,172.80,4.80,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0 -168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0 -168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0 -163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0 -163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0 -158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0 -153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0 -148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0 -139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0 -129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0 -115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0 -96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0 -76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0 -57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0 -43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0 -33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0 -28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0 -24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0 -19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0 -14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0 -14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0 -14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0 -9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0 -9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0 -4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0 -4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0 -0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,9.59,0.00,1.00,0.00,0.00,0 --4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0 --4.80,14.40,9.55,0.00,1.00,9.60,9.60,0 --4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0 --9.60,24.00,9.51,0.00,1.00,19.20,19.20,0 --9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0 --9.60,33.60,9.46,0.00,1.00,24.00,28.80,0 --14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0 --14.40,38.40,9.42,0.00,1.00,33.60,33.60,0 --19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0 --24.00,48.00,9.38,0.00,1.00,43.20,43.20,0 --24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0 --28.80,57.60,9.34,0.00,1.00,52.80,52.80,0 --38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0 --43.20,62.40,9.29,0.00,1.00,67.20,62.40,0 --52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0 --62.40,72.00,9.25,0.00,1.00,76.80,67.20,0 --76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0 --96.00,72.00,9.21,0.00,1.00,86.40,72.00,0 --110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0 --120.00,67.20,9.16,0.00,1.00,96.00,72.00,0 --134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0 --139.20,62.40,9.12,0.00,1.00,105.60,67.20,0 --148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0 --153.60,57.60,9.08,0.00,1.00,115.20,57.60,0 --158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0 --158.40,48.00,9.04,0.00,1.00,129.60,52.80,0 --163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0 --163.20,38.40,8.99,0.00,1.00,139.20,43.20,0 --168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0 --168.00,28.80,8.95,0.00,1.00,148.80,33.60,0 --172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0 --172.80,19.20,8.91,0.00,1.00,153.60,24.00,0 --172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0 --177.60,9.60,8.87,0.00,1.00,163.20,14.40,0 --177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0 --177.60,0.00,8.82,0.00,1.00,172.80,4.80,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0 -168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0 -163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0 -163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0 -158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0 -158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0 -153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0 -148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0 -139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0 -134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0 -120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0 -110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0 -96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0 -76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0 -62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0 -52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0 -43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0 -38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0 -28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0 -24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0 -24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0 -19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0 -14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0 -14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0 -9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0 -9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0 -9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0 -0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,7.99,0.00,1.00,0.00,0.00,0 --4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0 --4.80,14.40,7.95,0.00,1.00,9.60,9.60,0 --9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0 --9.60,24.00,7.90,0.00,1.00,19.20,19.20,0 --14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0 --14.40,28.80,7.86,0.00,1.00,28.80,24.00,0 --19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0 --19.20,38.40,7.82,0.00,1.00,38.40,33.60,0 --24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0 --28.80,48.00,7.78,0.00,1.00,48.00,43.20,0 --33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0 --38.40,52.80,7.73,0.00,1.00,57.60,52.80,0 --43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0 --48.00,62.40,7.69,0.00,1.00,67.20,57.60,0 --57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0 --67.20,67.20,7.65,0.00,1.00,76.80,62.40,0 --81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0 --91.20,67.20,7.60,0.00,1.00,86.40,67.20,0 --105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0 --115.20,67.20,7.56,0.00,1.00,96.00,67.20,0 --124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0 --134.40,57.60,7.52,0.00,1.00,105.60,62.40,0 --139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0 --144.00,52.80,7.48,0.00,1.00,115.20,57.60,0 --148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0 --153.60,43.20,7.43,0.00,1.00,124.80,48.00,0 --158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0 --163.20,38.40,7.39,0.00,1.00,134.40,38.40,0 --163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0 --168.00,28.80,7.35,0.00,1.00,144.00,33.60,0 --168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0 --172.80,19.20,7.31,0.00,1.00,153.60,24.00,0 --172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0 --177.60,9.60,7.26,0.00,1.00,163.20,14.40,0 --177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0 --177.60,0.00,7.22,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0 -163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0 -158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0 -153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0 -148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0 -144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0 -139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0 -134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0 -124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0 -115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0 -105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0 -91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0 -81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0 -67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0 -57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0 -48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0 -43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0 -38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0 -33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0 -28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0 -24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0 -19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0 -19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0 -14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0 -9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0 -0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,6.39,0.00,1.00,0.00,0.00,0 --4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0 --4.80,14.40,6.34,0.00,1.00,9.60,9.60,0 --9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0 --9.60,19.20,6.30,0.00,1.00,19.20,14.40,0 --14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0 --19.20,28.80,6.26,0.00,1.00,28.80,24.00,0 --19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0 --24.00,38.40,6.22,0.00,1.00,38.40,33.60,0 --28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0 --33.60,43.20,6.17,0.00,1.00,48.00,38.40,0 --38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0 --43.20,52.80,6.13,0.00,1.00,57.60,48.00,0 --48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0 --52.80,57.60,6.09,0.00,1.00,67.20,52.80,0 --62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0 --72.00,62.40,6.05,0.00,1.00,76.80,57.60,0 --81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0 --91.20,62.40,6.00,0.00,1.00,86.40,62.40,0 --100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0 --110.40,62.40,5.96,0.00,1.00,96.00,62.40,0 --120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0 --129.60,57.60,5.92,0.00,1.00,105.60,57.60,0 --134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0 --139.20,48.00,5.87,0.00,1.00,115.20,52.80,0 --144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0 --148.80,43.20,5.83,0.00,1.00,124.80,48.00,0 --153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0 --158.40,33.60,5.79,0.00,1.00,134.40,38.40,0 --163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0 --163.20,28.80,5.75,0.00,1.00,144.00,28.80,0 --168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0 --168.00,19.20,5.70,0.00,1.00,153.60,24.00,0 --172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0 --172.80,9.60,5.66,0.00,1.00,163.20,14.40,0 --177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0 --177.60,0.00,5.62,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0 -163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0 -158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0 -148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0 -144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0 -139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0 -134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0 -129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0 -120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0 -110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0 -100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0 -91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0 -81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0 -72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0 -62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0 -52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0 -48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0 -43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0 -38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0 -33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0 -28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0 -24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0 -19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0 -19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0 -9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0 -4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0 -0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,4.79,0.00,1.00,0.00,0.00,0 --4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0 --9.60,14.40,4.74,0.00,1.00,9.60,9.60,0 --9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0 --14.40,19.20,4.70,0.00,1.00,19.20,14.40,0 --14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0 --19.20,28.80,4.66,0.00,1.00,28.80,24.00,0 --24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0 --28.80,33.60,4.61,0.00,1.00,38.40,28.80,0 --28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0 --33.60,43.20,4.57,0.00,1.00,48.00,38.40,0 --38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0 --48.00,48.00,4.53,0.00,1.00,57.60,43.20,0 --52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0 --57.60,52.80,4.49,0.00,1.00,67.20,48.00,0 --67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0 --76.80,57.60,4.44,0.00,1.00,76.80,52.80,0 --81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0 --91.20,57.60,4.40,0.00,1.00,86.40,57.60,0 --100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0 --110.40,57.60,4.36,0.00,1.00,96.00,57.60,0 --115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0 --124.80,52.80,4.32,0.00,1.00,105.60,52.80,0 --129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0 --139.20,48.00,4.27,0.00,1.00,115.20,48.00,0 --144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0 --148.80,38.40,4.23,0.00,1.00,124.80,43.20,0 --153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0 --153.60,33.60,4.19,0.00,1.00,134.40,38.40,0 --158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0 --163.20,24.00,4.14,0.00,1.00,144.00,28.80,0 --163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0 --168.00,19.20,4.10,0.00,1.00,153.60,24.00,0 --172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0 --172.80,9.60,4.06,0.00,1.00,163.20,14.40,0 --177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0 --177.60,0.00,4.02,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0 -163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0 -163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0 -158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0 -148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0 -144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0 -139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0 -129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0 -124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0 -115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0 -110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0 -100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0 -91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0 -81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0 -76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0 -67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0 -57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0 -52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0 -48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0 -38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0 -33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0 -28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0 -28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0 -24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0 -19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0 -14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0 -14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0 -9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0 -0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.18,0.00,1.00,0.00,0.00,0 --4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0 --9.60,9.60,3.14,0.00,1.00,9.60,9.60,0 --9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0 --14.40,19.20,3.10,0.00,1.00,19.20,14.40,0 --19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0 --24.00,24.00,3.05,0.00,1.00,28.80,24.00,0 --24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0 --28.80,33.60,3.01,0.00,1.00,38.40,28.80,0 --33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0 --38.40,38.40,2.97,0.00,1.00,48.00,33.60,0 --43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0 --48.00,43.20,2.93,0.00,1.00,57.60,43.20,0 --52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0 --62.40,48.00,2.88,0.00,1.00,67.20,48.00,0 --67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0 --76.80,52.80,2.84,0.00,1.00,76.80,48.00,0 --86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0 --91.20,52.80,2.80,0.00,1.00,86.40,52.80,0 --100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0 --105.60,52.80,2.76,0.00,1.00,96.00,52.80,0 --115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0 --120.00,48.00,2.71,0.00,1.00,105.60,48.00,0 --129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0 --134.40,43.20,2.67,0.00,1.00,115.20,43.20,0 --139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0 --144.00,38.40,2.63,0.00,1.00,124.80,38.40,0 --148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0 --153.60,33.60,2.58,0.00,1.00,134.40,33.60,0 --158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0 --158.40,24.00,2.54,0.00,1.00,144.00,28.80,0 --163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0 --168.00,19.20,2.50,0.00,1.00,153.60,19.20,0 --168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.46,0.00,1.00,163.20,14.40,0 --177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.41,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0 -158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0 -148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0 -144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0 -139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0 -134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0 -129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0 -120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0 -115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0 -105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0 -100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0 -91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0 -86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0 -76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0 -67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0 -62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0 -52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0 -48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0 -43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0 -38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0 -33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0 -28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0 -24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0 -24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0 -19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0 -0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.58,0.00,1.00,0.00,0.00,0 --4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.54,0.00,1.00,9.60,4.80,0 --14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0 --14.40,19.20,1.50,0.00,1.00,19.20,14.40,0 --19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0 --24.00,24.00,1.45,0.00,1.00,28.80,19.20,0 --28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0 --33.60,28.80,1.41,0.00,1.00,38.40,28.80,0 --38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0 --43.20,38.40,1.37,0.00,1.00,48.00,33.60,0 --48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0 --52.80,43.20,1.32,0.00,1.00,57.60,38.40,0 --57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0 --62.40,43.20,1.28,0.00,1.00,67.20,43.20,0 --72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0 --76.80,48.00,1.24,0.00,1.00,76.80,43.20,0 --86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0 --91.20,48.00,1.20,0.00,1.00,86.40,48.00,0 --100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0 --105.60,48.00,1.15,0.00,1.00,96.00,48.00,0 --110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0 --120.00,43.20,1.11,0.00,1.00,105.60,43.20,0 --124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0 --129.60,38.40,1.07,0.00,1.00,115.20,43.20,0 --134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0 --139.20,33.60,1.03,0.00,1.00,124.80,38.40,0 --144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0 --148.80,28.80,0.98,0.00,1.00,134.40,33.60,0 --153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0 --158.40,24.00,0.94,0.00,1.00,144.00,24.00,0 --163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0 --163.20,14.40,0.90,0.00,1.00,153.60,19.20,0 --168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.85,0.00,1.00,163.20,14.40,0 --172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.81,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0 -148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0 -144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0 -139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0 -134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0 -129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0 -124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0 -120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0 -110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0 -105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0 -100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0 -91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0 -86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0 -76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0 -72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0 -62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0 -57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0 -52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0 -48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0 -43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0 -38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0 -28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0 -19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0 -0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,0.00,0.00,1.00,0.00,0.00,0 --4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0 --9.60,9.60,0.04,0.00,1.00,9.60,4.80,0 --14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0 --19.20,14.40,0.09,0.00,1.00,19.20,14.40,0 --24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0 --24.00,24.00,0.13,0.00,1.00,28.80,19.20,0 --28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0 --33.60,28.80,0.17,0.00,1.00,38.40,24.00,0 --38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0 --43.20,33.60,0.21,0.00,1.00,48.00,28.80,0 --48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0 --52.80,38.40,0.26,0.00,1.00,57.60,33.60,0 --62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0 --67.20,38.40,0.30,0.00,1.00,67.20,38.40,0 --72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0 --76.80,43.20,0.34,0.00,1.00,76.80,38.40,0 --86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0 --91.20,43.20,0.38,0.00,1.00,86.40,43.20,0 --96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0 --105.60,43.20,0.43,0.00,1.00,96.00,43.20,0 --110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0 --115.20,38.40,0.47,0.00,1.00,105.60,38.40,0 --124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0 --129.60,38.40,0.51,0.00,1.00,115.20,38.40,0 --134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0 --139.20,33.60,0.56,0.00,1.00,124.80,33.60,0 --144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0 --148.80,28.80,0.60,0.00,1.00,134.40,28.80,0 --153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0 --158.40,19.20,0.64,0.00,1.00,144.00,24.00,0 --158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0 --163.20,14.40,0.68,0.00,1.00,153.60,19.20,0 --168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.73,0.00,1.00,163.20,9.60,0 --172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.77,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0 -158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0 -158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0 -148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0 -144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0 -139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0 -134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0 -129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0 -124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0 -115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0 -110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0 -105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0 -96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0 -91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0 -86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0 -76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0 -72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0 -67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0 -62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0 -52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0 -48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0 -43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0 -38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0 -28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0 -19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0 -0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.60,0.00,1.00,0.00,0.00,0 --9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.64,0.00,1.00,9.60,4.80,0 --14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0 --19.20,14.40,1.69,0.00,1.00,19.20,9.60,0 --24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0 --28.80,19.20,1.73,0.00,1.00,28.80,19.20,0 --33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0 --38.40,24.00,1.77,0.00,1.00,38.40,24.00,0 --43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0 --48.00,28.80,1.82,0.00,1.00,48.00,28.80,0 --52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0 --57.60,33.60,1.86,0.00,1.00,57.60,28.80,0 --62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0 --67.20,38.40,1.90,0.00,1.00,67.20,33.60,0 --72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0 --81.60,38.40,1.94,0.00,1.00,76.80,38.40,0 --86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0 --91.20,38.40,1.99,0.00,1.00,86.40,38.40,0 --96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0 --105.60,38.40,2.03,0.00,1.00,96.00,38.40,0 --110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0 --115.20,33.60,2.07,0.00,1.00,105.60,33.60,0 --120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0 --124.80,33.60,2.11,0.00,1.00,115.20,33.60,0 --129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0 --134.40,28.80,2.16,0.00,1.00,124.80,28.80,0 --139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0 --144.00,24.00,2.20,0.00,1.00,134.40,24.00,0 --148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0 --153.60,19.20,2.24,0.00,1.00,144.00,19.20,0 --158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0 --163.20,14.40,2.29,0.00,1.00,153.60,14.40,0 --168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.33,0.00,1.00,163.20,9.60,0 --172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.37,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0 -153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0 -144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0 -134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0 -124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0 -120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0 -115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0 -110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0 -105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0 -96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0 -91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0 -86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0 -81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0 -72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0 -67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0 -62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0 -57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0 -52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0 -48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0 -43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0 -38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0 -33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0 -28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0 -14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.20,0.00,1.00,0.00,0.00,0 --9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0 --14.40,9.60,3.25,0.00,1.00,9.60,4.80,0 --14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0 --19.20,14.40,3.29,0.00,1.00,19.20,9.60,0 --24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0 --28.80,19.20,3.33,0.00,1.00,28.80,14.40,0 --33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0 --38.40,24.00,3.38,0.00,1.00,38.40,19.20,0 --43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0 --48.00,24.00,3.42,0.00,1.00,48.00,24.00,0 --52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0 --57.60,28.80,3.46,0.00,1.00,57.60,28.80,0 --62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0 --67.20,33.60,3.50,0.00,1.00,67.20,28.80,0 --72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0 --81.60,33.60,3.55,0.00,1.00,76.80,33.60,0 --86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0 --91.20,33.60,3.59,0.00,1.00,86.40,33.60,0 --96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0 --100.80,33.60,3.63,0.00,1.00,96.00,33.60,0 --110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0 --115.20,33.60,3.67,0.00,1.00,105.60,28.80,0 --120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0 --124.80,28.80,3.72,0.00,1.00,115.20,28.80,0 --129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0 --134.40,24.00,3.76,0.00,1.00,124.80,24.00,0 --139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0 --144.00,19.20,3.80,0.00,1.00,134.40,24.00,0 --148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0 --153.60,14.40,3.85,0.00,1.00,144.00,19.20,0 --158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0 --163.20,9.60,3.89,0.00,1.00,153.60,14.40,0 --168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0 --168.00,4.80,3.93,0.00,1.00,163.20,9.60,0 --172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0 --177.60,0.00,3.97,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0 -124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0 -120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0 -115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0 -110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0 -100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0 -96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0 -91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0 -86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0 -81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0 -72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0 -67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0 -62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0 -57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0 -52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0 -48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0 -43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0 -38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0 -33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0 -28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0 -24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0 -14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0 -14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0 --4.80,0.00,4.81,0.00,1.00,0.00,0.00,0 --9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0 --14.40,4.80,4.85,0.00,1.00,9.60,4.80,0 --19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0 --19.20,9.60,4.89,0.00,1.00,19.20,9.60,0 --24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0 --28.80,14.40,4.93,0.00,1.00,28.80,14.40,0 --33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0 --38.40,19.20,4.98,0.00,1.00,38.40,14.40,0 --43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0 --48.00,24.00,5.02,0.00,1.00,48.00,19.20,0 --52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0 --57.60,24.00,5.06,0.00,1.00,57.60,24.00,0 --62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0 --72.00,28.80,5.11,0.00,1.00,67.20,24.00,0 --76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0 --81.60,28.80,5.15,0.00,1.00,76.80,28.80,0 --86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0 --91.20,28.80,5.19,0.00,1.00,86.40,28.80,0 --96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0 --100.80,28.80,5.23,0.00,1.00,96.00,28.80,0 --105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0 --115.20,28.80,5.28,0.00,1.00,105.60,28.80,0 --120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0 --124.80,24.00,5.32,0.00,1.00,115.20,24.00,0 --129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0 --134.40,24.00,5.36,0.00,1.00,124.80,24.00,0 --139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0 --144.00,19.20,5.40,0.00,1.00,134.40,19.20,0 --148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0 --153.60,14.40,5.45,0.00,1.00,144.00,14.40,0 --158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0 --163.20,9.60,5.49,0.00,1.00,153.60,9.60,0 --163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0 --168.00,4.80,5.53,0.00,1.00,163.20,9.60,0 --172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0 --177.60,0.00,5.58,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0 -163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0 -129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0 -124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0 -120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0 -115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0 -105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0 -100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0 -96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0 -91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0 -86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0 -81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0 -76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0 -72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0 -62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0 -57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0 -52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0 -48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0 -43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0 -38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0 -33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0 -28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0 -24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0 -19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0 -19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0 -0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,6.41,0.00,1.00,0.00,0.00,0 --9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0 --14.40,4.80,6.45,0.00,1.00,9.60,4.80,0 --19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0 --24.00,9.60,6.49,0.00,1.00,19.20,9.60,0 --28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0 --33.60,14.40,6.54,0.00,1.00,28.80,9.60,0 --33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0 --38.40,14.40,6.58,0.00,1.00,38.40,14.40,0 --43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0 --48.00,19.20,6.62,0.00,1.00,48.00,14.40,0 --57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0 --62.40,19.20,6.66,0.00,1.00,57.60,19.20,0 --67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0 --72.00,24.00,6.71,0.00,1.00,67.20,19.20,0 --76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0 --81.60,24.00,6.75,0.00,1.00,76.80,24.00,0 --86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0 --91.20,24.00,6.79,0.00,1.00,86.40,24.00,0 --96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0 --100.80,24.00,6.84,0.00,1.00,96.00,24.00,0 --105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0 --110.40,24.00,6.88,0.00,1.00,105.60,24.00,0 --115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0 --120.00,19.20,6.92,0.00,1.00,115.20,19.20,0 --129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0 --134.40,19.20,6.96,0.00,1.00,124.80,19.20,0 --139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0 --144.00,14.40,7.01,0.00,1.00,134.40,14.40,0 --148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0 --148.80,14.40,7.05,0.00,1.00,144.00,14.40,0 --153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0 --158.40,9.60,7.09,0.00,1.00,153.60,9.60,0 --163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0 --168.00,4.80,7.13,0.00,1.00,163.20,4.80,0 --172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0 --177.60,0.00,7.18,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0 -163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0 -158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0 -148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0 -144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0 -134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0 -129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0 -120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0 -115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0 -110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0 -105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0 -100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0 -96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0 -91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0 -86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0 -81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0 -76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0 -72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0 -67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0 -62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0 -57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0 -48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0 -43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0 -38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0 -33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0 -33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0 -28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0 -24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0 -19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0 -0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,8.01,0.00,1.00,0.00,0.00,0 --9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0 --14.40,4.80,8.05,0.00,1.00,9.60,4.80,0 --19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0 --24.00,9.60,8.10,0.00,1.00,19.20,4.80,0 --28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0 --33.60,9.60,8.14,0.00,1.00,24.00,9.60,0 --38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0 --43.20,14.40,8.18,0.00,1.00,33.60,9.60,0 --48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0 --52.80,14.40,8.22,0.00,1.00,43.20,14.40,0 --57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0 --62.40,19.20,8.27,0.00,1.00,52.80,14.40,0 --67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0 --72.00,19.20,8.31,0.00,1.00,62.40,14.40,0 --76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0 --81.60,19.20,8.35,0.00,1.00,76.80,19.20,0 --86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0 --91.20,19.20,8.40,0.00,1.00,86.40,19.20,0 --96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0 --100.80,19.20,8.44,0.00,1.00,96.00,19.20,0 --105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0 --110.40,19.20,8.48,0.00,1.00,105.60,19.20,0 --115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0 --120.00,14.40,8.52,0.00,1.00,120.00,14.40,0 --124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0 --129.60,14.40,8.57,0.00,1.00,129.60,14.40,0 --134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0 --139.20,14.40,8.61,0.00,1.00,139.20,14.40,0 --144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0 --148.80,9.60,8.65,0.00,1.00,148.80,9.60,0 --153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0 --158.40,4.80,8.69,0.00,1.00,158.40,9.60,0 --163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0 --168.00,4.80,8.74,0.00,1.00,163.20,4.80,0 --172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0 -148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0 -144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0 -139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0 -134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0 -129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0 -124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0 -120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0 -115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0 -110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0 -105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0 -100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0 -96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0 -91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0 -86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0 -81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0 -76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0 -72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0 -67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0 -62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0 -52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0 -48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0 -43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0 -38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0 -33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0 -28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0 -24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0 -19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0 -9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0 -0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,9.61,0.00,1.00,0.00,0.00,0 --9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0 --14.40,4.80,9.66,0.00,1.00,9.60,0.00,0 --19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0 --24.00,4.80,9.70,0.00,1.00,14.40,4.80,0 --28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0 --33.60,9.60,9.74,0.00,1.00,24.00,4.80,0 --38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0 --43.20,9.60,9.78,0.00,1.00,33.60,9.60,0 --48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0 --52.80,9.60,9.83,0.00,1.00,43.20,9.60,0 --57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0 --62.40,14.40,9.87,0.00,1.00,52.80,9.60,0 --67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0 --72.00,14.40,9.91,0.00,1.00,62.40,14.40,0 --76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0 --81.60,14.40,9.95,0.00,1.00,76.80,14.40,0 --86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0 --91.20,14.40,10.00,0.00,1.00,86.40,14.40,0 --96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0 --100.80,14.40,10.04,0.00,1.00,96.00,14.40,0 --105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0 --110.40,14.40,10.08,0.00,1.00,110.40,14.40,0 --115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0 --120.00,14.40,10.13,0.00,1.00,120.00,9.60,0 --124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0 --129.60,9.60,10.17,0.00,1.00,129.60,9.60,0 --134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0 --139.20,9.60,10.21,0.00,1.00,139.20,9.60,0 --144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0 --148.80,9.60,10.25,0.00,1.00,148.80,9.60,0 --153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0 --158.40,4.80,10.30,0.00,1.00,158.40,4.80,0 --163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0 --168.00,4.80,10.34,0.00,1.00,168.00,4.80,0 --172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0 -148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0 -144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0 -139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0 -134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0 -129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0 -124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0 -120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0 -115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0 -110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0 -105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0 -100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0 -96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0 -91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0 -86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0 -81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0 -76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0 -72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0 -67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0 -62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0 -48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0 -43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0 -38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0 -33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0 -28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0 -24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0 -19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0 -14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,11.21,0.00,1.00,0.00,0.00,0 --9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0 --14.40,0.00,11.26,0.00,1.00,9.60,0.00,0 --19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0 --24.00,4.80,11.30,0.00,1.00,14.40,4.80,0 --28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0 --33.60,4.80,11.34,0.00,1.00,24.00,4.80,0 --38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0 --43.20,4.80,11.39,0.00,1.00,33.60,4.80,0 --48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0 --52.80,9.60,11.43,0.00,1.00,43.20,4.80,0 --57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0 --62.40,9.60,11.47,0.00,1.00,52.80,4.80,0 --67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0 --72.00,9.60,11.51,0.00,1.00,62.40,9.60,0 --76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0 --81.60,9.60,11.56,0.00,1.00,72.00,9.60,0 --86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0 --91.20,9.60,11.60,0.00,1.00,86.40,9.60,0 --96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0 --100.80,9.60,11.64,0.00,1.00,96.00,9.60,0 --105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0 --110.40,9.60,11.68,0.00,1.00,110.40,9.60,0 --115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0 --120.00,9.60,11.73,0.00,1.00,120.00,9.60,0 --124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0 --129.60,9.60,11.77,0.00,1.00,129.60,4.80,0 --134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0 --139.20,4.80,11.81,0.00,1.00,139.20,4.80,0 --144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0 --148.80,4.80,11.86,0.00,1.00,148.80,4.80,0 --153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0 --158.40,4.80,11.90,0.00,1.00,158.40,4.80,0 --163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0 --168.00,0.00,11.94,0.00,1.00,168.00,4.80,0 --172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0 -158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0 -148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0 -144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0 -139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0 -134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0 -129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0 -124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0 -120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0 -115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0 -110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0 -105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0 -100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0 -96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0 -91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0 -86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0 -81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0 -76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0 -72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0 -67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0 -62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0 -57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0 -43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0 -33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0 -28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0 -24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0 -19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,12.82,0.00,1.00,0.00,0.00,0 --9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0 --14.40,0.00,12.86,0.00,1.00,9.60,0.00,0 --19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0 --24.00,0.00,12.90,0.00,1.00,14.40,0.00,0 --28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0 --33.60,4.80,12.95,0.00,1.00,24.00,0.00,0 --38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0 --43.20,4.80,12.99,0.00,1.00,28.80,0.00,0 --48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0 --52.80,4.80,13.03,0.00,1.00,38.40,4.80,0 --57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0 --62.40,4.80,13.07,0.00,1.00,48.00,4.80,0 --67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0 --72.00,4.80,13.12,0.00,1.00,62.40,4.80,0 --76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0 --81.60,4.80,13.16,0.00,1.00,72.00,4.80,0 --86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0 --91.20,4.80,13.20,0.00,1.00,86.40,4.80,0 --96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0 --100.80,4.80,13.24,0.00,1.00,96.00,4.80,0 --105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0 --110.40,4.80,13.29,0.00,1.00,110.40,4.80,0 --115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0 --120.00,4.80,13.33,0.00,1.00,120.00,4.80,0 --124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0 --129.60,4.80,13.37,0.00,1.00,134.40,4.80,0 --134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0 --139.20,4.80,13.42,0.00,1.00,144.00,4.80,0 --144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0 --148.80,4.80,13.46,0.00,1.00,153.60,0.00,0 --153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0 --158.40,0.00,13.50,0.00,1.00,158.40,0.00,0 --163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0 --168.00,0.00,13.54,0.00,1.00,168.00,0.00,0 --172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0 -163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0 -158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0 -153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0 -148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0 -144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0 -139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0 -134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0 -129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0 -124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0 -120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0 -115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0 -110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0 -105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0 -100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0 -96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0 -91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0 -86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0 -81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0 -76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0 -72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0 -67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0 -57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0 -52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0 -43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0 -33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0 -28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0 -24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0 -19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0 -14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0 -9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,14.42,0.00,1.00,0.00,0.00,0 --9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0 --14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0 --19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0 --24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0 --28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0 --33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0 --38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0 --43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0 --48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0 --52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0 --57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0 --62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0 --67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0 --72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0 --76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0 --81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0 --86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0 --91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0 --96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0 --100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0 --105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0 --110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0 --115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0 --120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0 --124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0 --129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0 --134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0 --139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0 --144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0 --148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0 --153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0 --158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0 --163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0 --168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0 --172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0 -177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0 -172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0 -168.00,0.00,15.25,0.00,1.00,4.80,0.00,0 -163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0 -158.40,0.00,15.30,0.00,1.00,9.60,0.00,0 -153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0 -148.80,0.00,15.34,0.00,1.00,19.20,0.00,0 -144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0 -139.20,0.00,15.38,0.00,1.00,28.80,0.00,0 -134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0 -129.60,0.00,15.42,0.00,1.00,33.60,0.00,0 -124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0 -120.00,0.00,15.47,0.00,1.00,43.20,0.00,0 -115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0 -110.40,0.00,15.51,0.00,1.00,57.60,0.00,0 -105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0 -100.80,0.00,15.55,0.00,1.00,67.20,0.00,0 -96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0 -91.20,0.00,15.59,0.00,1.00,81.60,0.00,0 -86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0 -81.60,0.00,15.64,0.00,1.00,96.00,0.00,0 -76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0 -72.00,0.00,15.68,0.00,1.00,110.40,0.00,0 -67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0 -62.40,0.00,15.72,0.00,1.00,120.00,0.00,0 -57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0 -52.80,0.00,15.77,0.00,1.00,134.40,0.00,0 -48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0 -43.20,0.00,15.81,0.00,1.00,144.00,0.00,0 -38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0 -33.60,0.00,15.85,0.00,1.00,153.60,0.00,0 -28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0 -24.00,0.00,15.89,0.00,1.00,158.40,0.00,0 -19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0 -14.40,0.00,15.94,0.00,1.00,168.00,0.00,0 -9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0 -4.80,0.00,15.98,0.00,1.00,172.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 diff --git a/scripts/testv/stvOMASA_3ISM_1MASA2TC32c_ISM3.csv b/scripts/testv/stvOMASA_3ISM_1MASA2TC32c_ISM3.csv deleted file mode 100644 index 14eee9b693b536fa2fd22d2813d7f588b8930b06..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_1MASA2TC32c_ISM3.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0 --177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0 -4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0 --168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0 -14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0 --163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0 -19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0 --153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0 -28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0 --148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0 -38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0 --139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0 -48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0 --124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0 -57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0 --115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0 -72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0 --100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0 -86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0 --86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0 -100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0 --76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0 -110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0 --62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0 -124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0 --52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0 -134.40,33.60,0.28,0.00,1.00,177.60,0.00,0 --38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0 -144.00,28.80,0.30,0.00,1.00,177.60,0.00,0 --33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0 -153.60,24.00,0.32,0.00,1.00,177.60,0.00,0 --24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0 -158.40,19.20,0.34,0.00,1.00,177.60,0.00,0 --14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0 -168.00,9.60,0.36,0.00,1.00,177.60,0.00,0 --9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0 -172.80,4.80,0.38,0.00,1.00,177.60,0.00,0 --0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0 --177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0 -4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0 -14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0 -19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0 --158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0 -28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0 --148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0 -33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0 --139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0 -43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0 --129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0 -57.60,38.40,15.47,0.00,1.00,177.60,0.00,0 --120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0 -67.20,43.20,15.44,0.00,1.00,177.60,0.00,0 --105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0 -81.60,43.20,15.42,0.00,1.00,177.60,0.00,0 --91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0 -96.00,43.20,15.40,0.00,1.00,0.00,0.00,0 --76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0 -110.40,43.20,15.38,0.00,1.00,0.00,0.00,0 --67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0 -120.00,38.40,15.36,0.00,1.00,0.00,0.00,0 --52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0 -129.60,38.40,15.34,0.00,1.00,0.00,0.00,0 --43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0 -144.00,33.60,15.32,0.00,1.00,0.00,0.00,0 --33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0 -148.80,24.00,15.30,0.00,1.00,0.00,0.00,0 --24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0 -158.40,19.20,15.27,0.00,1.00,0.00,0.00,0 --19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0 -168.00,14.40,15.25,0.00,1.00,0.00,0.00,0 --9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0 -172.80,4.80,15.23,0.00,1.00,0.00,0.00,0 --4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0 -0.00,0.00,15.21,0.00,1.00,0.00,0.00,0 --177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0 -9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0 -14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0 --163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0 -24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0 --153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0 -28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0 --144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0 -38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0 --134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0 -48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0 --124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0 -62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0 --115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0 -72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0 --100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0 -86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0 --86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0 -96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0 --76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0 -110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0 --62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0 -120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0 --52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0 -134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0 --43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0 -144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0 --33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0 -148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0 --24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0 -158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0 --19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0 -168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0 --9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0 -172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0 -4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0 -14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0 -19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0 --153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0 -28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0 --148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0 -38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0 --139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0 -48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0 --124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0 -57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0 --115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0 -72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0 --105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0 -81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0 --91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0 -96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0 --76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0 -105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0 --67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0 -120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0 --57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0 -129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0 --43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0 -139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0 --33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0 -148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0 --28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0 -158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0 --19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0 -163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0 --9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0 -172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0 -0.00,0.00,1.60,0.00,1.00,0.00,0.00,0 --177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0 -9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0 -14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0 --158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0 -24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0 --153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0 -33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0 --144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0 -43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0 --134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0 -52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0 --124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0 -62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0 --110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0 -72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0 --100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0 -86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0 --86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0 -96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0 --76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0 -110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0 --67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0 -120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0 --52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0 -129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0 --43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0 -139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0 --33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0 -148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0 --24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0 -158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0 --19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0 -168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0 -172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0 -4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0 -14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0 --163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0 -24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0 --153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0 -28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0 --144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0 -38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0 --134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0 -48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0 --124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0 -62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0 --115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0 -72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0 --100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0 -81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0 --91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0 -96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0 --81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0 -105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0 --67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0 -115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0 --57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0 -129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0 --48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0 -139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0 --38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0 -148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0 --28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0 -153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0 --19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0 -163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0 --9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0 -172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0 -0.00,0.00,13.61,0.00,1.00,0.00,0.00,0 --177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0 -9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0 --168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0 -24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0 --148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0 -33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0 --139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0 -43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0 --129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0 -52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0 --120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0 -62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0 --110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0 -76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0 --100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0 -86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0 --86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0 -96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0 --76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0 -105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0 --67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0 -120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0 --57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0 -129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0 --48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0 -139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0 --38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0 -148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0 -158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0 --19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0 -163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0 -172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0 -4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0 -14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0 --163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0 -24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0 --153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0 -33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0 --144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0 -43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0 --134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0 -52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0 --124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0 -62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0 --115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0 -72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0 --100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0 -81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0 --91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0 -96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0 --81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0 -105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0 --67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0 -115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0 --57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0 -124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0 --48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0 -134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0 --38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0 -144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0 --28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0 -153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0 --19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0 -163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0 --14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0 -172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0 --4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0 -0.00,0.00,3.20,0.00,1.00,0.00,0.00,0 --177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0 -9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0 -19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0 -24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0 --148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0 -33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0 --139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0 -43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0 --129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0 -52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0 --120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0 -67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0 --110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0 -76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0 --100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0 -86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0 --86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0 -96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0 --76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0 -105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0 --67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0 -115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0 --57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0 -129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0 --48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0 -139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0 --38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0 -148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0 -153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0 --19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0 -163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0 -172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0 -4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0 -14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0 -24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0 --153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0 -33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0 --144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0 -43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0 --134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0 -52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0 --124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0 -62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0 --110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0 -72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0 --100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0 -81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0 --91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0 -96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0 --81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0 -105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0 --72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0 -115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0 --57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0 -124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0 --48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0 -134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0 --38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0 -144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0 --28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0 -153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0 --24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0 -163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0 --14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0 -172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -0.00,0.00,12.01,0.00,1.00,0.00,0.00,0 --177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0 -9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0 --158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0 -28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0 --148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0 -38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0 --139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0 -48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0 --129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0 -57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0 --120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0 -67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0 --110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0 -76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0 --100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0 -86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0 --86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0 -96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0 --76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0 -105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0 --67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0 -115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0 --57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0 -124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0 --48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0 -134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0 --38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0 -144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0 --28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0 -153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0 --19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0 -163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0 -172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0 -4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0 -14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0 -24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0 --148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0 -33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0 --139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0 -43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0 --129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0 -52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0 --120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0 -62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0 --110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0 -72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0 --100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0 -81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0 --91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0 -96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0 --81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0 -105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0 --72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0 -115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0 --62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0 -124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0 --52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0 -134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0 --43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0 -144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0 --33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0 -153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0 --24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0 -163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0 -172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0 -0.00,0.00,4.81,0.00,1.00,0.00,0.00,0 --177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0 -9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0 -19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0 -28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0 --148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0 -38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0 --139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0 -48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0 --129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0 -57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0 --120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0 -67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0 --110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0 -76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0 --100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0 -86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0 --86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0 -96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0 --76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0 -105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0 --67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0 -115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0 --57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0 -124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0 --48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0 -134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0 --38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0 -144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0 --28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0 -153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0 --19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0 -163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0 --9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0 -172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0 -4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0 -14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0 -24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0 --148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0 -33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0 --139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0 -43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0 --129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0 -52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0 --120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0 -62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0 --110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0 -72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0 --100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0 -81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0 --91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0 -96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0 --81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0 -105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0 --72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0 -115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0 --62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0 -124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0 --52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0 -134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0 --43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0 -144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0 --33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0 -153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0 --24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0 -163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0 -172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -0.00,0.00,10.40,0.00,1.00,0.00,0.00,0 --177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0 -9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0 -19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0 -28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0 --148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0 -38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0 --139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0 -48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0 --129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0 -57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0 --120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0 -67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0 --110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0 -76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0 --100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0 -86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0 --86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0 -96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0 --76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0 -105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0 --67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0 -115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0 --57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0 -124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0 --48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0 -134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0 --38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0 -144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0 --28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0 -153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0 -163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0 --9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0 -172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0 -4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0 -14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0 -24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0 -33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0 --139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0 -43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0 --129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0 -52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0 --120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0 -62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0 --110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0 -72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0 --100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0 -81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0 --91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0 -96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0 --81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0 -105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0 --72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0 -115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0 --62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0 -124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0 --52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0 -134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0 --43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0 -144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0 --33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0 -153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0 --24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0 -163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0 -172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,6.41,0.00,1.00,0.00,0.00,0 --177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0 -9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0 -19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0 --158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0 -28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0 --148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0 -38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0 --139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0 -48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0 --129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0 -57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0 --120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0 -67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0 --110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0 -76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0 --100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0 -86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0 --86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0 -96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0 --76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0 -105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0 --67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0 -115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0 --57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0 -124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0 --48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0 -134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0 --38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0 -144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0 --28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0 -153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0 -163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0 -172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0 -4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0 -14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0 --158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0 -24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0 -33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0 --139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0 -43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0 --129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0 -52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0 --120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0 -62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0 --110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0 -72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0 --100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0 -81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0 --91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0 -96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0 --81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0 -105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0 --72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0 -115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0 --62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0 -124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0 --52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0 -134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0 --43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0 -144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0 --33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0 -153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0 --24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0 -163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0 --14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0 -172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.80,0.00,1.00,0.00,0.00,0 --177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0 -9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0 -19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0 --158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0 -28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0 --148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0 -38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0 --139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0 -48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0 --129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0 -57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0 --120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0 -67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0 --110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0 -76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0 --100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0 -86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0 --86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0 -96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0 --76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0 -105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0 --67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0 -115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0 --57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0 -124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0 --48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0 -134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0 --38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0 -144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0 --28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0 -153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0 --19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0 -163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0 -172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0 --0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0 -4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0 --168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0 -14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0 --158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0 -24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0 --148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0 -33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0 --139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0 -43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0 --129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0 -52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0 --120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0 -62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0 --110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0 -72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0 --100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0 -81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0 --91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0 -96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0 --81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0 -105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0 --72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0 -115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0 --62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0 -124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0 --52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0 -134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0 --43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0 -144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0 --33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0 -153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0 --24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0 -163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0 --14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0 -172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.01,0.00,1.00,0.00,0.00,0 --177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0 --168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0 -19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0 --158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0 -28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0 --148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0 -38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0 --139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0 -48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0 --129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0 -57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0 --120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0 -67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0 --110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0 -76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0 --100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0 -86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0 --86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0 -96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0 --76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0 -105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0 --67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0 -115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0 --57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0 -124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0 --48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0 -134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0 --38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0 -144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0 --28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0 -153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0 --19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0 -163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0 --9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0 -172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0 --0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0 --168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0 -14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0 --158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0 -24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0 --148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0 -33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0 --139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0 -43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0 --129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0 -52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0 --120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0 -62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0 --110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0 -72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0 --100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0 -81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0 --91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0 -96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0 --81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0 -105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0 --72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0 -115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0 --62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0 -124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0 --52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0 -134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0 --43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0 -144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0 --33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0 -153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0 --24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0 -163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0 --14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0 --4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0 -0.00,0.00,7.20,0.00,1.00,0.00,0.00,0 --177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0 --168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0 -19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0 --158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0 --148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0 -38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0 --139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0 -48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0 --129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0 -57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0 --120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0 -67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0 --110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0 -76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0 --100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0 -86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0 --86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0 -96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0 --76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0 -105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0 --67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0 -115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0 --57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0 -124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0 --48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0 -134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0 --38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0 -144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0 --28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0 --19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0 -163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0 --9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0 --0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0 --168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0 -14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0 --158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0 --148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0 -33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0 --139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0 -43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0 --129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0 -52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0 --120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0 -62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0 --110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0 -72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0 --100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0 -81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0 --91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0 -96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0 --81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0 -105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0 --72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0 -115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0 --62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0 -124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0 --52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0 -134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0 --43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0 -144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0 --33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0 -153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0 --24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0 --14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0 --4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0 -0.00,0.00,9.61,0.00,1.00,0.00,0.00,0 --177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0 --168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0 --158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0 --148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0 --139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0 -48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0 --129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0 -57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0 --120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0 -67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0 --110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0 -76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0 --100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0 -86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0 --86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0 -96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0 --76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0 -105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0 --67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0 -115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0 --57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0 -124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0 --48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0 -134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0 --38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0 --28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0 --19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0 -163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0 --9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0 --0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0 --168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0 --158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0 --148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0 -33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0 --139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0 -43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0 --129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0 -52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0 --120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0 -62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0 --110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0 -72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0 --100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0 -81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0 --91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0 -96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0 --81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0 -105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0 --72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0 -115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0 --62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0 -124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0 --52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0 -134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0 --43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0 -144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0 --33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0 -153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0 --24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0 --14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0 -172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0 --4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0 -0.00,0.00,5.60,0.00,1.00,0.00,0.00,0 --177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0 --168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0 --158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0 -28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0 --148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0 --139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0 -48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0 --129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0 -57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0 --120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0 -67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0 --110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0 -76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0 --100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0 -86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0 --86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0 -96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0 --76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0 -105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0 --67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0 -115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0 --57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0 -124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0 --48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0 -134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0 --38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0 --28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0 -153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0 --19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0 --9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0 --0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0 --168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0 --158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0 --148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0 -33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0 --139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0 -43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0 --129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0 -52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0 --120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0 -62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0 --110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0 -72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0 --100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0 -81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0 --91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0 -96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0 --81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0 -105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0 --72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0 -115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0 --62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0 -124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0 --52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0 -134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0 --43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0 -144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0 --33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0 -153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0 --24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0 --14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0 --4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0 -0.00,0.00,11.21,0.00,1.00,0.00,0.00,0 --177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0 --168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0 --158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0 -28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0 --148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0 -38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0 --139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0 -48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0 --129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0 -57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0 --120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0 -67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0 --110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0 -76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0 --100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0 -86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0 --86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0 -96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0 --76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0 -105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0 --67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0 -115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0 --57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0 -124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0 --48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0 -134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0 --38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0 -144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0 --28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0 -153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0 --19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0 --9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0 --0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0 --168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0 --158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0 --148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0 --139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0 -43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0 --129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0 -52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0 --120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0 -62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0 --110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0 -72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0 --100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0 -81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0 --91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0 -96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0 --81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0 -105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0 --72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0 -115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0 --62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0 -124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0 --52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0 -134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0 --43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0 --33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0 -153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0 --24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0 -163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0 --14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0 --4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,3.99,0.00,1.00,0.00,0.00,0 --177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0 --168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0 -19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0 --158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0 --148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0 -33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0 --139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0 -43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0 --129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0 -52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0 --120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0 -62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0 --110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0 -76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0 --100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0 -86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0 --86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0 -96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0 --76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0 -105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0 --67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0 -120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0 --57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0 --48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0 -139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0 --38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0 -148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0 --28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0 -158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0 --19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0 -163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0 --9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0 --0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0 --168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0 --158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0 --153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0 --144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0 -43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0 --134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0 --124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0 -62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0 --110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0 -72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0 --100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0 -81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0 --91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0 -96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0 --81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0 -105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0 --72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0 -115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0 --57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0 -124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0 --48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0 -134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0 --38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0 --28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0 --24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0 --14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0 --4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,12.82,0.00,1.00,0.00,0.00,0 --177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0 --168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0 --158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0 --148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0 -33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0 --139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0 --129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0 --120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0 -62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0 --110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0 -76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0 --100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0 -86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0 --86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0 -96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0 --76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0 -110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0 --67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0 -120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0 --57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0 --48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0 --38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0 --28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0 --19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0 --9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0 --0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0 --168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0 --163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0 --153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0 -33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0 --144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0 -43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0 --134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0 --124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0 -62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0 --115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0 -72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0 --100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0 -81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0 --91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0 -96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0 --81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0 -105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0 --67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0 -115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0 --57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0 -124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0 --48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0 -134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0 --38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0 -144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0 --28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0 --19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0 --14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0 --4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,2.39,0.00,1.00,0.00,0.00,0 --177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0 --168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0 --158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0 --153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0 -33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0 --144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0 --134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0 --124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0 -62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0 --110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0 -72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0 --100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0 -86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0 --86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0 -96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0 --76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0 -110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0 --67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0 -120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0 --52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0 -129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0 --43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0 --33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0 --24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0 --19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0 --9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0 --0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0 --168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0 --163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0 --153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0 -28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0 --144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0 -38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0 --134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0 -48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0 --124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0 -57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0 --115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0 -72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0 --105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0 -81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0 --91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0 -96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0 --81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0 -105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0 --67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0 -120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0 --57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0 -129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0 --48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0 -139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0 --38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0 --28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0 -158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0 --19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0 --9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0 --4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0 -0.00,0.00,14.42,0.00,1.00,0.00,0.00,0 --177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0 --168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0 --163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0 -24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0 --153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0 -28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0 --144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0 -38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0 --134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0 -48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0 --124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0 -62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0 --115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0 -72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0 --100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0 -86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0 --86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0 -96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0 --76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0 -110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0 --62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0 -120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0 --52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0 -134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0 --43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0 --33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0 --24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0 -158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0 --14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0 --9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0 --0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0 --172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0 --163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0 --153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0 --148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0 -38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0 --139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0 -48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0 --129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0 --115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0 -67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0 --105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0 -81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0 --91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0 -96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0 --76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0 -105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0 --67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0 -120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0 --52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0 -129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0 --43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0 -139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0 --33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0 --28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0 --19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0 -163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0 --9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0 --4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0 -0.00,0.00,0.79,0.00,1.00,0.00,0.00,0 --177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0 -4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0 --168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0 --163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0 -19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0 --153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0 -28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0 --148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0 -38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0 --139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0 -48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0 --124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0 -57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0 --115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0 -72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0 --100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0 -86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0 --86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0 -100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0 --76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0 -110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0 --62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0 -124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0 --48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0 -134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0 --38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0 --28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0 --24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0 -163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0 --14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0 -168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0 --9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0 --0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0 --177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0 --172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0 -9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0 --163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0 --158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0 --148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0 -33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0 --139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0 -43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0 --129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0 --120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0 -67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0 --105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0 -81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0 --91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0 -96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0 --76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0 -110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0 --67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0 -120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0 --52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0 -134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0 --43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0 -144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0 --33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0 -153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0 --24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0 --19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0 -168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0 --9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0 --4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0 diff --git a/scripts/testv/stvOMASA_3ISM_2MASA1TC16c.met b/scripts/testv/stvOMASA_3ISM_2MASA1TC16c.met deleted file mode 100644 index 64688774087538a671ebfda830ff11b4f836f438..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_2MASA1TC16c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d125a4c4e3989ac55f9c2617f464431feae4ede9b2e15d087d3271c0a4a56303 -size 319800 diff --git a/scripts/testv/stvOMASA_3ISM_2MASA1TC16c.wav b/scripts/testv/stvOMASA_3ISM_2MASA1TC16c.wav deleted file mode 100644 index d502e4ded02867b86c0ff69461e9ecb3c81cbf4e..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_2MASA1TC16c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:69f7fb85cca5022d9f158d6765214c28d125a35bb62778f9015f37fff68dbc32 -size 768080 diff --git a/scripts/testv/stvOMASA_3ISM_2MASA1TC16c_ISM1.csv b/scripts/testv/stvOMASA_3ISM_2MASA1TC16c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_2MASA1TC16c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_3ISM_2MASA1TC16c_ISM2.csv b/scripts/testv/stvOMASA_3ISM_2MASA1TC16c_ISM2.csv deleted file mode 100644 index f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_2MASA1TC16c_ISM2.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,4.80,16.00,0.00,1.00,0.00,0.00,0 -0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0 -0.00,14.40,15.96,0.00,1.00,4.80,9.60,0 -0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0 -0.00,24.00,15.91,0.00,1.00,14.40,19.20,0 -0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0 -0.00,33.60,15.87,0.00,1.00,19.20,28.80,0 -0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0 -0.00,43.20,15.83,0.00,1.00,28.80,38.40,0 -0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0 -0.00,52.80,15.79,0.00,1.00,38.40,48.00,0 -0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0 -0.00,62.40,15.74,0.00,1.00,48.00,57.60,0 -4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0 -4.80,72.00,15.70,0.00,1.00,57.60,67.20,0 -4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0 -9.60,81.60,15.66,0.00,1.00,72.00,76.80,0 -19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0 -134.40,86.40,15.62,0.00,1.00,86.40,86.40,0 -168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0 -172.80,76.80,15.57,0.00,1.00,100.80,86.40,0 -177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0 -177.60,67.20,15.53,0.00,1.00,110.40,76.80,0 -177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0 -177.60,57.60,15.49,0.00,1.00,124.80,67.20,0 -177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0 -177.60,48.00,15.44,0.00,1.00,134.40,57.60,0 -177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0 -177.60,38.40,15.40,0.00,1.00,144.00,48.00,0 -177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0 -177.60,28.80,15.36,0.00,1.00,153.60,38.40,0 -177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0 -177.60,19.20,15.32,0.00,1.00,158.40,28.80,0 -177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0 -177.60,9.60,15.27,0.00,1.00,168.00,19.20,0 -177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0 -177.60,0.00,15.23,0.00,1.00,172.80,9.60,0 --177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0 --177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0 --177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0 --177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0 --177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0 --177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0 --177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0 --177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0 --177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0 --177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0 --177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0 --177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0 --177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0 --177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0 --177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0 --177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0 --172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0 --168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0 --134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0 --19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0 --9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0 --4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0 --4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0 --4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0 --0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0 --0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0 --0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0 --0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0 --0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0 --0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0 --0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0 --0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0 --0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0 --0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0 --0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0 --0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0 --0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0 --0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,14.40,0.00,1.00,0.00,0.00,0 --0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0 --0.00,14.40,14.36,0.00,1.00,9.60,9.60,0 --0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0 --0.00,24.00,14.31,0.00,1.00,14.40,19.20,0 --0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0 --0.00,33.60,14.27,0.00,1.00,24.00,28.80,0 --4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0 --4.80,43.20,14.23,0.00,1.00,28.80,38.40,0 --4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0 --4.80,52.80,14.18,0.00,1.00,38.40,48.00,0 --4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0 --4.80,62.40,14.14,0.00,1.00,48.00,57.60,0 --9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0 --9.60,72.00,14.10,0.00,1.00,62.40,67.20,0 --14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0 --24.00,81.60,14.06,0.00,1.00,72.00,76.80,0 --43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0 --110.40,86.40,14.01,0.00,1.00,86.40,86.40,0 --148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0 --163.20,76.80,13.97,0.00,1.00,96.00,81.60,0 --168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0 --172.80,67.20,13.93,0.00,1.00,110.40,72.00,0 --172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0 --172.80,57.60,13.89,0.00,1.00,120.00,62.40,0 --172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0 --177.60,48.00,13.84,0.00,1.00,134.40,52.80,0 --177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0 --177.60,38.40,13.80,0.00,1.00,144.00,43.20,0 --177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0 --177.60,28.80,13.76,0.00,1.00,148.80,33.60,0 --177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0 --177.60,19.20,13.71,0.00,1.00,158.40,24.00,0 --177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0 --177.60,9.60,13.67,0.00,1.00,168.00,14.40,0 --177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0 --177.60,0.00,13.63,0.00,1.00,172.80,4.80,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0 -177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0 -177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0 -177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0 -177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0 -177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0 -177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0 -172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0 -172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0 -172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0 -172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0 -168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0 -163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0 -148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0 -110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0 -43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0 -24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0 -14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0 -9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0 -9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0 -4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0 -4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0 -4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0 -4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0 -4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0 -0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0 -0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0 -0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0 -0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0 -0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,12.80,0.00,1.00,0.00,0.00,0 --0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0 --0.00,14.40,12.75,0.00,1.00,9.60,9.60,0 --4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0 --4.80,24.00,12.71,0.00,1.00,14.40,19.20,0 --4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0 --4.80,33.60,12.67,0.00,1.00,24.00,28.80,0 --4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0 --9.60,43.20,12.62,0.00,1.00,33.60,38.40,0 --9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0 --9.60,52.80,12.58,0.00,1.00,43.20,48.00,0 --14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0 --14.40,62.40,12.54,0.00,1.00,52.80,57.60,0 --19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0 --24.00,72.00,12.50,0.00,1.00,62.40,67.20,0 --33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0 --43.20,76.80,12.45,0.00,1.00,72.00,72.00,0 --67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0 --96.00,81.60,12.41,0.00,1.00,86.40,81.60,0 --124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0 --144.00,76.80,12.37,0.00,1.00,96.00,76.80,0 --153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0 --158.40,67.20,12.33,0.00,1.00,110.40,72.00,0 --163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0 --168.00,57.60,12.28,0.00,1.00,120.00,62.40,0 --168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0 --168.00,48.00,12.24,0.00,1.00,129.60,52.80,0 --172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0 --172.80,38.40,12.20,0.00,1.00,139.20,43.20,0 --172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0 --172.80,28.80,12.15,0.00,1.00,148.80,33.60,0 --177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0 --177.60,19.20,12.11,0.00,1.00,158.40,24.00,0 --177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0 --177.60,9.60,12.07,0.00,1.00,168.00,14.40,0 --177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0 --177.60,0.00,12.03,0.00,1.00,172.80,4.80,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0 -177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0 -172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0 -172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0 -168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0 -168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0 -168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0 -163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0 -158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0 -153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0 -144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0 -124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0 -96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0 -67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0 -43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0 -33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0 -24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0 -19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0 -14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0 -14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0 -9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0 -9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0 -9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0 -4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0 -4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0 -0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,11.19,0.00,1.00,0.00,0.00,0 --0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0 --4.80,14.40,11.15,0.00,1.00,9.60,9.60,0 --4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0 --4.80,24.00,11.11,0.00,1.00,14.40,19.20,0 --4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0 --9.60,33.60,11.07,0.00,1.00,24.00,28.80,0 --9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0 --14.40,43.20,11.02,0.00,1.00,33.60,38.40,0 --14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0 --14.40,52.80,10.98,0.00,1.00,43.20,48.00,0 --19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0 --24.00,57.60,10.94,0.00,1.00,52.80,52.80,0 --28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0 --33.60,67.20,10.89,0.00,1.00,62.40,62.40,0 --43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0 --57.60,72.00,10.85,0.00,1.00,76.80,72.00,0 --76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0 --96.00,76.80,10.81,0.00,1.00,86.40,76.80,0 --115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0 --129.60,72.00,10.77,0.00,1.00,96.00,76.80,0 --139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0 --148.80,67.20,10.72,0.00,1.00,105.60,67.20,0 --153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0 --158.40,57.60,10.68,0.00,1.00,120.00,62.40,0 --163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0 --163.20,48.00,10.64,0.00,1.00,129.60,52.80,0 --168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0 --168.00,38.40,10.60,0.00,1.00,139.20,43.20,0 --172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0 --172.80,28.80,10.55,0.00,1.00,148.80,33.60,0 --172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0 --172.80,19.20,10.51,0.00,1.00,158.40,24.00,0 --177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0 --177.60,9.60,10.47,0.00,1.00,163.20,14.40,0 --177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0 --177.60,0.00,10.42,0.00,1.00,172.80,4.80,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0 -168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0 -168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0 -163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0 -163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0 -158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0 -153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0 -148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0 -139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0 -129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0 -115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0 -96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0 -76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0 -57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0 -43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0 -33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0 -28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0 -24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0 -19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0 -14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0 -14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0 -14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0 -9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0 -9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0 -4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0 -4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0 -0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,9.59,0.00,1.00,0.00,0.00,0 --4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0 --4.80,14.40,9.55,0.00,1.00,9.60,9.60,0 --4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0 --9.60,24.00,9.51,0.00,1.00,19.20,19.20,0 --9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0 --9.60,33.60,9.46,0.00,1.00,24.00,28.80,0 --14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0 --14.40,38.40,9.42,0.00,1.00,33.60,33.60,0 --19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0 --24.00,48.00,9.38,0.00,1.00,43.20,43.20,0 --24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0 --28.80,57.60,9.34,0.00,1.00,52.80,52.80,0 --38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0 --43.20,62.40,9.29,0.00,1.00,67.20,62.40,0 --52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0 --62.40,72.00,9.25,0.00,1.00,76.80,67.20,0 --76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0 --96.00,72.00,9.21,0.00,1.00,86.40,72.00,0 --110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0 --120.00,67.20,9.16,0.00,1.00,96.00,72.00,0 --134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0 --139.20,62.40,9.12,0.00,1.00,105.60,67.20,0 --148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0 --153.60,57.60,9.08,0.00,1.00,115.20,57.60,0 --158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0 --158.40,48.00,9.04,0.00,1.00,129.60,52.80,0 --163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0 --163.20,38.40,8.99,0.00,1.00,139.20,43.20,0 --168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0 --168.00,28.80,8.95,0.00,1.00,148.80,33.60,0 --172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0 --172.80,19.20,8.91,0.00,1.00,153.60,24.00,0 --172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0 --177.60,9.60,8.87,0.00,1.00,163.20,14.40,0 --177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0 --177.60,0.00,8.82,0.00,1.00,172.80,4.80,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0 -168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0 -163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0 -163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0 -158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0 -158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0 -153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0 -148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0 -139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0 -134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0 -120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0 -110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0 -96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0 -76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0 -62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0 -52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0 -43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0 -38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0 -28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0 -24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0 -24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0 -19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0 -14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0 -14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0 -9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0 -9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0 -9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0 -0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,7.99,0.00,1.00,0.00,0.00,0 --4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0 --4.80,14.40,7.95,0.00,1.00,9.60,9.60,0 --9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0 --9.60,24.00,7.90,0.00,1.00,19.20,19.20,0 --14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0 --14.40,28.80,7.86,0.00,1.00,28.80,24.00,0 --19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0 --19.20,38.40,7.82,0.00,1.00,38.40,33.60,0 --24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0 --28.80,48.00,7.78,0.00,1.00,48.00,43.20,0 --33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0 --38.40,52.80,7.73,0.00,1.00,57.60,52.80,0 --43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0 --48.00,62.40,7.69,0.00,1.00,67.20,57.60,0 --57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0 --67.20,67.20,7.65,0.00,1.00,76.80,62.40,0 --81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0 --91.20,67.20,7.60,0.00,1.00,86.40,67.20,0 --105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0 --115.20,67.20,7.56,0.00,1.00,96.00,67.20,0 --124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0 --134.40,57.60,7.52,0.00,1.00,105.60,62.40,0 --139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0 --144.00,52.80,7.48,0.00,1.00,115.20,57.60,0 --148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0 --153.60,43.20,7.43,0.00,1.00,124.80,48.00,0 --158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0 --163.20,38.40,7.39,0.00,1.00,134.40,38.40,0 --163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0 --168.00,28.80,7.35,0.00,1.00,144.00,33.60,0 --168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0 --172.80,19.20,7.31,0.00,1.00,153.60,24.00,0 --172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0 --177.60,9.60,7.26,0.00,1.00,163.20,14.40,0 --177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0 --177.60,0.00,7.22,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0 -163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0 -158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0 -153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0 -148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0 -144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0 -139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0 -134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0 -124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0 -115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0 -105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0 -91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0 -81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0 -67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0 -57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0 -48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0 -43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0 -38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0 -33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0 -28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0 -24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0 -19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0 -19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0 -14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0 -9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0 -0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,6.39,0.00,1.00,0.00,0.00,0 --4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0 --4.80,14.40,6.34,0.00,1.00,9.60,9.60,0 --9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0 --9.60,19.20,6.30,0.00,1.00,19.20,14.40,0 --14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0 --19.20,28.80,6.26,0.00,1.00,28.80,24.00,0 --19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0 --24.00,38.40,6.22,0.00,1.00,38.40,33.60,0 --28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0 --33.60,43.20,6.17,0.00,1.00,48.00,38.40,0 --38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0 --43.20,52.80,6.13,0.00,1.00,57.60,48.00,0 --48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0 --52.80,57.60,6.09,0.00,1.00,67.20,52.80,0 --62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0 --72.00,62.40,6.05,0.00,1.00,76.80,57.60,0 --81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0 --91.20,62.40,6.00,0.00,1.00,86.40,62.40,0 --100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0 --110.40,62.40,5.96,0.00,1.00,96.00,62.40,0 --120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0 --129.60,57.60,5.92,0.00,1.00,105.60,57.60,0 --134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0 --139.20,48.00,5.87,0.00,1.00,115.20,52.80,0 --144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0 --148.80,43.20,5.83,0.00,1.00,124.80,48.00,0 --153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0 --158.40,33.60,5.79,0.00,1.00,134.40,38.40,0 --163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0 --163.20,28.80,5.75,0.00,1.00,144.00,28.80,0 --168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0 --168.00,19.20,5.70,0.00,1.00,153.60,24.00,0 --172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0 --172.80,9.60,5.66,0.00,1.00,163.20,14.40,0 --177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0 --177.60,0.00,5.62,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0 -163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0 -158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0 -148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0 -144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0 -139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0 -134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0 -129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0 -120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0 -110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0 -100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0 -91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0 -81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0 -72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0 -62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0 -52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0 -48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0 -43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0 -38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0 -33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0 -28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0 -24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0 -19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0 -19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0 -9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0 -4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0 -0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,4.79,0.00,1.00,0.00,0.00,0 --4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0 --9.60,14.40,4.74,0.00,1.00,9.60,9.60,0 --9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0 --14.40,19.20,4.70,0.00,1.00,19.20,14.40,0 --14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0 --19.20,28.80,4.66,0.00,1.00,28.80,24.00,0 --24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0 --28.80,33.60,4.61,0.00,1.00,38.40,28.80,0 --28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0 --33.60,43.20,4.57,0.00,1.00,48.00,38.40,0 --38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0 --48.00,48.00,4.53,0.00,1.00,57.60,43.20,0 --52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0 --57.60,52.80,4.49,0.00,1.00,67.20,48.00,0 --67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0 --76.80,57.60,4.44,0.00,1.00,76.80,52.80,0 --81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0 --91.20,57.60,4.40,0.00,1.00,86.40,57.60,0 --100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0 --110.40,57.60,4.36,0.00,1.00,96.00,57.60,0 --115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0 --124.80,52.80,4.32,0.00,1.00,105.60,52.80,0 --129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0 --139.20,48.00,4.27,0.00,1.00,115.20,48.00,0 --144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0 --148.80,38.40,4.23,0.00,1.00,124.80,43.20,0 --153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0 --153.60,33.60,4.19,0.00,1.00,134.40,38.40,0 --158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0 --163.20,24.00,4.14,0.00,1.00,144.00,28.80,0 --163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0 --168.00,19.20,4.10,0.00,1.00,153.60,24.00,0 --172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0 --172.80,9.60,4.06,0.00,1.00,163.20,14.40,0 --177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0 --177.60,0.00,4.02,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0 -163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0 -163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0 -158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0 -148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0 -144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0 -139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0 -129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0 -124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0 -115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0 -110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0 -100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0 -91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0 -81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0 -76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0 -67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0 -57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0 -52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0 -48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0 -38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0 -33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0 -28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0 -28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0 -24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0 -19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0 -14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0 -14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0 -9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0 -0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.18,0.00,1.00,0.00,0.00,0 --4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0 --9.60,9.60,3.14,0.00,1.00,9.60,9.60,0 --9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0 --14.40,19.20,3.10,0.00,1.00,19.20,14.40,0 --19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0 --24.00,24.00,3.05,0.00,1.00,28.80,24.00,0 --24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0 --28.80,33.60,3.01,0.00,1.00,38.40,28.80,0 --33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0 --38.40,38.40,2.97,0.00,1.00,48.00,33.60,0 --43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0 --48.00,43.20,2.93,0.00,1.00,57.60,43.20,0 --52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0 --62.40,48.00,2.88,0.00,1.00,67.20,48.00,0 --67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0 --76.80,52.80,2.84,0.00,1.00,76.80,48.00,0 --86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0 --91.20,52.80,2.80,0.00,1.00,86.40,52.80,0 --100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0 --105.60,52.80,2.76,0.00,1.00,96.00,52.80,0 --115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0 --120.00,48.00,2.71,0.00,1.00,105.60,48.00,0 --129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0 --134.40,43.20,2.67,0.00,1.00,115.20,43.20,0 --139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0 --144.00,38.40,2.63,0.00,1.00,124.80,38.40,0 --148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0 --153.60,33.60,2.58,0.00,1.00,134.40,33.60,0 --158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0 --158.40,24.00,2.54,0.00,1.00,144.00,28.80,0 --163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0 --168.00,19.20,2.50,0.00,1.00,153.60,19.20,0 --168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.46,0.00,1.00,163.20,14.40,0 --177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.41,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0 -158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0 -148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0 -144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0 -139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0 -134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0 -129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0 -120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0 -115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0 -105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0 -100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0 -91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0 -86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0 -76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0 -67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0 -62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0 -52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0 -48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0 -43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0 -38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0 -33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0 -28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0 -24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0 -24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0 -19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0 -0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.58,0.00,1.00,0.00,0.00,0 --4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.54,0.00,1.00,9.60,4.80,0 --14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0 --14.40,19.20,1.50,0.00,1.00,19.20,14.40,0 --19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0 --24.00,24.00,1.45,0.00,1.00,28.80,19.20,0 --28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0 --33.60,28.80,1.41,0.00,1.00,38.40,28.80,0 --38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0 --43.20,38.40,1.37,0.00,1.00,48.00,33.60,0 --48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0 --52.80,43.20,1.32,0.00,1.00,57.60,38.40,0 --57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0 --62.40,43.20,1.28,0.00,1.00,67.20,43.20,0 --72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0 --76.80,48.00,1.24,0.00,1.00,76.80,43.20,0 --86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0 --91.20,48.00,1.20,0.00,1.00,86.40,48.00,0 --100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0 --105.60,48.00,1.15,0.00,1.00,96.00,48.00,0 --110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0 --120.00,43.20,1.11,0.00,1.00,105.60,43.20,0 --124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0 --129.60,38.40,1.07,0.00,1.00,115.20,43.20,0 --134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0 --139.20,33.60,1.03,0.00,1.00,124.80,38.40,0 --144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0 --148.80,28.80,0.98,0.00,1.00,134.40,33.60,0 --153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0 --158.40,24.00,0.94,0.00,1.00,144.00,24.00,0 --163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0 --163.20,14.40,0.90,0.00,1.00,153.60,19.20,0 --168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.85,0.00,1.00,163.20,14.40,0 --172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.81,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0 -148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0 -144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0 -139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0 -134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0 -129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0 -124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0 -120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0 -110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0 -105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0 -100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0 -91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0 -86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0 -76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0 -72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0 -62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0 -57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0 -52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0 -48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0 -43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0 -38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0 -28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0 -19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0 -0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,0.00,0.00,1.00,0.00,0.00,0 --4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0 --9.60,9.60,0.04,0.00,1.00,9.60,4.80,0 --14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0 --19.20,14.40,0.09,0.00,1.00,19.20,14.40,0 --24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0 --24.00,24.00,0.13,0.00,1.00,28.80,19.20,0 --28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0 --33.60,28.80,0.17,0.00,1.00,38.40,24.00,0 --38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0 --43.20,33.60,0.21,0.00,1.00,48.00,28.80,0 --48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0 --52.80,38.40,0.26,0.00,1.00,57.60,33.60,0 --62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0 --67.20,38.40,0.30,0.00,1.00,67.20,38.40,0 --72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0 --76.80,43.20,0.34,0.00,1.00,76.80,38.40,0 --86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0 --91.20,43.20,0.38,0.00,1.00,86.40,43.20,0 --96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0 --105.60,43.20,0.43,0.00,1.00,96.00,43.20,0 --110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0 --115.20,38.40,0.47,0.00,1.00,105.60,38.40,0 --124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0 --129.60,38.40,0.51,0.00,1.00,115.20,38.40,0 --134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0 --139.20,33.60,0.56,0.00,1.00,124.80,33.60,0 --144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0 --148.80,28.80,0.60,0.00,1.00,134.40,28.80,0 --153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0 --158.40,19.20,0.64,0.00,1.00,144.00,24.00,0 --158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0 --163.20,14.40,0.68,0.00,1.00,153.60,19.20,0 --168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.73,0.00,1.00,163.20,9.60,0 --172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.77,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0 -158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0 -158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0 -148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0 -144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0 -139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0 -134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0 -129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0 -124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0 -115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0 -110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0 -105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0 -96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0 -91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0 -86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0 -76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0 -72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0 -67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0 -62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0 -52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0 -48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0 -43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0 -38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0 -28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0 -19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0 -0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.60,0.00,1.00,0.00,0.00,0 --9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.64,0.00,1.00,9.60,4.80,0 --14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0 --19.20,14.40,1.69,0.00,1.00,19.20,9.60,0 --24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0 --28.80,19.20,1.73,0.00,1.00,28.80,19.20,0 --33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0 --38.40,24.00,1.77,0.00,1.00,38.40,24.00,0 --43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0 --48.00,28.80,1.82,0.00,1.00,48.00,28.80,0 --52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0 --57.60,33.60,1.86,0.00,1.00,57.60,28.80,0 --62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0 --67.20,38.40,1.90,0.00,1.00,67.20,33.60,0 --72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0 --81.60,38.40,1.94,0.00,1.00,76.80,38.40,0 --86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0 --91.20,38.40,1.99,0.00,1.00,86.40,38.40,0 --96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0 --105.60,38.40,2.03,0.00,1.00,96.00,38.40,0 --110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0 --115.20,33.60,2.07,0.00,1.00,105.60,33.60,0 --120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0 --124.80,33.60,2.11,0.00,1.00,115.20,33.60,0 --129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0 --134.40,28.80,2.16,0.00,1.00,124.80,28.80,0 --139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0 --144.00,24.00,2.20,0.00,1.00,134.40,24.00,0 --148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0 --153.60,19.20,2.24,0.00,1.00,144.00,19.20,0 --158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0 --163.20,14.40,2.29,0.00,1.00,153.60,14.40,0 --168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.33,0.00,1.00,163.20,9.60,0 --172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.37,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0 -153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0 -144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0 -134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0 -124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0 -120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0 -115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0 -110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0 -105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0 -96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0 -91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0 -86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0 -81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0 -72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0 -67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0 -62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0 -57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0 -52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0 -48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0 -43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0 -38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0 -33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0 -28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0 -14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.20,0.00,1.00,0.00,0.00,0 --9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0 --14.40,9.60,3.25,0.00,1.00,9.60,4.80,0 --14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0 --19.20,14.40,3.29,0.00,1.00,19.20,9.60,0 --24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0 --28.80,19.20,3.33,0.00,1.00,28.80,14.40,0 --33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0 --38.40,24.00,3.38,0.00,1.00,38.40,19.20,0 --43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0 --48.00,24.00,3.42,0.00,1.00,48.00,24.00,0 --52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0 --57.60,28.80,3.46,0.00,1.00,57.60,28.80,0 --62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0 --67.20,33.60,3.50,0.00,1.00,67.20,28.80,0 --72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0 --81.60,33.60,3.55,0.00,1.00,76.80,33.60,0 --86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0 --91.20,33.60,3.59,0.00,1.00,86.40,33.60,0 --96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0 --100.80,33.60,3.63,0.00,1.00,96.00,33.60,0 --110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0 --115.20,33.60,3.67,0.00,1.00,105.60,28.80,0 --120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0 --124.80,28.80,3.72,0.00,1.00,115.20,28.80,0 --129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0 --134.40,24.00,3.76,0.00,1.00,124.80,24.00,0 --139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0 --144.00,19.20,3.80,0.00,1.00,134.40,24.00,0 --148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0 --153.60,14.40,3.85,0.00,1.00,144.00,19.20,0 --158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0 --163.20,9.60,3.89,0.00,1.00,153.60,14.40,0 --168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0 --168.00,4.80,3.93,0.00,1.00,163.20,9.60,0 --172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0 --177.60,0.00,3.97,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0 -124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0 -120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0 -115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0 -110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0 -100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0 -96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0 -91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0 -86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0 -81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0 -72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0 -67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0 -62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0 -57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0 -52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0 -48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0 -43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0 -38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0 -33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0 -28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0 -24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0 -14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0 -14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0 --4.80,0.00,4.81,0.00,1.00,0.00,0.00,0 --9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0 --14.40,4.80,4.85,0.00,1.00,9.60,4.80,0 --19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0 --19.20,9.60,4.89,0.00,1.00,19.20,9.60,0 --24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0 --28.80,14.40,4.93,0.00,1.00,28.80,14.40,0 --33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0 --38.40,19.20,4.98,0.00,1.00,38.40,14.40,0 --43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0 --48.00,24.00,5.02,0.00,1.00,48.00,19.20,0 --52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0 --57.60,24.00,5.06,0.00,1.00,57.60,24.00,0 --62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0 --72.00,28.80,5.11,0.00,1.00,67.20,24.00,0 --76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0 --81.60,28.80,5.15,0.00,1.00,76.80,28.80,0 --86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0 --91.20,28.80,5.19,0.00,1.00,86.40,28.80,0 --96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0 --100.80,28.80,5.23,0.00,1.00,96.00,28.80,0 --105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0 --115.20,28.80,5.28,0.00,1.00,105.60,28.80,0 --120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0 --124.80,24.00,5.32,0.00,1.00,115.20,24.00,0 --129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0 --134.40,24.00,5.36,0.00,1.00,124.80,24.00,0 --139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0 --144.00,19.20,5.40,0.00,1.00,134.40,19.20,0 --148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0 --153.60,14.40,5.45,0.00,1.00,144.00,14.40,0 --158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0 --163.20,9.60,5.49,0.00,1.00,153.60,9.60,0 --163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0 --168.00,4.80,5.53,0.00,1.00,163.20,9.60,0 --172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0 --177.60,0.00,5.58,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0 -163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0 -129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0 -124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0 -120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0 -115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0 -105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0 -100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0 -96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0 -91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0 -86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0 -81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0 -76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0 -72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0 -62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0 -57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0 -52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0 -48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0 -43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0 -38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0 -33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0 -28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0 -24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0 -19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0 -19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0 -0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,6.41,0.00,1.00,0.00,0.00,0 --9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0 --14.40,4.80,6.45,0.00,1.00,9.60,4.80,0 --19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0 --24.00,9.60,6.49,0.00,1.00,19.20,9.60,0 --28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0 --33.60,14.40,6.54,0.00,1.00,28.80,9.60,0 --33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0 --38.40,14.40,6.58,0.00,1.00,38.40,14.40,0 --43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0 --48.00,19.20,6.62,0.00,1.00,48.00,14.40,0 --57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0 --62.40,19.20,6.66,0.00,1.00,57.60,19.20,0 --67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0 --72.00,24.00,6.71,0.00,1.00,67.20,19.20,0 --76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0 --81.60,24.00,6.75,0.00,1.00,76.80,24.00,0 --86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0 --91.20,24.00,6.79,0.00,1.00,86.40,24.00,0 --96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0 --100.80,24.00,6.84,0.00,1.00,96.00,24.00,0 --105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0 --110.40,24.00,6.88,0.00,1.00,105.60,24.00,0 --115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0 --120.00,19.20,6.92,0.00,1.00,115.20,19.20,0 --129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0 --134.40,19.20,6.96,0.00,1.00,124.80,19.20,0 --139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0 --144.00,14.40,7.01,0.00,1.00,134.40,14.40,0 --148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0 --148.80,14.40,7.05,0.00,1.00,144.00,14.40,0 --153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0 --158.40,9.60,7.09,0.00,1.00,153.60,9.60,0 --163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0 --168.00,4.80,7.13,0.00,1.00,163.20,4.80,0 --172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0 --177.60,0.00,7.18,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0 -163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0 -158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0 -148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0 -144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0 -134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0 -129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0 -120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0 -115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0 -110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0 -105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0 -100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0 -96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0 -91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0 -86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0 -81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0 -76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0 -72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0 -67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0 -62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0 -57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0 -48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0 -43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0 -38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0 -33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0 -33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0 -28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0 -24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0 -19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0 -0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,8.01,0.00,1.00,0.00,0.00,0 --9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0 --14.40,4.80,8.05,0.00,1.00,9.60,4.80,0 --19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0 --24.00,9.60,8.10,0.00,1.00,19.20,4.80,0 --28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0 --33.60,9.60,8.14,0.00,1.00,24.00,9.60,0 --38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0 --43.20,14.40,8.18,0.00,1.00,33.60,9.60,0 --48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0 --52.80,14.40,8.22,0.00,1.00,43.20,14.40,0 --57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0 --62.40,19.20,8.27,0.00,1.00,52.80,14.40,0 --67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0 --72.00,19.20,8.31,0.00,1.00,62.40,14.40,0 --76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0 --81.60,19.20,8.35,0.00,1.00,76.80,19.20,0 --86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0 --91.20,19.20,8.40,0.00,1.00,86.40,19.20,0 --96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0 --100.80,19.20,8.44,0.00,1.00,96.00,19.20,0 --105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0 --110.40,19.20,8.48,0.00,1.00,105.60,19.20,0 --115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0 --120.00,14.40,8.52,0.00,1.00,120.00,14.40,0 --124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0 --129.60,14.40,8.57,0.00,1.00,129.60,14.40,0 --134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0 --139.20,14.40,8.61,0.00,1.00,139.20,14.40,0 --144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0 --148.80,9.60,8.65,0.00,1.00,148.80,9.60,0 --153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0 --158.40,4.80,8.69,0.00,1.00,158.40,9.60,0 --163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0 --168.00,4.80,8.74,0.00,1.00,163.20,4.80,0 --172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0 -148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0 -144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0 -139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0 -134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0 -129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0 -124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0 -120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0 -115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0 -110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0 -105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0 -100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0 -96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0 -91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0 -86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0 -81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0 -76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0 -72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0 -67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0 -62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0 -52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0 -48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0 -43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0 -38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0 -33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0 -28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0 -24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0 -19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0 -9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0 -0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,9.61,0.00,1.00,0.00,0.00,0 --9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0 --14.40,4.80,9.66,0.00,1.00,9.60,0.00,0 --19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0 --24.00,4.80,9.70,0.00,1.00,14.40,4.80,0 --28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0 --33.60,9.60,9.74,0.00,1.00,24.00,4.80,0 --38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0 --43.20,9.60,9.78,0.00,1.00,33.60,9.60,0 --48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0 --52.80,9.60,9.83,0.00,1.00,43.20,9.60,0 --57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0 --62.40,14.40,9.87,0.00,1.00,52.80,9.60,0 --67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0 --72.00,14.40,9.91,0.00,1.00,62.40,14.40,0 --76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0 --81.60,14.40,9.95,0.00,1.00,76.80,14.40,0 --86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0 --91.20,14.40,10.00,0.00,1.00,86.40,14.40,0 --96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0 --100.80,14.40,10.04,0.00,1.00,96.00,14.40,0 --105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0 --110.40,14.40,10.08,0.00,1.00,110.40,14.40,0 --115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0 --120.00,14.40,10.13,0.00,1.00,120.00,9.60,0 --124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0 --129.60,9.60,10.17,0.00,1.00,129.60,9.60,0 --134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0 --139.20,9.60,10.21,0.00,1.00,139.20,9.60,0 --144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0 --148.80,9.60,10.25,0.00,1.00,148.80,9.60,0 --153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0 --158.40,4.80,10.30,0.00,1.00,158.40,4.80,0 --163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0 --168.00,4.80,10.34,0.00,1.00,168.00,4.80,0 --172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0 -148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0 -144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0 -139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0 -134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0 -129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0 -124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0 -120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0 -115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0 -110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0 -105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0 -100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0 -96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0 -91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0 -86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0 -81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0 -76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0 -72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0 -67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0 -62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0 -48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0 -43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0 -38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0 -33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0 -28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0 -24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0 -19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0 -14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,11.21,0.00,1.00,0.00,0.00,0 --9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0 --14.40,0.00,11.26,0.00,1.00,9.60,0.00,0 --19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0 --24.00,4.80,11.30,0.00,1.00,14.40,4.80,0 --28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0 --33.60,4.80,11.34,0.00,1.00,24.00,4.80,0 --38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0 --43.20,4.80,11.39,0.00,1.00,33.60,4.80,0 --48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0 --52.80,9.60,11.43,0.00,1.00,43.20,4.80,0 --57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0 --62.40,9.60,11.47,0.00,1.00,52.80,4.80,0 --67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0 --72.00,9.60,11.51,0.00,1.00,62.40,9.60,0 --76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0 --81.60,9.60,11.56,0.00,1.00,72.00,9.60,0 --86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0 --91.20,9.60,11.60,0.00,1.00,86.40,9.60,0 --96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0 --100.80,9.60,11.64,0.00,1.00,96.00,9.60,0 --105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0 --110.40,9.60,11.68,0.00,1.00,110.40,9.60,0 --115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0 --120.00,9.60,11.73,0.00,1.00,120.00,9.60,0 --124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0 --129.60,9.60,11.77,0.00,1.00,129.60,4.80,0 --134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0 --139.20,4.80,11.81,0.00,1.00,139.20,4.80,0 --144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0 --148.80,4.80,11.86,0.00,1.00,148.80,4.80,0 --153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0 --158.40,4.80,11.90,0.00,1.00,158.40,4.80,0 --163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0 --168.00,0.00,11.94,0.00,1.00,168.00,4.80,0 --172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0 -158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0 -148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0 -144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0 -139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0 -134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0 -129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0 -124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0 -120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0 -115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0 -110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0 -105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0 -100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0 -96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0 -91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0 -86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0 -81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0 -76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0 -72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0 -67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0 -62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0 -57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0 -43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0 -33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0 -28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0 -24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0 -19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,12.82,0.00,1.00,0.00,0.00,0 --9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0 --14.40,0.00,12.86,0.00,1.00,9.60,0.00,0 --19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0 --24.00,0.00,12.90,0.00,1.00,14.40,0.00,0 --28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0 --33.60,4.80,12.95,0.00,1.00,24.00,0.00,0 --38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0 --43.20,4.80,12.99,0.00,1.00,28.80,0.00,0 --48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0 --52.80,4.80,13.03,0.00,1.00,38.40,4.80,0 --57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0 --62.40,4.80,13.07,0.00,1.00,48.00,4.80,0 --67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0 --72.00,4.80,13.12,0.00,1.00,62.40,4.80,0 --76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0 --81.60,4.80,13.16,0.00,1.00,72.00,4.80,0 --86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0 --91.20,4.80,13.20,0.00,1.00,86.40,4.80,0 --96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0 --100.80,4.80,13.24,0.00,1.00,96.00,4.80,0 --105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0 --110.40,4.80,13.29,0.00,1.00,110.40,4.80,0 --115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0 --120.00,4.80,13.33,0.00,1.00,120.00,4.80,0 --124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0 --129.60,4.80,13.37,0.00,1.00,134.40,4.80,0 --134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0 --139.20,4.80,13.42,0.00,1.00,144.00,4.80,0 --144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0 --148.80,4.80,13.46,0.00,1.00,153.60,0.00,0 --153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0 --158.40,0.00,13.50,0.00,1.00,158.40,0.00,0 --163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0 --168.00,0.00,13.54,0.00,1.00,168.00,0.00,0 --172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0 -163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0 -158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0 -153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0 -148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0 -144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0 -139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0 -134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0 -129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0 -124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0 -120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0 -115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0 -110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0 -105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0 -100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0 -96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0 -91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0 -86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0 -81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0 -76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0 -72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0 -67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0 -57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0 -52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0 -43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0 -33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0 -28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0 -24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0 -19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0 -14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0 -9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,14.42,0.00,1.00,0.00,0.00,0 --9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0 --14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0 --19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0 --24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0 --28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0 --33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0 --38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0 --43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0 --48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0 --52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0 --57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0 --62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0 --67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0 --72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0 --76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0 --81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0 --86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0 --91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0 --96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0 --100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0 --105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0 --110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0 --115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0 --120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0 --124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0 --129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0 --134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0 --139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0 --144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0 --148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0 --153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0 --158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0 --163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0 --168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0 --172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0 -177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0 -172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0 -168.00,0.00,15.25,0.00,1.00,4.80,0.00,0 -163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0 -158.40,0.00,15.30,0.00,1.00,9.60,0.00,0 -153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0 -148.80,0.00,15.34,0.00,1.00,19.20,0.00,0 -144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0 -139.20,0.00,15.38,0.00,1.00,28.80,0.00,0 -134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0 -129.60,0.00,15.42,0.00,1.00,33.60,0.00,0 -124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0 -120.00,0.00,15.47,0.00,1.00,43.20,0.00,0 -115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0 -110.40,0.00,15.51,0.00,1.00,57.60,0.00,0 -105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0 -100.80,0.00,15.55,0.00,1.00,67.20,0.00,0 -96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0 -91.20,0.00,15.59,0.00,1.00,81.60,0.00,0 -86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0 -81.60,0.00,15.64,0.00,1.00,96.00,0.00,0 -76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0 -72.00,0.00,15.68,0.00,1.00,110.40,0.00,0 -67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0 -62.40,0.00,15.72,0.00,1.00,120.00,0.00,0 -57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0 -52.80,0.00,15.77,0.00,1.00,134.40,0.00,0 -48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0 -43.20,0.00,15.81,0.00,1.00,144.00,0.00,0 -38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0 -33.60,0.00,15.85,0.00,1.00,153.60,0.00,0 -28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0 -24.00,0.00,15.89,0.00,1.00,158.40,0.00,0 -19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0 -14.40,0.00,15.94,0.00,1.00,168.00,0.00,0 -9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0 -4.80,0.00,15.98,0.00,1.00,172.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 diff --git a/scripts/testv/stvOMASA_3ISM_2MASA1TC16c_ISM3.csv b/scripts/testv/stvOMASA_3ISM_2MASA1TC16c_ISM3.csv deleted file mode 100644 index 14eee9b693b536fa2fd22d2813d7f588b8930b06..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_2MASA1TC16c_ISM3.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0 --177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0 -4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0 --168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0 -14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0 --163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0 -19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0 --153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0 -28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0 --148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0 -38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0 --139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0 -48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0 --124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0 -57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0 --115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0 -72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0 --100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0 -86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0 --86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0 -100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0 --76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0 -110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0 --62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0 -124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0 --52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0 -134.40,33.60,0.28,0.00,1.00,177.60,0.00,0 --38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0 -144.00,28.80,0.30,0.00,1.00,177.60,0.00,0 --33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0 -153.60,24.00,0.32,0.00,1.00,177.60,0.00,0 --24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0 -158.40,19.20,0.34,0.00,1.00,177.60,0.00,0 --14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0 -168.00,9.60,0.36,0.00,1.00,177.60,0.00,0 --9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0 -172.80,4.80,0.38,0.00,1.00,177.60,0.00,0 --0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0 --177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0 -4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0 -14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0 -19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0 --158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0 -28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0 --148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0 -33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0 --139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0 -43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0 --129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0 -57.60,38.40,15.47,0.00,1.00,177.60,0.00,0 --120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0 -67.20,43.20,15.44,0.00,1.00,177.60,0.00,0 --105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0 -81.60,43.20,15.42,0.00,1.00,177.60,0.00,0 --91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0 -96.00,43.20,15.40,0.00,1.00,0.00,0.00,0 --76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0 -110.40,43.20,15.38,0.00,1.00,0.00,0.00,0 --67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0 -120.00,38.40,15.36,0.00,1.00,0.00,0.00,0 --52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0 -129.60,38.40,15.34,0.00,1.00,0.00,0.00,0 --43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0 -144.00,33.60,15.32,0.00,1.00,0.00,0.00,0 --33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0 -148.80,24.00,15.30,0.00,1.00,0.00,0.00,0 --24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0 -158.40,19.20,15.27,0.00,1.00,0.00,0.00,0 --19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0 -168.00,14.40,15.25,0.00,1.00,0.00,0.00,0 --9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0 -172.80,4.80,15.23,0.00,1.00,0.00,0.00,0 --4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0 -0.00,0.00,15.21,0.00,1.00,0.00,0.00,0 --177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0 -9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0 -14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0 --163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0 -24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0 --153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0 -28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0 --144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0 -38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0 --134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0 -48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0 --124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0 -62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0 --115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0 -72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0 --100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0 -86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0 --86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0 -96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0 --76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0 -110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0 --62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0 -120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0 --52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0 -134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0 --43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0 -144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0 --33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0 -148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0 --24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0 -158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0 --19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0 -168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0 --9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0 -172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0 -4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0 -14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0 -19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0 --153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0 -28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0 --148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0 -38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0 --139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0 -48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0 --124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0 -57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0 --115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0 -72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0 --105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0 -81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0 --91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0 -96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0 --76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0 -105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0 --67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0 -120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0 --57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0 -129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0 --43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0 -139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0 --33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0 -148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0 --28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0 -158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0 --19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0 -163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0 --9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0 -172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0 -0.00,0.00,1.60,0.00,1.00,0.00,0.00,0 --177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0 -9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0 -14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0 --158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0 -24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0 --153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0 -33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0 --144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0 -43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0 --134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0 -52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0 --124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0 -62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0 --110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0 -72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0 --100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0 -86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0 --86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0 -96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0 --76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0 -110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0 --67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0 -120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0 --52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0 -129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0 --43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0 -139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0 --33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0 -148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0 --24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0 -158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0 --19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0 -168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0 -172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0 -4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0 -14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0 --163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0 -24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0 --153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0 -28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0 --144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0 -38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0 --134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0 -48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0 --124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0 -62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0 --115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0 -72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0 --100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0 -81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0 --91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0 -96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0 --81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0 -105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0 --67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0 -115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0 --57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0 -129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0 --48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0 -139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0 --38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0 -148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0 --28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0 -153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0 --19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0 -163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0 --9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0 -172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0 -0.00,0.00,13.61,0.00,1.00,0.00,0.00,0 --177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0 -9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0 --168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0 -24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0 --148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0 -33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0 --139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0 -43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0 --129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0 -52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0 --120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0 -62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0 --110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0 -76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0 --100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0 -86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0 --86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0 -96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0 --76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0 -105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0 --67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0 -120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0 --57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0 -129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0 --48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0 -139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0 --38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0 -148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0 -158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0 --19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0 -163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0 -172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0 -4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0 -14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0 --163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0 -24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0 --153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0 -33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0 --144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0 -43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0 --134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0 -52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0 --124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0 -62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0 --115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0 -72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0 --100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0 -81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0 --91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0 -96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0 --81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0 -105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0 --67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0 -115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0 --57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0 -124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0 --48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0 -134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0 --38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0 -144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0 --28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0 -153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0 --19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0 -163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0 --14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0 -172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0 --4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0 -0.00,0.00,3.20,0.00,1.00,0.00,0.00,0 --177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0 -9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0 -19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0 -24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0 --148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0 -33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0 --139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0 -43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0 --129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0 -52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0 --120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0 -67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0 --110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0 -76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0 --100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0 -86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0 --86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0 -96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0 --76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0 -105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0 --67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0 -115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0 --57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0 -129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0 --48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0 -139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0 --38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0 -148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0 -153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0 --19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0 -163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0 -172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0 -4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0 -14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0 -24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0 --153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0 -33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0 --144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0 -43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0 --134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0 -52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0 --124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0 -62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0 --110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0 -72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0 --100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0 -81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0 --91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0 -96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0 --81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0 -105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0 --72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0 -115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0 --57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0 -124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0 --48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0 -134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0 --38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0 -144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0 --28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0 -153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0 --24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0 -163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0 --14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0 -172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -0.00,0.00,12.01,0.00,1.00,0.00,0.00,0 --177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0 -9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0 --158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0 -28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0 --148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0 -38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0 --139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0 -48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0 --129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0 -57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0 --120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0 -67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0 --110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0 -76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0 --100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0 -86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0 --86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0 -96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0 --76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0 -105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0 --67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0 -115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0 --57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0 -124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0 --48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0 -134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0 --38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0 -144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0 --28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0 -153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0 --19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0 -163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0 -172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0 -4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0 -14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0 -24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0 --148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0 -33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0 --139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0 -43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0 --129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0 -52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0 --120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0 -62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0 --110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0 -72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0 --100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0 -81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0 --91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0 -96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0 --81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0 -105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0 --72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0 -115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0 --62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0 -124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0 --52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0 -134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0 --43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0 -144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0 --33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0 -153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0 --24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0 -163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0 -172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0 -0.00,0.00,4.81,0.00,1.00,0.00,0.00,0 --177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0 -9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0 -19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0 -28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0 --148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0 -38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0 --139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0 -48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0 --129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0 -57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0 --120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0 -67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0 --110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0 -76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0 --100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0 -86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0 --86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0 -96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0 --76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0 -105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0 --67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0 -115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0 --57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0 -124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0 --48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0 -134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0 --38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0 -144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0 --28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0 -153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0 --19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0 -163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0 --9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0 -172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0 -4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0 -14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0 -24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0 --148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0 -33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0 --139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0 -43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0 --129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0 -52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0 --120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0 -62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0 --110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0 -72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0 --100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0 -81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0 --91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0 -96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0 --81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0 -105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0 --72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0 -115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0 --62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0 -124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0 --52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0 -134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0 --43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0 -144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0 --33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0 -153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0 --24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0 -163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0 -172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -0.00,0.00,10.40,0.00,1.00,0.00,0.00,0 --177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0 -9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0 -19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0 -28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0 --148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0 -38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0 --139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0 -48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0 --129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0 -57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0 --120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0 -67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0 --110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0 -76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0 --100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0 -86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0 --86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0 -96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0 --76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0 -105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0 --67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0 -115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0 --57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0 -124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0 --48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0 -134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0 --38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0 -144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0 --28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0 -153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0 -163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0 --9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0 -172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0 -4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0 -14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0 -24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0 -33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0 --139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0 -43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0 --129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0 -52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0 --120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0 -62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0 --110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0 -72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0 --100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0 -81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0 --91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0 -96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0 --81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0 -105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0 --72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0 -115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0 --62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0 -124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0 --52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0 -134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0 --43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0 -144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0 --33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0 -153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0 --24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0 -163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0 -172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,6.41,0.00,1.00,0.00,0.00,0 --177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0 -9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0 -19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0 --158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0 -28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0 --148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0 -38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0 --139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0 -48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0 --129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0 -57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0 --120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0 -67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0 --110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0 -76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0 --100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0 -86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0 --86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0 -96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0 --76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0 -105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0 --67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0 -115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0 --57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0 -124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0 --48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0 -134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0 --38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0 -144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0 --28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0 -153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0 -163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0 -172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0 -4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0 -14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0 --158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0 -24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0 -33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0 --139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0 -43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0 --129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0 -52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0 --120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0 -62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0 --110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0 -72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0 --100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0 -81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0 --91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0 -96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0 --81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0 -105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0 --72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0 -115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0 --62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0 -124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0 --52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0 -134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0 --43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0 -144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0 --33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0 -153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0 --24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0 -163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0 --14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0 -172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.80,0.00,1.00,0.00,0.00,0 --177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0 -9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0 -19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0 --158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0 -28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0 --148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0 -38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0 --139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0 -48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0 --129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0 -57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0 --120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0 -67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0 --110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0 -76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0 --100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0 -86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0 --86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0 -96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0 --76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0 -105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0 --67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0 -115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0 --57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0 -124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0 --48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0 -134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0 --38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0 -144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0 --28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0 -153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0 --19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0 -163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0 -172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0 --0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0 -4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0 --168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0 -14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0 --158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0 -24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0 --148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0 -33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0 --139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0 -43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0 --129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0 -52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0 --120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0 -62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0 --110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0 -72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0 --100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0 -81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0 --91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0 -96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0 --81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0 -105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0 --72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0 -115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0 --62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0 -124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0 --52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0 -134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0 --43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0 -144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0 --33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0 -153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0 --24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0 -163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0 --14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0 -172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.01,0.00,1.00,0.00,0.00,0 --177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0 --168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0 -19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0 --158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0 -28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0 --148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0 -38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0 --139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0 -48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0 --129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0 -57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0 --120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0 -67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0 --110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0 -76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0 --100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0 -86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0 --86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0 -96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0 --76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0 -105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0 --67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0 -115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0 --57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0 -124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0 --48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0 -134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0 --38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0 -144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0 --28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0 -153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0 --19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0 -163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0 --9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0 -172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0 --0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0 --168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0 -14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0 --158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0 -24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0 --148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0 -33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0 --139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0 -43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0 --129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0 -52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0 --120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0 -62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0 --110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0 -72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0 --100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0 -81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0 --91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0 -96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0 --81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0 -105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0 --72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0 -115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0 --62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0 -124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0 --52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0 -134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0 --43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0 -144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0 --33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0 -153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0 --24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0 -163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0 --14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0 --4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0 -0.00,0.00,7.20,0.00,1.00,0.00,0.00,0 --177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0 --168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0 -19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0 --158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0 --148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0 -38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0 --139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0 -48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0 --129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0 -57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0 --120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0 -67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0 --110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0 -76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0 --100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0 -86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0 --86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0 -96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0 --76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0 -105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0 --67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0 -115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0 --57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0 -124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0 --48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0 -134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0 --38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0 -144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0 --28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0 --19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0 -163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0 --9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0 --0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0 --168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0 -14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0 --158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0 --148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0 -33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0 --139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0 -43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0 --129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0 -52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0 --120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0 -62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0 --110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0 -72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0 --100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0 -81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0 --91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0 -96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0 --81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0 -105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0 --72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0 -115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0 --62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0 -124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0 --52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0 -134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0 --43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0 -144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0 --33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0 -153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0 --24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0 --14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0 --4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0 -0.00,0.00,9.61,0.00,1.00,0.00,0.00,0 --177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0 --168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0 --158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0 --148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0 --139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0 -48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0 --129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0 -57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0 --120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0 -67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0 --110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0 -76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0 --100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0 -86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0 --86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0 -96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0 --76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0 -105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0 --67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0 -115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0 --57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0 -124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0 --48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0 -134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0 --38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0 --28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0 --19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0 -163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0 --9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0 --0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0 --168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0 --158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0 --148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0 -33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0 --139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0 -43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0 --129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0 -52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0 --120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0 -62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0 --110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0 -72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0 --100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0 -81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0 --91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0 -96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0 --81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0 -105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0 --72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0 -115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0 --62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0 -124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0 --52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0 -134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0 --43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0 -144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0 --33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0 -153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0 --24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0 --14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0 -172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0 --4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0 -0.00,0.00,5.60,0.00,1.00,0.00,0.00,0 --177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0 --168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0 --158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0 -28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0 --148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0 --139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0 -48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0 --129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0 -57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0 --120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0 -67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0 --110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0 -76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0 --100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0 -86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0 --86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0 -96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0 --76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0 -105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0 --67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0 -115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0 --57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0 -124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0 --48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0 -134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0 --38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0 --28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0 -153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0 --19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0 --9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0 --0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0 --168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0 --158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0 --148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0 -33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0 --139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0 -43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0 --129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0 -52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0 --120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0 -62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0 --110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0 -72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0 --100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0 -81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0 --91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0 -96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0 --81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0 -105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0 --72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0 -115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0 --62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0 -124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0 --52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0 -134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0 --43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0 -144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0 --33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0 -153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0 --24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0 --14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0 --4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0 -0.00,0.00,11.21,0.00,1.00,0.00,0.00,0 --177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0 --168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0 --158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0 -28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0 --148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0 -38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0 --139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0 -48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0 --129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0 -57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0 --120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0 -67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0 --110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0 -76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0 --100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0 -86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0 --86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0 -96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0 --76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0 -105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0 --67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0 -115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0 --57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0 -124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0 --48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0 -134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0 --38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0 -144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0 --28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0 -153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0 --19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0 --9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0 --0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0 --168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0 --158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0 --148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0 --139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0 -43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0 --129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0 -52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0 --120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0 -62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0 --110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0 -72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0 --100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0 -81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0 --91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0 -96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0 --81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0 -105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0 --72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0 -115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0 --62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0 -124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0 --52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0 -134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0 --43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0 --33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0 -153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0 --24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0 -163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0 --14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0 --4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,3.99,0.00,1.00,0.00,0.00,0 --177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0 --168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0 -19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0 --158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0 --148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0 -33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0 --139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0 -43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0 --129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0 -52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0 --120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0 -62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0 --110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0 -76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0 --100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0 -86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0 --86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0 -96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0 --76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0 -105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0 --67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0 -120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0 --57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0 --48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0 -139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0 --38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0 -148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0 --28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0 -158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0 --19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0 -163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0 --9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0 --0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0 --168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0 --158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0 --153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0 --144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0 -43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0 --134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0 --124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0 -62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0 --110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0 -72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0 --100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0 -81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0 --91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0 -96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0 --81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0 -105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0 --72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0 -115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0 --57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0 -124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0 --48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0 -134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0 --38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0 --28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0 --24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0 --14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0 --4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,12.82,0.00,1.00,0.00,0.00,0 --177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0 --168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0 --158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0 --148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0 -33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0 --139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0 --129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0 --120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0 -62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0 --110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0 -76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0 --100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0 -86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0 --86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0 -96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0 --76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0 -110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0 --67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0 -120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0 --57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0 --48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0 --38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0 --28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0 --19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0 --9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0 --0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0 --168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0 --163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0 --153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0 -33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0 --144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0 -43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0 --134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0 --124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0 -62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0 --115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0 -72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0 --100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0 -81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0 --91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0 -96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0 --81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0 -105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0 --67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0 -115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0 --57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0 -124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0 --48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0 -134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0 --38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0 -144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0 --28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0 --19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0 --14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0 --4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,2.39,0.00,1.00,0.00,0.00,0 --177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0 --168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0 --158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0 --153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0 -33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0 --144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0 --134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0 --124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0 -62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0 --110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0 -72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0 --100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0 -86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0 --86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0 -96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0 --76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0 -110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0 --67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0 -120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0 --52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0 -129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0 --43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0 --33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0 --24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0 --19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0 --9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0 --0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0 --168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0 --163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0 --153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0 -28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0 --144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0 -38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0 --134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0 -48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0 --124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0 -57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0 --115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0 -72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0 --105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0 -81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0 --91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0 -96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0 --81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0 -105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0 --67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0 -120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0 --57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0 -129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0 --48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0 -139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0 --38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0 --28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0 -158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0 --19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0 --9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0 --4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0 -0.00,0.00,14.42,0.00,1.00,0.00,0.00,0 --177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0 --168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0 --163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0 -24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0 --153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0 -28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0 --144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0 -38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0 --134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0 -48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0 --124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0 -62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0 --115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0 -72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0 --100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0 -86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0 --86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0 -96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0 --76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0 -110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0 --62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0 -120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0 --52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0 -134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0 --43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0 --33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0 --24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0 -158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0 --14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0 --9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0 --0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0 --172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0 --163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0 --153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0 --148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0 -38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0 --139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0 -48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0 --129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0 --115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0 -67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0 --105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0 -81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0 --91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0 -96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0 --76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0 -105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0 --67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0 -120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0 --52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0 -129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0 --43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0 -139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0 --33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0 --28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0 --19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0 -163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0 --9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0 --4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0 -0.00,0.00,0.79,0.00,1.00,0.00,0.00,0 --177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0 -4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0 --168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0 --163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0 -19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0 --153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0 -28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0 --148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0 -38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0 --139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0 -48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0 --124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0 -57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0 --115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0 -72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0 --100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0 -86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0 --86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0 -100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0 --76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0 -110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0 --62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0 -124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0 --48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0 -134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0 --38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0 --28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0 --24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0 -163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0 --14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0 -168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0 --9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0 --0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0 --177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0 --172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0 -9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0 --163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0 --158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0 --148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0 -33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0 --139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0 -43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0 --129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0 --120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0 -67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0 --105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0 -81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0 --91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0 -96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0 --76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0 -110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0 --67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0 -120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0 --52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0 -134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0 --43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0 -144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0 --33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0 -153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0 --24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0 --19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0 -168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0 --9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0 --4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0 diff --git a/scripts/testv/stvOMASA_3ISM_2MASA1TC32c.met b/scripts/testv/stvOMASA_3ISM_2MASA1TC32c.met deleted file mode 100644 index 64688774087538a671ebfda830ff11b4f836f438..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_2MASA1TC32c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d125a4c4e3989ac55f9c2617f464431feae4ede9b2e15d087d3271c0a4a56303 -size 319800 diff --git a/scripts/testv/stvOMASA_3ISM_2MASA1TC32c.wav b/scripts/testv/stvOMASA_3ISM_2MASA1TC32c.wav deleted file mode 100644 index 8315f2cabae13bb3d708ed7a64885499d0af88be..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_2MASA1TC32c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:29dd1508bd54d97f3f6d5abe7c91dafbd165c80cac6ea54601bc15f6fdc820b1 -size 1536080 diff --git a/scripts/testv/stvOMASA_3ISM_2MASA1TC32c_ISM1.csv b/scripts/testv/stvOMASA_3ISM_2MASA1TC32c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_2MASA1TC32c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_3ISM_2MASA1TC32c_ISM2.csv b/scripts/testv/stvOMASA_3ISM_2MASA1TC32c_ISM2.csv deleted file mode 100644 index f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_2MASA1TC32c_ISM2.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,4.80,16.00,0.00,1.00,0.00,0.00,0 -0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0 -0.00,14.40,15.96,0.00,1.00,4.80,9.60,0 -0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0 -0.00,24.00,15.91,0.00,1.00,14.40,19.20,0 -0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0 -0.00,33.60,15.87,0.00,1.00,19.20,28.80,0 -0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0 -0.00,43.20,15.83,0.00,1.00,28.80,38.40,0 -0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0 -0.00,52.80,15.79,0.00,1.00,38.40,48.00,0 -0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0 -0.00,62.40,15.74,0.00,1.00,48.00,57.60,0 -4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0 -4.80,72.00,15.70,0.00,1.00,57.60,67.20,0 -4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0 -9.60,81.60,15.66,0.00,1.00,72.00,76.80,0 -19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0 -134.40,86.40,15.62,0.00,1.00,86.40,86.40,0 -168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0 -172.80,76.80,15.57,0.00,1.00,100.80,86.40,0 -177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0 -177.60,67.20,15.53,0.00,1.00,110.40,76.80,0 -177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0 -177.60,57.60,15.49,0.00,1.00,124.80,67.20,0 -177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0 -177.60,48.00,15.44,0.00,1.00,134.40,57.60,0 -177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0 -177.60,38.40,15.40,0.00,1.00,144.00,48.00,0 -177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0 -177.60,28.80,15.36,0.00,1.00,153.60,38.40,0 -177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0 -177.60,19.20,15.32,0.00,1.00,158.40,28.80,0 -177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0 -177.60,9.60,15.27,0.00,1.00,168.00,19.20,0 -177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0 -177.60,0.00,15.23,0.00,1.00,172.80,9.60,0 --177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0 --177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0 --177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0 --177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0 --177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0 --177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0 --177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0 --177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0 --177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0 --177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0 --177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0 --177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0 --177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0 --177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0 --177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0 --177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0 --172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0 --168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0 --134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0 --19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0 --9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0 --4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0 --4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0 --4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0 --0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0 --0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0 --0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0 --0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0 --0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0 --0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0 --0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0 --0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0 --0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0 --0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0 --0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0 --0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0 --0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0 --0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,14.40,0.00,1.00,0.00,0.00,0 --0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0 --0.00,14.40,14.36,0.00,1.00,9.60,9.60,0 --0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0 --0.00,24.00,14.31,0.00,1.00,14.40,19.20,0 --0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0 --0.00,33.60,14.27,0.00,1.00,24.00,28.80,0 --4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0 --4.80,43.20,14.23,0.00,1.00,28.80,38.40,0 --4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0 --4.80,52.80,14.18,0.00,1.00,38.40,48.00,0 --4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0 --4.80,62.40,14.14,0.00,1.00,48.00,57.60,0 --9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0 --9.60,72.00,14.10,0.00,1.00,62.40,67.20,0 --14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0 --24.00,81.60,14.06,0.00,1.00,72.00,76.80,0 --43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0 --110.40,86.40,14.01,0.00,1.00,86.40,86.40,0 --148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0 --163.20,76.80,13.97,0.00,1.00,96.00,81.60,0 --168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0 --172.80,67.20,13.93,0.00,1.00,110.40,72.00,0 --172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0 --172.80,57.60,13.89,0.00,1.00,120.00,62.40,0 --172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0 --177.60,48.00,13.84,0.00,1.00,134.40,52.80,0 --177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0 --177.60,38.40,13.80,0.00,1.00,144.00,43.20,0 --177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0 --177.60,28.80,13.76,0.00,1.00,148.80,33.60,0 --177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0 --177.60,19.20,13.71,0.00,1.00,158.40,24.00,0 --177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0 --177.60,9.60,13.67,0.00,1.00,168.00,14.40,0 --177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0 --177.60,0.00,13.63,0.00,1.00,172.80,4.80,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0 -177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0 -177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0 -177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0 -177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0 -177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0 -177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0 -172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0 -172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0 -172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0 -172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0 -168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0 -163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0 -148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0 -110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0 -43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0 -24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0 -14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0 -9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0 -9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0 -4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0 -4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0 -4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0 -4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0 -4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0 -0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0 -0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0 -0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0 -0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0 -0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,12.80,0.00,1.00,0.00,0.00,0 --0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0 --0.00,14.40,12.75,0.00,1.00,9.60,9.60,0 --4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0 --4.80,24.00,12.71,0.00,1.00,14.40,19.20,0 --4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0 --4.80,33.60,12.67,0.00,1.00,24.00,28.80,0 --4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0 --9.60,43.20,12.62,0.00,1.00,33.60,38.40,0 --9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0 --9.60,52.80,12.58,0.00,1.00,43.20,48.00,0 --14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0 --14.40,62.40,12.54,0.00,1.00,52.80,57.60,0 --19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0 --24.00,72.00,12.50,0.00,1.00,62.40,67.20,0 --33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0 --43.20,76.80,12.45,0.00,1.00,72.00,72.00,0 --67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0 --96.00,81.60,12.41,0.00,1.00,86.40,81.60,0 --124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0 --144.00,76.80,12.37,0.00,1.00,96.00,76.80,0 --153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0 --158.40,67.20,12.33,0.00,1.00,110.40,72.00,0 --163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0 --168.00,57.60,12.28,0.00,1.00,120.00,62.40,0 --168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0 --168.00,48.00,12.24,0.00,1.00,129.60,52.80,0 --172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0 --172.80,38.40,12.20,0.00,1.00,139.20,43.20,0 --172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0 --172.80,28.80,12.15,0.00,1.00,148.80,33.60,0 --177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0 --177.60,19.20,12.11,0.00,1.00,158.40,24.00,0 --177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0 --177.60,9.60,12.07,0.00,1.00,168.00,14.40,0 --177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0 --177.60,0.00,12.03,0.00,1.00,172.80,4.80,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0 -177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0 -172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0 -172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0 -168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0 -168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0 -168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0 -163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0 -158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0 -153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0 -144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0 -124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0 -96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0 -67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0 -43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0 -33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0 -24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0 -19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0 -14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0 -14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0 -9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0 -9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0 -9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0 -4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0 -4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0 -0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,11.19,0.00,1.00,0.00,0.00,0 --0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0 --4.80,14.40,11.15,0.00,1.00,9.60,9.60,0 --4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0 --4.80,24.00,11.11,0.00,1.00,14.40,19.20,0 --4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0 --9.60,33.60,11.07,0.00,1.00,24.00,28.80,0 --9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0 --14.40,43.20,11.02,0.00,1.00,33.60,38.40,0 --14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0 --14.40,52.80,10.98,0.00,1.00,43.20,48.00,0 --19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0 --24.00,57.60,10.94,0.00,1.00,52.80,52.80,0 --28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0 --33.60,67.20,10.89,0.00,1.00,62.40,62.40,0 --43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0 --57.60,72.00,10.85,0.00,1.00,76.80,72.00,0 --76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0 --96.00,76.80,10.81,0.00,1.00,86.40,76.80,0 --115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0 --129.60,72.00,10.77,0.00,1.00,96.00,76.80,0 --139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0 --148.80,67.20,10.72,0.00,1.00,105.60,67.20,0 --153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0 --158.40,57.60,10.68,0.00,1.00,120.00,62.40,0 --163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0 --163.20,48.00,10.64,0.00,1.00,129.60,52.80,0 --168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0 --168.00,38.40,10.60,0.00,1.00,139.20,43.20,0 --172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0 --172.80,28.80,10.55,0.00,1.00,148.80,33.60,0 --172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0 --172.80,19.20,10.51,0.00,1.00,158.40,24.00,0 --177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0 --177.60,9.60,10.47,0.00,1.00,163.20,14.40,0 --177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0 --177.60,0.00,10.42,0.00,1.00,172.80,4.80,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0 -168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0 -168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0 -163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0 -163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0 -158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0 -153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0 -148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0 -139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0 -129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0 -115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0 -96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0 -76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0 -57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0 -43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0 -33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0 -28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0 -24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0 -19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0 -14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0 -14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0 -14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0 -9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0 -9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0 -4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0 -4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0 -0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,9.59,0.00,1.00,0.00,0.00,0 --4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0 --4.80,14.40,9.55,0.00,1.00,9.60,9.60,0 --4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0 --9.60,24.00,9.51,0.00,1.00,19.20,19.20,0 --9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0 --9.60,33.60,9.46,0.00,1.00,24.00,28.80,0 --14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0 --14.40,38.40,9.42,0.00,1.00,33.60,33.60,0 --19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0 --24.00,48.00,9.38,0.00,1.00,43.20,43.20,0 --24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0 --28.80,57.60,9.34,0.00,1.00,52.80,52.80,0 --38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0 --43.20,62.40,9.29,0.00,1.00,67.20,62.40,0 --52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0 --62.40,72.00,9.25,0.00,1.00,76.80,67.20,0 --76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0 --96.00,72.00,9.21,0.00,1.00,86.40,72.00,0 --110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0 --120.00,67.20,9.16,0.00,1.00,96.00,72.00,0 --134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0 --139.20,62.40,9.12,0.00,1.00,105.60,67.20,0 --148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0 --153.60,57.60,9.08,0.00,1.00,115.20,57.60,0 --158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0 --158.40,48.00,9.04,0.00,1.00,129.60,52.80,0 --163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0 --163.20,38.40,8.99,0.00,1.00,139.20,43.20,0 --168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0 --168.00,28.80,8.95,0.00,1.00,148.80,33.60,0 --172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0 --172.80,19.20,8.91,0.00,1.00,153.60,24.00,0 --172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0 --177.60,9.60,8.87,0.00,1.00,163.20,14.40,0 --177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0 --177.60,0.00,8.82,0.00,1.00,172.80,4.80,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0 -168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0 -163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0 -163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0 -158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0 -158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0 -153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0 -148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0 -139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0 -134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0 -120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0 -110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0 -96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0 -76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0 -62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0 -52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0 -43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0 -38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0 -28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0 -24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0 -24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0 -19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0 -14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0 -14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0 -9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0 -9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0 -9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0 -0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,7.99,0.00,1.00,0.00,0.00,0 --4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0 --4.80,14.40,7.95,0.00,1.00,9.60,9.60,0 --9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0 --9.60,24.00,7.90,0.00,1.00,19.20,19.20,0 --14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0 --14.40,28.80,7.86,0.00,1.00,28.80,24.00,0 --19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0 --19.20,38.40,7.82,0.00,1.00,38.40,33.60,0 --24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0 --28.80,48.00,7.78,0.00,1.00,48.00,43.20,0 --33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0 --38.40,52.80,7.73,0.00,1.00,57.60,52.80,0 --43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0 --48.00,62.40,7.69,0.00,1.00,67.20,57.60,0 --57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0 --67.20,67.20,7.65,0.00,1.00,76.80,62.40,0 --81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0 --91.20,67.20,7.60,0.00,1.00,86.40,67.20,0 --105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0 --115.20,67.20,7.56,0.00,1.00,96.00,67.20,0 --124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0 --134.40,57.60,7.52,0.00,1.00,105.60,62.40,0 --139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0 --144.00,52.80,7.48,0.00,1.00,115.20,57.60,0 --148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0 --153.60,43.20,7.43,0.00,1.00,124.80,48.00,0 --158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0 --163.20,38.40,7.39,0.00,1.00,134.40,38.40,0 --163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0 --168.00,28.80,7.35,0.00,1.00,144.00,33.60,0 --168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0 --172.80,19.20,7.31,0.00,1.00,153.60,24.00,0 --172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0 --177.60,9.60,7.26,0.00,1.00,163.20,14.40,0 --177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0 --177.60,0.00,7.22,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0 -163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0 -158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0 -153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0 -148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0 -144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0 -139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0 -134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0 -124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0 -115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0 -105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0 -91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0 -81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0 -67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0 -57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0 -48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0 -43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0 -38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0 -33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0 -28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0 -24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0 -19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0 -19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0 -14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0 -9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0 -0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,6.39,0.00,1.00,0.00,0.00,0 --4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0 --4.80,14.40,6.34,0.00,1.00,9.60,9.60,0 --9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0 --9.60,19.20,6.30,0.00,1.00,19.20,14.40,0 --14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0 --19.20,28.80,6.26,0.00,1.00,28.80,24.00,0 --19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0 --24.00,38.40,6.22,0.00,1.00,38.40,33.60,0 --28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0 --33.60,43.20,6.17,0.00,1.00,48.00,38.40,0 --38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0 --43.20,52.80,6.13,0.00,1.00,57.60,48.00,0 --48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0 --52.80,57.60,6.09,0.00,1.00,67.20,52.80,0 --62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0 --72.00,62.40,6.05,0.00,1.00,76.80,57.60,0 --81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0 --91.20,62.40,6.00,0.00,1.00,86.40,62.40,0 --100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0 --110.40,62.40,5.96,0.00,1.00,96.00,62.40,0 --120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0 --129.60,57.60,5.92,0.00,1.00,105.60,57.60,0 --134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0 --139.20,48.00,5.87,0.00,1.00,115.20,52.80,0 --144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0 --148.80,43.20,5.83,0.00,1.00,124.80,48.00,0 --153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0 --158.40,33.60,5.79,0.00,1.00,134.40,38.40,0 --163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0 --163.20,28.80,5.75,0.00,1.00,144.00,28.80,0 --168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0 --168.00,19.20,5.70,0.00,1.00,153.60,24.00,0 --172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0 --172.80,9.60,5.66,0.00,1.00,163.20,14.40,0 --177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0 --177.60,0.00,5.62,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0 -163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0 -158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0 -148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0 -144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0 -139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0 -134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0 -129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0 -120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0 -110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0 -100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0 -91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0 -81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0 -72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0 -62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0 -52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0 -48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0 -43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0 -38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0 -33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0 -28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0 -24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0 -19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0 -19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0 -9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0 -4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0 -0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,4.79,0.00,1.00,0.00,0.00,0 --4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0 --9.60,14.40,4.74,0.00,1.00,9.60,9.60,0 --9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0 --14.40,19.20,4.70,0.00,1.00,19.20,14.40,0 --14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0 --19.20,28.80,4.66,0.00,1.00,28.80,24.00,0 --24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0 --28.80,33.60,4.61,0.00,1.00,38.40,28.80,0 --28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0 --33.60,43.20,4.57,0.00,1.00,48.00,38.40,0 --38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0 --48.00,48.00,4.53,0.00,1.00,57.60,43.20,0 --52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0 --57.60,52.80,4.49,0.00,1.00,67.20,48.00,0 --67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0 --76.80,57.60,4.44,0.00,1.00,76.80,52.80,0 --81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0 --91.20,57.60,4.40,0.00,1.00,86.40,57.60,0 --100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0 --110.40,57.60,4.36,0.00,1.00,96.00,57.60,0 --115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0 --124.80,52.80,4.32,0.00,1.00,105.60,52.80,0 --129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0 --139.20,48.00,4.27,0.00,1.00,115.20,48.00,0 --144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0 --148.80,38.40,4.23,0.00,1.00,124.80,43.20,0 --153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0 --153.60,33.60,4.19,0.00,1.00,134.40,38.40,0 --158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0 --163.20,24.00,4.14,0.00,1.00,144.00,28.80,0 --163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0 --168.00,19.20,4.10,0.00,1.00,153.60,24.00,0 --172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0 --172.80,9.60,4.06,0.00,1.00,163.20,14.40,0 --177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0 --177.60,0.00,4.02,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0 -163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0 -163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0 -158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0 -148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0 -144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0 -139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0 -129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0 -124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0 -115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0 -110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0 -100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0 -91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0 -81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0 -76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0 -67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0 -57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0 -52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0 -48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0 -38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0 -33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0 -28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0 -28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0 -24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0 -19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0 -14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0 -14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0 -9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0 -0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.18,0.00,1.00,0.00,0.00,0 --4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0 --9.60,9.60,3.14,0.00,1.00,9.60,9.60,0 --9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0 --14.40,19.20,3.10,0.00,1.00,19.20,14.40,0 --19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0 --24.00,24.00,3.05,0.00,1.00,28.80,24.00,0 --24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0 --28.80,33.60,3.01,0.00,1.00,38.40,28.80,0 --33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0 --38.40,38.40,2.97,0.00,1.00,48.00,33.60,0 --43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0 --48.00,43.20,2.93,0.00,1.00,57.60,43.20,0 --52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0 --62.40,48.00,2.88,0.00,1.00,67.20,48.00,0 --67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0 --76.80,52.80,2.84,0.00,1.00,76.80,48.00,0 --86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0 --91.20,52.80,2.80,0.00,1.00,86.40,52.80,0 --100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0 --105.60,52.80,2.76,0.00,1.00,96.00,52.80,0 --115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0 --120.00,48.00,2.71,0.00,1.00,105.60,48.00,0 --129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0 --134.40,43.20,2.67,0.00,1.00,115.20,43.20,0 --139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0 --144.00,38.40,2.63,0.00,1.00,124.80,38.40,0 --148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0 --153.60,33.60,2.58,0.00,1.00,134.40,33.60,0 --158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0 --158.40,24.00,2.54,0.00,1.00,144.00,28.80,0 --163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0 --168.00,19.20,2.50,0.00,1.00,153.60,19.20,0 --168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.46,0.00,1.00,163.20,14.40,0 --177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.41,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0 -158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0 -148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0 -144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0 -139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0 -134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0 -129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0 -120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0 -115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0 -105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0 -100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0 -91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0 -86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0 -76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0 -67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0 -62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0 -52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0 -48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0 -43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0 -38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0 -33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0 -28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0 -24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0 -24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0 -19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0 -0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.58,0.00,1.00,0.00,0.00,0 --4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.54,0.00,1.00,9.60,4.80,0 --14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0 --14.40,19.20,1.50,0.00,1.00,19.20,14.40,0 --19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0 --24.00,24.00,1.45,0.00,1.00,28.80,19.20,0 --28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0 --33.60,28.80,1.41,0.00,1.00,38.40,28.80,0 --38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0 --43.20,38.40,1.37,0.00,1.00,48.00,33.60,0 --48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0 --52.80,43.20,1.32,0.00,1.00,57.60,38.40,0 --57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0 --62.40,43.20,1.28,0.00,1.00,67.20,43.20,0 --72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0 --76.80,48.00,1.24,0.00,1.00,76.80,43.20,0 --86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0 --91.20,48.00,1.20,0.00,1.00,86.40,48.00,0 --100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0 --105.60,48.00,1.15,0.00,1.00,96.00,48.00,0 --110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0 --120.00,43.20,1.11,0.00,1.00,105.60,43.20,0 --124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0 --129.60,38.40,1.07,0.00,1.00,115.20,43.20,0 --134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0 --139.20,33.60,1.03,0.00,1.00,124.80,38.40,0 --144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0 --148.80,28.80,0.98,0.00,1.00,134.40,33.60,0 --153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0 --158.40,24.00,0.94,0.00,1.00,144.00,24.00,0 --163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0 --163.20,14.40,0.90,0.00,1.00,153.60,19.20,0 --168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.85,0.00,1.00,163.20,14.40,0 --172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.81,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0 -148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0 -144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0 -139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0 -134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0 -129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0 -124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0 -120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0 -110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0 -105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0 -100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0 -91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0 -86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0 -76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0 -72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0 -62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0 -57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0 -52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0 -48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0 -43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0 -38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0 -28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0 -19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0 -0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,0.00,0.00,1.00,0.00,0.00,0 --4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0 --9.60,9.60,0.04,0.00,1.00,9.60,4.80,0 --14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0 --19.20,14.40,0.09,0.00,1.00,19.20,14.40,0 --24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0 --24.00,24.00,0.13,0.00,1.00,28.80,19.20,0 --28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0 --33.60,28.80,0.17,0.00,1.00,38.40,24.00,0 --38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0 --43.20,33.60,0.21,0.00,1.00,48.00,28.80,0 --48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0 --52.80,38.40,0.26,0.00,1.00,57.60,33.60,0 --62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0 --67.20,38.40,0.30,0.00,1.00,67.20,38.40,0 --72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0 --76.80,43.20,0.34,0.00,1.00,76.80,38.40,0 --86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0 --91.20,43.20,0.38,0.00,1.00,86.40,43.20,0 --96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0 --105.60,43.20,0.43,0.00,1.00,96.00,43.20,0 --110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0 --115.20,38.40,0.47,0.00,1.00,105.60,38.40,0 --124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0 --129.60,38.40,0.51,0.00,1.00,115.20,38.40,0 --134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0 --139.20,33.60,0.56,0.00,1.00,124.80,33.60,0 --144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0 --148.80,28.80,0.60,0.00,1.00,134.40,28.80,0 --153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0 --158.40,19.20,0.64,0.00,1.00,144.00,24.00,0 --158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0 --163.20,14.40,0.68,0.00,1.00,153.60,19.20,0 --168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.73,0.00,1.00,163.20,9.60,0 --172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.77,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0 -158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0 -158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0 -148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0 -144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0 -139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0 -134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0 -129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0 -124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0 -115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0 -110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0 -105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0 -96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0 -91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0 -86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0 -76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0 -72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0 -67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0 -62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0 -52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0 -48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0 -43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0 -38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0 -28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0 -19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0 -0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.60,0.00,1.00,0.00,0.00,0 --9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.64,0.00,1.00,9.60,4.80,0 --14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0 --19.20,14.40,1.69,0.00,1.00,19.20,9.60,0 --24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0 --28.80,19.20,1.73,0.00,1.00,28.80,19.20,0 --33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0 --38.40,24.00,1.77,0.00,1.00,38.40,24.00,0 --43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0 --48.00,28.80,1.82,0.00,1.00,48.00,28.80,0 --52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0 --57.60,33.60,1.86,0.00,1.00,57.60,28.80,0 --62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0 --67.20,38.40,1.90,0.00,1.00,67.20,33.60,0 --72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0 --81.60,38.40,1.94,0.00,1.00,76.80,38.40,0 --86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0 --91.20,38.40,1.99,0.00,1.00,86.40,38.40,0 --96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0 --105.60,38.40,2.03,0.00,1.00,96.00,38.40,0 --110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0 --115.20,33.60,2.07,0.00,1.00,105.60,33.60,0 --120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0 --124.80,33.60,2.11,0.00,1.00,115.20,33.60,0 --129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0 --134.40,28.80,2.16,0.00,1.00,124.80,28.80,0 --139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0 --144.00,24.00,2.20,0.00,1.00,134.40,24.00,0 --148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0 --153.60,19.20,2.24,0.00,1.00,144.00,19.20,0 --158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0 --163.20,14.40,2.29,0.00,1.00,153.60,14.40,0 --168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.33,0.00,1.00,163.20,9.60,0 --172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.37,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0 -153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0 -144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0 -134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0 -124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0 -120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0 -115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0 -110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0 -105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0 -96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0 -91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0 -86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0 -81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0 -72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0 -67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0 -62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0 -57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0 -52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0 -48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0 -43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0 -38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0 -33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0 -28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0 -14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.20,0.00,1.00,0.00,0.00,0 --9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0 --14.40,9.60,3.25,0.00,1.00,9.60,4.80,0 --14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0 --19.20,14.40,3.29,0.00,1.00,19.20,9.60,0 --24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0 --28.80,19.20,3.33,0.00,1.00,28.80,14.40,0 --33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0 --38.40,24.00,3.38,0.00,1.00,38.40,19.20,0 --43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0 --48.00,24.00,3.42,0.00,1.00,48.00,24.00,0 --52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0 --57.60,28.80,3.46,0.00,1.00,57.60,28.80,0 --62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0 --67.20,33.60,3.50,0.00,1.00,67.20,28.80,0 --72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0 --81.60,33.60,3.55,0.00,1.00,76.80,33.60,0 --86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0 --91.20,33.60,3.59,0.00,1.00,86.40,33.60,0 --96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0 --100.80,33.60,3.63,0.00,1.00,96.00,33.60,0 --110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0 --115.20,33.60,3.67,0.00,1.00,105.60,28.80,0 --120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0 --124.80,28.80,3.72,0.00,1.00,115.20,28.80,0 --129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0 --134.40,24.00,3.76,0.00,1.00,124.80,24.00,0 --139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0 --144.00,19.20,3.80,0.00,1.00,134.40,24.00,0 --148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0 --153.60,14.40,3.85,0.00,1.00,144.00,19.20,0 --158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0 --163.20,9.60,3.89,0.00,1.00,153.60,14.40,0 --168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0 --168.00,4.80,3.93,0.00,1.00,163.20,9.60,0 --172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0 --177.60,0.00,3.97,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0 -124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0 -120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0 -115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0 -110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0 -100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0 -96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0 -91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0 -86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0 -81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0 -72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0 -67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0 -62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0 -57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0 -52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0 -48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0 -43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0 -38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0 -33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0 -28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0 -24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0 -14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0 -14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0 --4.80,0.00,4.81,0.00,1.00,0.00,0.00,0 --9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0 --14.40,4.80,4.85,0.00,1.00,9.60,4.80,0 --19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0 --19.20,9.60,4.89,0.00,1.00,19.20,9.60,0 --24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0 --28.80,14.40,4.93,0.00,1.00,28.80,14.40,0 --33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0 --38.40,19.20,4.98,0.00,1.00,38.40,14.40,0 --43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0 --48.00,24.00,5.02,0.00,1.00,48.00,19.20,0 --52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0 --57.60,24.00,5.06,0.00,1.00,57.60,24.00,0 --62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0 --72.00,28.80,5.11,0.00,1.00,67.20,24.00,0 --76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0 --81.60,28.80,5.15,0.00,1.00,76.80,28.80,0 --86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0 --91.20,28.80,5.19,0.00,1.00,86.40,28.80,0 --96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0 --100.80,28.80,5.23,0.00,1.00,96.00,28.80,0 --105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0 --115.20,28.80,5.28,0.00,1.00,105.60,28.80,0 --120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0 --124.80,24.00,5.32,0.00,1.00,115.20,24.00,0 --129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0 --134.40,24.00,5.36,0.00,1.00,124.80,24.00,0 --139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0 --144.00,19.20,5.40,0.00,1.00,134.40,19.20,0 --148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0 --153.60,14.40,5.45,0.00,1.00,144.00,14.40,0 --158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0 --163.20,9.60,5.49,0.00,1.00,153.60,9.60,0 --163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0 --168.00,4.80,5.53,0.00,1.00,163.20,9.60,0 --172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0 --177.60,0.00,5.58,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0 -163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0 -129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0 -124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0 -120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0 -115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0 -105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0 -100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0 -96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0 -91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0 -86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0 -81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0 -76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0 -72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0 -62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0 -57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0 -52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0 -48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0 -43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0 -38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0 -33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0 -28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0 -24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0 -19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0 -19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0 -0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,6.41,0.00,1.00,0.00,0.00,0 --9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0 --14.40,4.80,6.45,0.00,1.00,9.60,4.80,0 --19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0 --24.00,9.60,6.49,0.00,1.00,19.20,9.60,0 --28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0 --33.60,14.40,6.54,0.00,1.00,28.80,9.60,0 --33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0 --38.40,14.40,6.58,0.00,1.00,38.40,14.40,0 --43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0 --48.00,19.20,6.62,0.00,1.00,48.00,14.40,0 --57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0 --62.40,19.20,6.66,0.00,1.00,57.60,19.20,0 --67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0 --72.00,24.00,6.71,0.00,1.00,67.20,19.20,0 --76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0 --81.60,24.00,6.75,0.00,1.00,76.80,24.00,0 --86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0 --91.20,24.00,6.79,0.00,1.00,86.40,24.00,0 --96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0 --100.80,24.00,6.84,0.00,1.00,96.00,24.00,0 --105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0 --110.40,24.00,6.88,0.00,1.00,105.60,24.00,0 --115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0 --120.00,19.20,6.92,0.00,1.00,115.20,19.20,0 --129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0 --134.40,19.20,6.96,0.00,1.00,124.80,19.20,0 --139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0 --144.00,14.40,7.01,0.00,1.00,134.40,14.40,0 --148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0 --148.80,14.40,7.05,0.00,1.00,144.00,14.40,0 --153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0 --158.40,9.60,7.09,0.00,1.00,153.60,9.60,0 --163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0 --168.00,4.80,7.13,0.00,1.00,163.20,4.80,0 --172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0 --177.60,0.00,7.18,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0 -163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0 -158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0 -148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0 -144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0 -134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0 -129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0 -120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0 -115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0 -110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0 -105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0 -100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0 -96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0 -91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0 -86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0 -81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0 -76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0 -72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0 -67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0 -62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0 -57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0 -48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0 -43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0 -38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0 -33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0 -33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0 -28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0 -24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0 -19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0 -0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,8.01,0.00,1.00,0.00,0.00,0 --9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0 --14.40,4.80,8.05,0.00,1.00,9.60,4.80,0 --19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0 --24.00,9.60,8.10,0.00,1.00,19.20,4.80,0 --28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0 --33.60,9.60,8.14,0.00,1.00,24.00,9.60,0 --38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0 --43.20,14.40,8.18,0.00,1.00,33.60,9.60,0 --48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0 --52.80,14.40,8.22,0.00,1.00,43.20,14.40,0 --57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0 --62.40,19.20,8.27,0.00,1.00,52.80,14.40,0 --67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0 --72.00,19.20,8.31,0.00,1.00,62.40,14.40,0 --76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0 --81.60,19.20,8.35,0.00,1.00,76.80,19.20,0 --86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0 --91.20,19.20,8.40,0.00,1.00,86.40,19.20,0 --96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0 --100.80,19.20,8.44,0.00,1.00,96.00,19.20,0 --105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0 --110.40,19.20,8.48,0.00,1.00,105.60,19.20,0 --115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0 --120.00,14.40,8.52,0.00,1.00,120.00,14.40,0 --124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0 --129.60,14.40,8.57,0.00,1.00,129.60,14.40,0 --134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0 --139.20,14.40,8.61,0.00,1.00,139.20,14.40,0 --144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0 --148.80,9.60,8.65,0.00,1.00,148.80,9.60,0 --153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0 --158.40,4.80,8.69,0.00,1.00,158.40,9.60,0 --163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0 --168.00,4.80,8.74,0.00,1.00,163.20,4.80,0 --172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0 -148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0 -144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0 -139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0 -134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0 -129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0 -124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0 -120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0 -115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0 -110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0 -105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0 -100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0 -96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0 -91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0 -86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0 -81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0 -76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0 -72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0 -67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0 -62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0 -52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0 -48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0 -43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0 -38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0 -33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0 -28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0 -24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0 -19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0 -9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0 -0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,9.61,0.00,1.00,0.00,0.00,0 --9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0 --14.40,4.80,9.66,0.00,1.00,9.60,0.00,0 --19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0 --24.00,4.80,9.70,0.00,1.00,14.40,4.80,0 --28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0 --33.60,9.60,9.74,0.00,1.00,24.00,4.80,0 --38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0 --43.20,9.60,9.78,0.00,1.00,33.60,9.60,0 --48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0 --52.80,9.60,9.83,0.00,1.00,43.20,9.60,0 --57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0 --62.40,14.40,9.87,0.00,1.00,52.80,9.60,0 --67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0 --72.00,14.40,9.91,0.00,1.00,62.40,14.40,0 --76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0 --81.60,14.40,9.95,0.00,1.00,76.80,14.40,0 --86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0 --91.20,14.40,10.00,0.00,1.00,86.40,14.40,0 --96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0 --100.80,14.40,10.04,0.00,1.00,96.00,14.40,0 --105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0 --110.40,14.40,10.08,0.00,1.00,110.40,14.40,0 --115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0 --120.00,14.40,10.13,0.00,1.00,120.00,9.60,0 --124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0 --129.60,9.60,10.17,0.00,1.00,129.60,9.60,0 --134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0 --139.20,9.60,10.21,0.00,1.00,139.20,9.60,0 --144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0 --148.80,9.60,10.25,0.00,1.00,148.80,9.60,0 --153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0 --158.40,4.80,10.30,0.00,1.00,158.40,4.80,0 --163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0 --168.00,4.80,10.34,0.00,1.00,168.00,4.80,0 --172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0 -148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0 -144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0 -139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0 -134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0 -129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0 -124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0 -120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0 -115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0 -110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0 -105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0 -100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0 -96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0 -91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0 -86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0 -81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0 -76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0 -72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0 -67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0 -62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0 -48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0 -43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0 -38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0 -33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0 -28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0 -24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0 -19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0 -14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,11.21,0.00,1.00,0.00,0.00,0 --9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0 --14.40,0.00,11.26,0.00,1.00,9.60,0.00,0 --19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0 --24.00,4.80,11.30,0.00,1.00,14.40,4.80,0 --28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0 --33.60,4.80,11.34,0.00,1.00,24.00,4.80,0 --38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0 --43.20,4.80,11.39,0.00,1.00,33.60,4.80,0 --48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0 --52.80,9.60,11.43,0.00,1.00,43.20,4.80,0 --57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0 --62.40,9.60,11.47,0.00,1.00,52.80,4.80,0 --67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0 --72.00,9.60,11.51,0.00,1.00,62.40,9.60,0 --76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0 --81.60,9.60,11.56,0.00,1.00,72.00,9.60,0 --86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0 --91.20,9.60,11.60,0.00,1.00,86.40,9.60,0 --96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0 --100.80,9.60,11.64,0.00,1.00,96.00,9.60,0 --105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0 --110.40,9.60,11.68,0.00,1.00,110.40,9.60,0 --115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0 --120.00,9.60,11.73,0.00,1.00,120.00,9.60,0 --124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0 --129.60,9.60,11.77,0.00,1.00,129.60,4.80,0 --134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0 --139.20,4.80,11.81,0.00,1.00,139.20,4.80,0 --144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0 --148.80,4.80,11.86,0.00,1.00,148.80,4.80,0 --153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0 --158.40,4.80,11.90,0.00,1.00,158.40,4.80,0 --163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0 --168.00,0.00,11.94,0.00,1.00,168.00,4.80,0 --172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0 -158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0 -148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0 -144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0 -139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0 -134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0 -129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0 -124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0 -120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0 -115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0 -110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0 -105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0 -100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0 -96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0 -91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0 -86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0 -81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0 -76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0 -72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0 -67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0 -62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0 -57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0 -43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0 -33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0 -28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0 -24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0 -19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,12.82,0.00,1.00,0.00,0.00,0 --9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0 --14.40,0.00,12.86,0.00,1.00,9.60,0.00,0 --19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0 --24.00,0.00,12.90,0.00,1.00,14.40,0.00,0 --28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0 --33.60,4.80,12.95,0.00,1.00,24.00,0.00,0 --38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0 --43.20,4.80,12.99,0.00,1.00,28.80,0.00,0 --48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0 --52.80,4.80,13.03,0.00,1.00,38.40,4.80,0 --57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0 --62.40,4.80,13.07,0.00,1.00,48.00,4.80,0 --67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0 --72.00,4.80,13.12,0.00,1.00,62.40,4.80,0 --76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0 --81.60,4.80,13.16,0.00,1.00,72.00,4.80,0 --86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0 --91.20,4.80,13.20,0.00,1.00,86.40,4.80,0 --96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0 --100.80,4.80,13.24,0.00,1.00,96.00,4.80,0 --105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0 --110.40,4.80,13.29,0.00,1.00,110.40,4.80,0 --115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0 --120.00,4.80,13.33,0.00,1.00,120.00,4.80,0 --124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0 --129.60,4.80,13.37,0.00,1.00,134.40,4.80,0 --134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0 --139.20,4.80,13.42,0.00,1.00,144.00,4.80,0 --144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0 --148.80,4.80,13.46,0.00,1.00,153.60,0.00,0 --153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0 --158.40,0.00,13.50,0.00,1.00,158.40,0.00,0 --163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0 --168.00,0.00,13.54,0.00,1.00,168.00,0.00,0 --172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0 -163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0 -158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0 -153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0 -148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0 -144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0 -139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0 -134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0 -129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0 -124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0 -120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0 -115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0 -110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0 -105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0 -100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0 -96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0 -91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0 -86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0 -81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0 -76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0 -72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0 -67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0 -57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0 -52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0 -43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0 -33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0 -28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0 -24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0 -19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0 -14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0 -9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,14.42,0.00,1.00,0.00,0.00,0 --9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0 --14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0 --19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0 --24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0 --28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0 --33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0 --38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0 --43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0 --48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0 --52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0 --57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0 --62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0 --67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0 --72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0 --76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0 --81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0 --86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0 --91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0 --96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0 --100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0 --105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0 --110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0 --115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0 --120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0 --124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0 --129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0 --134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0 --139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0 --144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0 --148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0 --153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0 --158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0 --163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0 --168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0 --172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0 -177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0 -172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0 -168.00,0.00,15.25,0.00,1.00,4.80,0.00,0 -163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0 -158.40,0.00,15.30,0.00,1.00,9.60,0.00,0 -153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0 -148.80,0.00,15.34,0.00,1.00,19.20,0.00,0 -144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0 -139.20,0.00,15.38,0.00,1.00,28.80,0.00,0 -134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0 -129.60,0.00,15.42,0.00,1.00,33.60,0.00,0 -124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0 -120.00,0.00,15.47,0.00,1.00,43.20,0.00,0 -115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0 -110.40,0.00,15.51,0.00,1.00,57.60,0.00,0 -105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0 -100.80,0.00,15.55,0.00,1.00,67.20,0.00,0 -96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0 -91.20,0.00,15.59,0.00,1.00,81.60,0.00,0 -86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0 -81.60,0.00,15.64,0.00,1.00,96.00,0.00,0 -76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0 -72.00,0.00,15.68,0.00,1.00,110.40,0.00,0 -67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0 -62.40,0.00,15.72,0.00,1.00,120.00,0.00,0 -57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0 -52.80,0.00,15.77,0.00,1.00,134.40,0.00,0 -48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0 -43.20,0.00,15.81,0.00,1.00,144.00,0.00,0 -38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0 -33.60,0.00,15.85,0.00,1.00,153.60,0.00,0 -28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0 -24.00,0.00,15.89,0.00,1.00,158.40,0.00,0 -19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0 -14.40,0.00,15.94,0.00,1.00,168.00,0.00,0 -9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0 -4.80,0.00,15.98,0.00,1.00,172.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 diff --git a/scripts/testv/stvOMASA_3ISM_2MASA1TC32c_ISM3.csv b/scripts/testv/stvOMASA_3ISM_2MASA1TC32c_ISM3.csv deleted file mode 100644 index 14eee9b693b536fa2fd22d2813d7f588b8930b06..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_2MASA1TC32c_ISM3.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0 --177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0 -4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0 --168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0 -14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0 --163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0 -19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0 --153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0 -28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0 --148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0 -38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0 --139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0 -48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0 --124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0 -57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0 --115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0 -72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0 --100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0 -86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0 --86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0 -100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0 --76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0 -110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0 --62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0 -124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0 --52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0 -134.40,33.60,0.28,0.00,1.00,177.60,0.00,0 --38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0 -144.00,28.80,0.30,0.00,1.00,177.60,0.00,0 --33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0 -153.60,24.00,0.32,0.00,1.00,177.60,0.00,0 --24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0 -158.40,19.20,0.34,0.00,1.00,177.60,0.00,0 --14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0 -168.00,9.60,0.36,0.00,1.00,177.60,0.00,0 --9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0 -172.80,4.80,0.38,0.00,1.00,177.60,0.00,0 --0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0 --177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0 -4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0 -14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0 -19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0 --158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0 -28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0 --148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0 -33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0 --139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0 -43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0 --129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0 -57.60,38.40,15.47,0.00,1.00,177.60,0.00,0 --120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0 -67.20,43.20,15.44,0.00,1.00,177.60,0.00,0 --105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0 -81.60,43.20,15.42,0.00,1.00,177.60,0.00,0 --91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0 -96.00,43.20,15.40,0.00,1.00,0.00,0.00,0 --76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0 -110.40,43.20,15.38,0.00,1.00,0.00,0.00,0 --67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0 -120.00,38.40,15.36,0.00,1.00,0.00,0.00,0 --52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0 -129.60,38.40,15.34,0.00,1.00,0.00,0.00,0 --43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0 -144.00,33.60,15.32,0.00,1.00,0.00,0.00,0 --33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0 -148.80,24.00,15.30,0.00,1.00,0.00,0.00,0 --24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0 -158.40,19.20,15.27,0.00,1.00,0.00,0.00,0 --19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0 -168.00,14.40,15.25,0.00,1.00,0.00,0.00,0 --9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0 -172.80,4.80,15.23,0.00,1.00,0.00,0.00,0 --4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0 -0.00,0.00,15.21,0.00,1.00,0.00,0.00,0 --177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0 -9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0 -14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0 --163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0 -24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0 --153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0 -28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0 --144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0 -38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0 --134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0 -48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0 --124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0 -62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0 --115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0 -72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0 --100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0 -86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0 --86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0 -96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0 --76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0 -110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0 --62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0 -120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0 --52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0 -134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0 --43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0 -144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0 --33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0 -148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0 --24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0 -158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0 --19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0 -168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0 --9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0 -172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0 -4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0 -14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0 -19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0 --153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0 -28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0 --148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0 -38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0 --139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0 -48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0 --124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0 -57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0 --115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0 -72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0 --105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0 -81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0 --91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0 -96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0 --76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0 -105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0 --67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0 -120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0 --57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0 -129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0 --43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0 -139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0 --33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0 -148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0 --28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0 -158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0 --19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0 -163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0 --9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0 -172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0 -0.00,0.00,1.60,0.00,1.00,0.00,0.00,0 --177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0 -9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0 -14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0 --158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0 -24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0 --153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0 -33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0 --144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0 -43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0 --134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0 -52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0 --124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0 -62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0 --110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0 -72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0 --100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0 -86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0 --86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0 -96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0 --76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0 -110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0 --67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0 -120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0 --52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0 -129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0 --43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0 -139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0 --33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0 -148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0 --24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0 -158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0 --19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0 -168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0 -172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0 -4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0 -14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0 --163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0 -24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0 --153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0 -28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0 --144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0 -38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0 --134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0 -48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0 --124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0 -62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0 --115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0 -72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0 --100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0 -81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0 --91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0 -96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0 --81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0 -105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0 --67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0 -115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0 --57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0 -129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0 --48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0 -139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0 --38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0 -148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0 --28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0 -153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0 --19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0 -163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0 --9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0 -172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0 -0.00,0.00,13.61,0.00,1.00,0.00,0.00,0 --177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0 -9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0 --168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0 -24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0 --148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0 -33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0 --139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0 -43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0 --129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0 -52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0 --120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0 -62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0 --110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0 -76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0 --100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0 -86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0 --86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0 -96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0 --76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0 -105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0 --67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0 -120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0 --57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0 -129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0 --48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0 -139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0 --38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0 -148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0 -158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0 --19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0 -163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0 -172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0 -4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0 -14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0 --163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0 -24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0 --153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0 -33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0 --144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0 -43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0 --134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0 -52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0 --124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0 -62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0 --115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0 -72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0 --100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0 -81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0 --91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0 -96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0 --81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0 -105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0 --67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0 -115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0 --57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0 -124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0 --48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0 -134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0 --38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0 -144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0 --28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0 -153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0 --19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0 -163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0 --14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0 -172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0 --4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0 -0.00,0.00,3.20,0.00,1.00,0.00,0.00,0 --177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0 -9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0 -19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0 -24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0 --148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0 -33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0 --139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0 -43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0 --129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0 -52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0 --120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0 -67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0 --110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0 -76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0 --100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0 -86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0 --86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0 -96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0 --76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0 -105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0 --67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0 -115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0 --57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0 -129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0 --48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0 -139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0 --38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0 -148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0 -153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0 --19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0 -163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0 -172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0 -4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0 -14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0 -24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0 --153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0 -33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0 --144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0 -43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0 --134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0 -52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0 --124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0 -62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0 --110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0 -72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0 --100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0 -81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0 --91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0 -96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0 --81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0 -105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0 --72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0 -115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0 --57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0 -124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0 --48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0 -134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0 --38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0 -144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0 --28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0 -153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0 --24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0 -163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0 --14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0 -172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -0.00,0.00,12.01,0.00,1.00,0.00,0.00,0 --177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0 -9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0 --158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0 -28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0 --148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0 -38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0 --139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0 -48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0 --129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0 -57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0 --120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0 -67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0 --110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0 -76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0 --100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0 -86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0 --86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0 -96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0 --76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0 -105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0 --67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0 -115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0 --57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0 -124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0 --48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0 -134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0 --38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0 -144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0 --28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0 -153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0 --19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0 -163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0 -172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0 -4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0 -14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0 -24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0 --148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0 -33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0 --139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0 -43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0 --129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0 -52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0 --120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0 -62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0 --110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0 -72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0 --100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0 -81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0 --91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0 -96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0 --81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0 -105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0 --72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0 -115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0 --62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0 -124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0 --52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0 -134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0 --43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0 -144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0 --33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0 -153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0 --24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0 -163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0 -172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0 -0.00,0.00,4.81,0.00,1.00,0.00,0.00,0 --177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0 -9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0 -19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0 -28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0 --148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0 -38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0 --139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0 -48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0 --129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0 -57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0 --120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0 -67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0 --110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0 -76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0 --100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0 -86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0 --86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0 -96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0 --76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0 -105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0 --67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0 -115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0 --57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0 -124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0 --48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0 -134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0 --38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0 -144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0 --28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0 -153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0 --19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0 -163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0 --9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0 -172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0 -4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0 -14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0 -24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0 --148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0 -33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0 --139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0 -43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0 --129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0 -52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0 --120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0 -62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0 --110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0 -72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0 --100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0 -81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0 --91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0 -96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0 --81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0 -105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0 --72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0 -115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0 --62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0 -124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0 --52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0 -134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0 --43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0 -144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0 --33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0 -153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0 --24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0 -163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0 -172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -0.00,0.00,10.40,0.00,1.00,0.00,0.00,0 --177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0 -9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0 -19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0 -28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0 --148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0 -38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0 --139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0 -48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0 --129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0 -57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0 --120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0 -67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0 --110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0 -76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0 --100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0 -86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0 --86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0 -96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0 --76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0 -105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0 --67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0 -115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0 --57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0 -124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0 --48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0 -134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0 --38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0 -144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0 --28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0 -153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0 -163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0 --9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0 -172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0 -4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0 -14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0 -24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0 -33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0 --139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0 -43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0 --129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0 -52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0 --120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0 -62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0 --110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0 -72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0 --100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0 -81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0 --91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0 -96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0 --81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0 -105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0 --72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0 -115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0 --62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0 -124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0 --52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0 -134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0 --43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0 -144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0 --33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0 -153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0 --24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0 -163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0 -172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,6.41,0.00,1.00,0.00,0.00,0 --177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0 -9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0 -19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0 --158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0 -28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0 --148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0 -38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0 --139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0 -48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0 --129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0 -57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0 --120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0 -67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0 --110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0 -76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0 --100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0 -86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0 --86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0 -96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0 --76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0 -105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0 --67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0 -115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0 --57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0 -124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0 --48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0 -134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0 --38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0 -144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0 --28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0 -153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0 -163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0 -172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0 -4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0 -14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0 --158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0 -24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0 -33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0 --139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0 -43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0 --129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0 -52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0 --120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0 -62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0 --110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0 -72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0 --100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0 -81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0 --91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0 -96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0 --81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0 -105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0 --72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0 -115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0 --62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0 -124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0 --52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0 -134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0 --43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0 -144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0 --33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0 -153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0 --24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0 -163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0 --14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0 -172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.80,0.00,1.00,0.00,0.00,0 --177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0 -9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0 -19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0 --158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0 -28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0 --148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0 -38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0 --139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0 -48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0 --129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0 -57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0 --120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0 -67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0 --110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0 -76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0 --100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0 -86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0 --86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0 -96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0 --76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0 -105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0 --67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0 -115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0 --57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0 -124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0 --48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0 -134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0 --38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0 -144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0 --28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0 -153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0 --19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0 -163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0 -172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0 --0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0 -4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0 --168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0 -14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0 --158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0 -24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0 --148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0 -33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0 --139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0 -43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0 --129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0 -52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0 --120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0 -62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0 --110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0 -72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0 --100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0 -81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0 --91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0 -96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0 --81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0 -105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0 --72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0 -115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0 --62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0 -124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0 --52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0 -134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0 --43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0 -144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0 --33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0 -153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0 --24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0 -163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0 --14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0 -172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.01,0.00,1.00,0.00,0.00,0 --177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0 --168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0 -19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0 --158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0 -28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0 --148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0 -38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0 --139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0 -48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0 --129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0 -57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0 --120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0 -67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0 --110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0 -76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0 --100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0 -86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0 --86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0 -96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0 --76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0 -105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0 --67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0 -115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0 --57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0 -124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0 --48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0 -134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0 --38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0 -144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0 --28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0 -153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0 --19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0 -163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0 --9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0 -172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0 --0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0 --168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0 -14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0 --158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0 -24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0 --148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0 -33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0 --139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0 -43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0 --129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0 -52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0 --120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0 -62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0 --110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0 -72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0 --100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0 -81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0 --91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0 -96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0 --81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0 -105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0 --72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0 -115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0 --62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0 -124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0 --52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0 -134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0 --43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0 -144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0 --33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0 -153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0 --24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0 -163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0 --14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0 --4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0 -0.00,0.00,7.20,0.00,1.00,0.00,0.00,0 --177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0 --168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0 -19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0 --158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0 --148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0 -38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0 --139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0 -48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0 --129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0 -57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0 --120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0 -67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0 --110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0 -76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0 --100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0 -86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0 --86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0 -96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0 --76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0 -105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0 --67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0 -115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0 --57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0 -124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0 --48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0 -134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0 --38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0 -144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0 --28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0 --19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0 -163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0 --9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0 --0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0 --168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0 -14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0 --158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0 --148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0 -33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0 --139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0 -43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0 --129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0 -52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0 --120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0 -62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0 --110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0 -72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0 --100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0 -81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0 --91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0 -96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0 --81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0 -105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0 --72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0 -115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0 --62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0 -124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0 --52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0 -134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0 --43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0 -144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0 --33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0 -153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0 --24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0 --14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0 --4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0 -0.00,0.00,9.61,0.00,1.00,0.00,0.00,0 --177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0 --168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0 --158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0 --148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0 --139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0 -48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0 --129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0 -57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0 --120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0 -67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0 --110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0 -76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0 --100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0 -86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0 --86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0 -96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0 --76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0 -105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0 --67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0 -115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0 --57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0 -124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0 --48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0 -134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0 --38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0 --28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0 --19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0 -163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0 --9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0 --0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0 --168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0 --158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0 --148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0 -33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0 --139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0 -43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0 --129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0 -52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0 --120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0 -62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0 --110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0 -72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0 --100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0 -81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0 --91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0 -96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0 --81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0 -105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0 --72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0 -115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0 --62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0 -124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0 --52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0 -134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0 --43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0 -144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0 --33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0 -153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0 --24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0 --14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0 -172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0 --4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0 -0.00,0.00,5.60,0.00,1.00,0.00,0.00,0 --177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0 --168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0 --158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0 -28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0 --148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0 --139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0 -48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0 --129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0 -57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0 --120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0 -67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0 --110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0 -76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0 --100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0 -86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0 --86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0 -96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0 --76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0 -105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0 --67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0 -115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0 --57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0 -124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0 --48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0 -134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0 --38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0 --28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0 -153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0 --19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0 --9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0 --0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0 --168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0 --158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0 --148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0 -33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0 --139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0 -43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0 --129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0 -52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0 --120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0 -62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0 --110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0 -72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0 --100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0 -81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0 --91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0 -96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0 --81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0 -105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0 --72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0 -115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0 --62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0 -124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0 --52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0 -134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0 --43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0 -144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0 --33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0 -153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0 --24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0 --14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0 --4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0 -0.00,0.00,11.21,0.00,1.00,0.00,0.00,0 --177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0 --168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0 --158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0 -28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0 --148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0 -38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0 --139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0 -48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0 --129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0 -57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0 --120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0 -67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0 --110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0 -76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0 --100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0 -86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0 --86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0 -96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0 --76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0 -105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0 --67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0 -115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0 --57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0 -124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0 --48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0 -134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0 --38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0 -144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0 --28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0 -153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0 --19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0 --9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0 --0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0 --168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0 --158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0 --148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0 --139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0 -43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0 --129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0 -52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0 --120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0 -62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0 --110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0 -72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0 --100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0 -81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0 --91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0 -96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0 --81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0 -105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0 --72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0 -115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0 --62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0 -124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0 --52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0 -134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0 --43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0 --33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0 -153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0 --24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0 -163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0 --14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0 --4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,3.99,0.00,1.00,0.00,0.00,0 --177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0 --168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0 -19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0 --158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0 --148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0 -33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0 --139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0 -43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0 --129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0 -52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0 --120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0 -62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0 --110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0 -76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0 --100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0 -86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0 --86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0 -96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0 --76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0 -105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0 --67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0 -120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0 --57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0 --48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0 -139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0 --38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0 -148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0 --28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0 -158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0 --19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0 -163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0 --9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0 --0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0 --168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0 --158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0 --153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0 --144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0 -43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0 --134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0 --124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0 -62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0 --110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0 -72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0 --100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0 -81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0 --91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0 -96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0 --81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0 -105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0 --72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0 -115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0 --57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0 -124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0 --48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0 -134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0 --38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0 --28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0 --24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0 --14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0 --4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,12.82,0.00,1.00,0.00,0.00,0 --177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0 --168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0 --158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0 --148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0 -33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0 --139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0 --129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0 --120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0 -62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0 --110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0 -76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0 --100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0 -86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0 --86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0 -96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0 --76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0 -110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0 --67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0 -120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0 --57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0 --48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0 --38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0 --28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0 --19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0 --9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0 --0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0 --168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0 --163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0 --153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0 -33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0 --144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0 -43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0 --134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0 --124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0 -62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0 --115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0 -72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0 --100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0 -81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0 --91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0 -96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0 --81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0 -105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0 --67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0 -115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0 --57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0 -124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0 --48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0 -134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0 --38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0 -144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0 --28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0 --19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0 --14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0 --4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,2.39,0.00,1.00,0.00,0.00,0 --177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0 --168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0 --158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0 --153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0 -33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0 --144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0 --134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0 --124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0 -62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0 --110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0 -72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0 --100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0 -86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0 --86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0 -96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0 --76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0 -110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0 --67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0 -120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0 --52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0 -129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0 --43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0 --33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0 --24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0 --19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0 --9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0 --0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0 --168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0 --163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0 --153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0 -28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0 --144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0 -38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0 --134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0 -48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0 --124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0 -57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0 --115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0 -72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0 --105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0 -81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0 --91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0 -96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0 --81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0 -105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0 --67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0 -120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0 --57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0 -129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0 --48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0 -139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0 --38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0 --28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0 -158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0 --19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0 --9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0 --4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0 -0.00,0.00,14.42,0.00,1.00,0.00,0.00,0 --177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0 --168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0 --163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0 -24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0 --153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0 -28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0 --144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0 -38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0 --134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0 -48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0 --124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0 -62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0 --115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0 -72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0 --100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0 -86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0 --86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0 -96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0 --76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0 -110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0 --62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0 -120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0 --52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0 -134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0 --43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0 --33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0 --24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0 -158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0 --14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0 --9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0 --0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0 --172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0 --163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0 --153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0 --148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0 -38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0 --139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0 -48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0 --129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0 --115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0 -67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0 --105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0 -81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0 --91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0 -96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0 --76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0 -105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0 --67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0 -120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0 --52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0 -129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0 --43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0 -139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0 --33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0 --28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0 --19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0 -163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0 --9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0 --4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0 -0.00,0.00,0.79,0.00,1.00,0.00,0.00,0 --177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0 -4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0 --168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0 --163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0 -19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0 --153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0 -28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0 --148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0 -38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0 --139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0 -48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0 --124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0 -57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0 --115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0 -72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0 --100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0 -86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0 --86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0 -100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0 --76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0 -110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0 --62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0 -124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0 --48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0 -134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0 --38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0 --28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0 --24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0 -163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0 --14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0 -168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0 --9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0 --0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0 --177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0 --172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0 -9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0 --163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0 --158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0 --148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0 -33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0 --139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0 -43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0 --129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0 --120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0 -67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0 --105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0 -81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0 --91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0 -96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0 --76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0 -110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0 --67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0 -120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0 --52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0 -134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0 --43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0 -144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0 --33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0 -153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0 --24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0 --19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0 -168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0 --9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0 --4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0 diff --git a/scripts/testv/stvOMASA_3ISM_2MASA2TC16c.met b/scripts/testv/stvOMASA_3ISM_2MASA2TC16c.met deleted file mode 100644 index 1b62022af572fc4f198e4212cca88d51913ec3c4..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_2MASA2TC16c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2eb412d646d7a32c77413dea54dc44cf45dc49e6d8c2de19abe4f4b93a91fa4a -size 159900 diff --git a/scripts/testv/stvOMASA_3ISM_2MASA2TC16c.wav b/scripts/testv/stvOMASA_3ISM_2MASA2TC16c.wav deleted file mode 100644 index 51bafc78b39e84bb65a7335c441b9c67764908a5..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_2MASA2TC16c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a84cb8f1810eec20874e28aa0530e289d7ce10f7360b70283680fd4324604511 -size 480080 diff --git a/scripts/testv/stvOMASA_3ISM_2MASA2TC16c_ISM1.csv b/scripts/testv/stvOMASA_3ISM_2MASA2TC16c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_2MASA2TC16c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_3ISM_2MASA2TC16c_ISM2.csv b/scripts/testv/stvOMASA_3ISM_2MASA2TC16c_ISM2.csv deleted file mode 100644 index f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_2MASA2TC16c_ISM2.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,4.80,16.00,0.00,1.00,0.00,0.00,0 -0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0 -0.00,14.40,15.96,0.00,1.00,4.80,9.60,0 -0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0 -0.00,24.00,15.91,0.00,1.00,14.40,19.20,0 -0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0 -0.00,33.60,15.87,0.00,1.00,19.20,28.80,0 -0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0 -0.00,43.20,15.83,0.00,1.00,28.80,38.40,0 -0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0 -0.00,52.80,15.79,0.00,1.00,38.40,48.00,0 -0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0 -0.00,62.40,15.74,0.00,1.00,48.00,57.60,0 -4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0 -4.80,72.00,15.70,0.00,1.00,57.60,67.20,0 -4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0 -9.60,81.60,15.66,0.00,1.00,72.00,76.80,0 -19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0 -134.40,86.40,15.62,0.00,1.00,86.40,86.40,0 -168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0 -172.80,76.80,15.57,0.00,1.00,100.80,86.40,0 -177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0 -177.60,67.20,15.53,0.00,1.00,110.40,76.80,0 -177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0 -177.60,57.60,15.49,0.00,1.00,124.80,67.20,0 -177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0 -177.60,48.00,15.44,0.00,1.00,134.40,57.60,0 -177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0 -177.60,38.40,15.40,0.00,1.00,144.00,48.00,0 -177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0 -177.60,28.80,15.36,0.00,1.00,153.60,38.40,0 -177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0 -177.60,19.20,15.32,0.00,1.00,158.40,28.80,0 -177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0 -177.60,9.60,15.27,0.00,1.00,168.00,19.20,0 -177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0 -177.60,0.00,15.23,0.00,1.00,172.80,9.60,0 --177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0 --177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0 --177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0 --177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0 --177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0 --177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0 --177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0 --177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0 --177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0 --177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0 --177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0 --177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0 --177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0 --177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0 --177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0 --177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0 --172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0 --168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0 --134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0 --19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0 --9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0 --4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0 --4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0 --4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0 --0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0 --0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0 --0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0 --0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0 --0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0 --0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0 --0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0 --0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0 --0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0 --0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0 --0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0 --0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0 --0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0 --0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,14.40,0.00,1.00,0.00,0.00,0 --0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0 --0.00,14.40,14.36,0.00,1.00,9.60,9.60,0 --0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0 --0.00,24.00,14.31,0.00,1.00,14.40,19.20,0 --0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0 --0.00,33.60,14.27,0.00,1.00,24.00,28.80,0 --4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0 --4.80,43.20,14.23,0.00,1.00,28.80,38.40,0 --4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0 --4.80,52.80,14.18,0.00,1.00,38.40,48.00,0 --4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0 --4.80,62.40,14.14,0.00,1.00,48.00,57.60,0 --9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0 --9.60,72.00,14.10,0.00,1.00,62.40,67.20,0 --14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0 --24.00,81.60,14.06,0.00,1.00,72.00,76.80,0 --43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0 --110.40,86.40,14.01,0.00,1.00,86.40,86.40,0 --148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0 --163.20,76.80,13.97,0.00,1.00,96.00,81.60,0 --168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0 --172.80,67.20,13.93,0.00,1.00,110.40,72.00,0 --172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0 --172.80,57.60,13.89,0.00,1.00,120.00,62.40,0 --172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0 --177.60,48.00,13.84,0.00,1.00,134.40,52.80,0 --177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0 --177.60,38.40,13.80,0.00,1.00,144.00,43.20,0 --177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0 --177.60,28.80,13.76,0.00,1.00,148.80,33.60,0 --177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0 --177.60,19.20,13.71,0.00,1.00,158.40,24.00,0 --177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0 --177.60,9.60,13.67,0.00,1.00,168.00,14.40,0 --177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0 --177.60,0.00,13.63,0.00,1.00,172.80,4.80,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0 -177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0 -177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0 -177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0 -177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0 -177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0 -177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0 -172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0 -172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0 -172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0 -172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0 -168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0 -163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0 -148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0 -110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0 -43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0 -24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0 -14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0 -9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0 -9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0 -4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0 -4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0 -4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0 -4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0 -4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0 -0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0 -0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0 -0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0 -0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0 -0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,12.80,0.00,1.00,0.00,0.00,0 --0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0 --0.00,14.40,12.75,0.00,1.00,9.60,9.60,0 --4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0 --4.80,24.00,12.71,0.00,1.00,14.40,19.20,0 --4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0 --4.80,33.60,12.67,0.00,1.00,24.00,28.80,0 --4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0 --9.60,43.20,12.62,0.00,1.00,33.60,38.40,0 --9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0 --9.60,52.80,12.58,0.00,1.00,43.20,48.00,0 --14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0 --14.40,62.40,12.54,0.00,1.00,52.80,57.60,0 --19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0 --24.00,72.00,12.50,0.00,1.00,62.40,67.20,0 --33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0 --43.20,76.80,12.45,0.00,1.00,72.00,72.00,0 --67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0 --96.00,81.60,12.41,0.00,1.00,86.40,81.60,0 --124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0 --144.00,76.80,12.37,0.00,1.00,96.00,76.80,0 --153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0 --158.40,67.20,12.33,0.00,1.00,110.40,72.00,0 --163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0 --168.00,57.60,12.28,0.00,1.00,120.00,62.40,0 --168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0 --168.00,48.00,12.24,0.00,1.00,129.60,52.80,0 --172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0 --172.80,38.40,12.20,0.00,1.00,139.20,43.20,0 --172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0 --172.80,28.80,12.15,0.00,1.00,148.80,33.60,0 --177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0 --177.60,19.20,12.11,0.00,1.00,158.40,24.00,0 --177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0 --177.60,9.60,12.07,0.00,1.00,168.00,14.40,0 --177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0 --177.60,0.00,12.03,0.00,1.00,172.80,4.80,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0 -177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0 -172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0 -172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0 -168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0 -168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0 -168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0 -163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0 -158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0 -153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0 -144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0 -124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0 -96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0 -67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0 -43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0 -33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0 -24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0 -19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0 -14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0 -14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0 -9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0 -9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0 -9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0 -4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0 -4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0 -0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,11.19,0.00,1.00,0.00,0.00,0 --0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0 --4.80,14.40,11.15,0.00,1.00,9.60,9.60,0 --4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0 --4.80,24.00,11.11,0.00,1.00,14.40,19.20,0 --4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0 --9.60,33.60,11.07,0.00,1.00,24.00,28.80,0 --9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0 --14.40,43.20,11.02,0.00,1.00,33.60,38.40,0 --14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0 --14.40,52.80,10.98,0.00,1.00,43.20,48.00,0 --19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0 --24.00,57.60,10.94,0.00,1.00,52.80,52.80,0 --28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0 --33.60,67.20,10.89,0.00,1.00,62.40,62.40,0 --43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0 --57.60,72.00,10.85,0.00,1.00,76.80,72.00,0 --76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0 --96.00,76.80,10.81,0.00,1.00,86.40,76.80,0 --115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0 --129.60,72.00,10.77,0.00,1.00,96.00,76.80,0 --139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0 --148.80,67.20,10.72,0.00,1.00,105.60,67.20,0 --153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0 --158.40,57.60,10.68,0.00,1.00,120.00,62.40,0 --163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0 --163.20,48.00,10.64,0.00,1.00,129.60,52.80,0 --168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0 --168.00,38.40,10.60,0.00,1.00,139.20,43.20,0 --172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0 --172.80,28.80,10.55,0.00,1.00,148.80,33.60,0 --172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0 --172.80,19.20,10.51,0.00,1.00,158.40,24.00,0 --177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0 --177.60,9.60,10.47,0.00,1.00,163.20,14.40,0 --177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0 --177.60,0.00,10.42,0.00,1.00,172.80,4.80,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0 -168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0 -168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0 -163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0 -163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0 -158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0 -153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0 -148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0 -139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0 -129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0 -115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0 -96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0 -76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0 -57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0 -43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0 -33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0 -28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0 -24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0 -19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0 -14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0 -14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0 -14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0 -9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0 -9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0 -4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0 -4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0 -0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,9.59,0.00,1.00,0.00,0.00,0 --4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0 --4.80,14.40,9.55,0.00,1.00,9.60,9.60,0 --4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0 --9.60,24.00,9.51,0.00,1.00,19.20,19.20,0 --9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0 --9.60,33.60,9.46,0.00,1.00,24.00,28.80,0 --14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0 --14.40,38.40,9.42,0.00,1.00,33.60,33.60,0 --19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0 --24.00,48.00,9.38,0.00,1.00,43.20,43.20,0 --24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0 --28.80,57.60,9.34,0.00,1.00,52.80,52.80,0 --38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0 --43.20,62.40,9.29,0.00,1.00,67.20,62.40,0 --52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0 --62.40,72.00,9.25,0.00,1.00,76.80,67.20,0 --76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0 --96.00,72.00,9.21,0.00,1.00,86.40,72.00,0 --110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0 --120.00,67.20,9.16,0.00,1.00,96.00,72.00,0 --134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0 --139.20,62.40,9.12,0.00,1.00,105.60,67.20,0 --148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0 --153.60,57.60,9.08,0.00,1.00,115.20,57.60,0 --158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0 --158.40,48.00,9.04,0.00,1.00,129.60,52.80,0 --163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0 --163.20,38.40,8.99,0.00,1.00,139.20,43.20,0 --168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0 --168.00,28.80,8.95,0.00,1.00,148.80,33.60,0 --172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0 --172.80,19.20,8.91,0.00,1.00,153.60,24.00,0 --172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0 --177.60,9.60,8.87,0.00,1.00,163.20,14.40,0 --177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0 --177.60,0.00,8.82,0.00,1.00,172.80,4.80,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0 -168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0 -163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0 -163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0 -158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0 -158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0 -153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0 -148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0 -139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0 -134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0 -120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0 -110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0 -96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0 -76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0 -62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0 -52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0 -43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0 -38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0 -28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0 -24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0 -24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0 -19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0 -14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0 -14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0 -9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0 -9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0 -9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0 -0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,7.99,0.00,1.00,0.00,0.00,0 --4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0 --4.80,14.40,7.95,0.00,1.00,9.60,9.60,0 --9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0 --9.60,24.00,7.90,0.00,1.00,19.20,19.20,0 --14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0 --14.40,28.80,7.86,0.00,1.00,28.80,24.00,0 --19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0 --19.20,38.40,7.82,0.00,1.00,38.40,33.60,0 --24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0 --28.80,48.00,7.78,0.00,1.00,48.00,43.20,0 --33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0 --38.40,52.80,7.73,0.00,1.00,57.60,52.80,0 --43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0 --48.00,62.40,7.69,0.00,1.00,67.20,57.60,0 --57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0 --67.20,67.20,7.65,0.00,1.00,76.80,62.40,0 --81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0 --91.20,67.20,7.60,0.00,1.00,86.40,67.20,0 --105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0 --115.20,67.20,7.56,0.00,1.00,96.00,67.20,0 --124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0 --134.40,57.60,7.52,0.00,1.00,105.60,62.40,0 --139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0 --144.00,52.80,7.48,0.00,1.00,115.20,57.60,0 --148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0 --153.60,43.20,7.43,0.00,1.00,124.80,48.00,0 --158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0 --163.20,38.40,7.39,0.00,1.00,134.40,38.40,0 --163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0 --168.00,28.80,7.35,0.00,1.00,144.00,33.60,0 --168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0 --172.80,19.20,7.31,0.00,1.00,153.60,24.00,0 --172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0 --177.60,9.60,7.26,0.00,1.00,163.20,14.40,0 --177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0 --177.60,0.00,7.22,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0 -163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0 -158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0 -153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0 -148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0 -144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0 -139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0 -134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0 -124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0 -115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0 -105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0 -91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0 -81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0 -67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0 -57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0 -48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0 -43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0 -38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0 -33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0 -28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0 -24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0 -19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0 -19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0 -14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0 -9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0 -0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,6.39,0.00,1.00,0.00,0.00,0 --4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0 --4.80,14.40,6.34,0.00,1.00,9.60,9.60,0 --9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0 --9.60,19.20,6.30,0.00,1.00,19.20,14.40,0 --14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0 --19.20,28.80,6.26,0.00,1.00,28.80,24.00,0 --19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0 --24.00,38.40,6.22,0.00,1.00,38.40,33.60,0 --28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0 --33.60,43.20,6.17,0.00,1.00,48.00,38.40,0 --38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0 --43.20,52.80,6.13,0.00,1.00,57.60,48.00,0 --48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0 --52.80,57.60,6.09,0.00,1.00,67.20,52.80,0 --62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0 --72.00,62.40,6.05,0.00,1.00,76.80,57.60,0 --81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0 --91.20,62.40,6.00,0.00,1.00,86.40,62.40,0 --100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0 --110.40,62.40,5.96,0.00,1.00,96.00,62.40,0 --120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0 --129.60,57.60,5.92,0.00,1.00,105.60,57.60,0 --134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0 --139.20,48.00,5.87,0.00,1.00,115.20,52.80,0 --144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0 --148.80,43.20,5.83,0.00,1.00,124.80,48.00,0 --153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0 --158.40,33.60,5.79,0.00,1.00,134.40,38.40,0 --163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0 --163.20,28.80,5.75,0.00,1.00,144.00,28.80,0 --168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0 --168.00,19.20,5.70,0.00,1.00,153.60,24.00,0 --172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0 --172.80,9.60,5.66,0.00,1.00,163.20,14.40,0 --177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0 --177.60,0.00,5.62,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0 -163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0 -158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0 -148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0 -144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0 -139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0 -134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0 -129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0 -120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0 -110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0 -100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0 -91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0 -81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0 -72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0 -62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0 -52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0 -48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0 -43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0 -38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0 -33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0 -28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0 -24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0 -19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0 -19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0 -9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0 -4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0 -0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,4.79,0.00,1.00,0.00,0.00,0 --4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0 --9.60,14.40,4.74,0.00,1.00,9.60,9.60,0 --9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0 --14.40,19.20,4.70,0.00,1.00,19.20,14.40,0 --14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0 --19.20,28.80,4.66,0.00,1.00,28.80,24.00,0 --24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0 --28.80,33.60,4.61,0.00,1.00,38.40,28.80,0 --28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0 --33.60,43.20,4.57,0.00,1.00,48.00,38.40,0 --38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0 --48.00,48.00,4.53,0.00,1.00,57.60,43.20,0 --52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0 --57.60,52.80,4.49,0.00,1.00,67.20,48.00,0 --67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0 --76.80,57.60,4.44,0.00,1.00,76.80,52.80,0 --81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0 --91.20,57.60,4.40,0.00,1.00,86.40,57.60,0 --100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0 --110.40,57.60,4.36,0.00,1.00,96.00,57.60,0 --115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0 --124.80,52.80,4.32,0.00,1.00,105.60,52.80,0 --129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0 --139.20,48.00,4.27,0.00,1.00,115.20,48.00,0 --144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0 --148.80,38.40,4.23,0.00,1.00,124.80,43.20,0 --153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0 --153.60,33.60,4.19,0.00,1.00,134.40,38.40,0 --158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0 --163.20,24.00,4.14,0.00,1.00,144.00,28.80,0 --163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0 --168.00,19.20,4.10,0.00,1.00,153.60,24.00,0 --172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0 --172.80,9.60,4.06,0.00,1.00,163.20,14.40,0 --177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0 --177.60,0.00,4.02,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0 -163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0 -163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0 -158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0 -148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0 -144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0 -139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0 -129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0 -124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0 -115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0 -110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0 -100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0 -91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0 -81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0 -76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0 -67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0 -57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0 -52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0 -48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0 -38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0 -33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0 -28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0 -28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0 -24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0 -19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0 -14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0 -14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0 -9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0 -0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.18,0.00,1.00,0.00,0.00,0 --4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0 --9.60,9.60,3.14,0.00,1.00,9.60,9.60,0 --9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0 --14.40,19.20,3.10,0.00,1.00,19.20,14.40,0 --19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0 --24.00,24.00,3.05,0.00,1.00,28.80,24.00,0 --24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0 --28.80,33.60,3.01,0.00,1.00,38.40,28.80,0 --33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0 --38.40,38.40,2.97,0.00,1.00,48.00,33.60,0 --43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0 --48.00,43.20,2.93,0.00,1.00,57.60,43.20,0 --52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0 --62.40,48.00,2.88,0.00,1.00,67.20,48.00,0 --67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0 --76.80,52.80,2.84,0.00,1.00,76.80,48.00,0 --86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0 --91.20,52.80,2.80,0.00,1.00,86.40,52.80,0 --100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0 --105.60,52.80,2.76,0.00,1.00,96.00,52.80,0 --115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0 --120.00,48.00,2.71,0.00,1.00,105.60,48.00,0 --129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0 --134.40,43.20,2.67,0.00,1.00,115.20,43.20,0 --139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0 --144.00,38.40,2.63,0.00,1.00,124.80,38.40,0 --148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0 --153.60,33.60,2.58,0.00,1.00,134.40,33.60,0 --158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0 --158.40,24.00,2.54,0.00,1.00,144.00,28.80,0 --163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0 --168.00,19.20,2.50,0.00,1.00,153.60,19.20,0 --168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.46,0.00,1.00,163.20,14.40,0 --177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.41,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0 -158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0 -148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0 -144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0 -139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0 -134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0 -129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0 -120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0 -115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0 -105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0 -100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0 -91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0 -86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0 -76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0 -67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0 -62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0 -52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0 -48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0 -43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0 -38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0 -33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0 -28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0 -24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0 -24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0 -19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0 -0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.58,0.00,1.00,0.00,0.00,0 --4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.54,0.00,1.00,9.60,4.80,0 --14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0 --14.40,19.20,1.50,0.00,1.00,19.20,14.40,0 --19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0 --24.00,24.00,1.45,0.00,1.00,28.80,19.20,0 --28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0 --33.60,28.80,1.41,0.00,1.00,38.40,28.80,0 --38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0 --43.20,38.40,1.37,0.00,1.00,48.00,33.60,0 --48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0 --52.80,43.20,1.32,0.00,1.00,57.60,38.40,0 --57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0 --62.40,43.20,1.28,0.00,1.00,67.20,43.20,0 --72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0 --76.80,48.00,1.24,0.00,1.00,76.80,43.20,0 --86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0 --91.20,48.00,1.20,0.00,1.00,86.40,48.00,0 --100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0 --105.60,48.00,1.15,0.00,1.00,96.00,48.00,0 --110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0 --120.00,43.20,1.11,0.00,1.00,105.60,43.20,0 --124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0 --129.60,38.40,1.07,0.00,1.00,115.20,43.20,0 --134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0 --139.20,33.60,1.03,0.00,1.00,124.80,38.40,0 --144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0 --148.80,28.80,0.98,0.00,1.00,134.40,33.60,0 --153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0 --158.40,24.00,0.94,0.00,1.00,144.00,24.00,0 --163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0 --163.20,14.40,0.90,0.00,1.00,153.60,19.20,0 --168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.85,0.00,1.00,163.20,14.40,0 --172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.81,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0 -148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0 -144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0 -139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0 -134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0 -129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0 -124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0 -120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0 -110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0 -105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0 -100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0 -91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0 -86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0 -76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0 -72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0 -62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0 -57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0 -52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0 -48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0 -43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0 -38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0 -28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0 -19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0 -0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,0.00,0.00,1.00,0.00,0.00,0 --4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0 --9.60,9.60,0.04,0.00,1.00,9.60,4.80,0 --14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0 --19.20,14.40,0.09,0.00,1.00,19.20,14.40,0 --24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0 --24.00,24.00,0.13,0.00,1.00,28.80,19.20,0 --28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0 --33.60,28.80,0.17,0.00,1.00,38.40,24.00,0 --38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0 --43.20,33.60,0.21,0.00,1.00,48.00,28.80,0 --48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0 --52.80,38.40,0.26,0.00,1.00,57.60,33.60,0 --62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0 --67.20,38.40,0.30,0.00,1.00,67.20,38.40,0 --72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0 --76.80,43.20,0.34,0.00,1.00,76.80,38.40,0 --86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0 --91.20,43.20,0.38,0.00,1.00,86.40,43.20,0 --96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0 --105.60,43.20,0.43,0.00,1.00,96.00,43.20,0 --110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0 --115.20,38.40,0.47,0.00,1.00,105.60,38.40,0 --124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0 --129.60,38.40,0.51,0.00,1.00,115.20,38.40,0 --134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0 --139.20,33.60,0.56,0.00,1.00,124.80,33.60,0 --144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0 --148.80,28.80,0.60,0.00,1.00,134.40,28.80,0 --153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0 --158.40,19.20,0.64,0.00,1.00,144.00,24.00,0 --158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0 --163.20,14.40,0.68,0.00,1.00,153.60,19.20,0 --168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.73,0.00,1.00,163.20,9.60,0 --172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.77,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0 -158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0 -158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0 -148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0 -144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0 -139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0 -134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0 -129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0 -124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0 -115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0 -110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0 -105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0 -96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0 -91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0 -86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0 -76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0 -72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0 -67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0 -62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0 -52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0 -48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0 -43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0 -38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0 -28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0 -19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0 -0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.60,0.00,1.00,0.00,0.00,0 --9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.64,0.00,1.00,9.60,4.80,0 --14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0 --19.20,14.40,1.69,0.00,1.00,19.20,9.60,0 --24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0 --28.80,19.20,1.73,0.00,1.00,28.80,19.20,0 --33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0 --38.40,24.00,1.77,0.00,1.00,38.40,24.00,0 --43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0 --48.00,28.80,1.82,0.00,1.00,48.00,28.80,0 --52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0 --57.60,33.60,1.86,0.00,1.00,57.60,28.80,0 --62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0 --67.20,38.40,1.90,0.00,1.00,67.20,33.60,0 --72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0 --81.60,38.40,1.94,0.00,1.00,76.80,38.40,0 --86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0 --91.20,38.40,1.99,0.00,1.00,86.40,38.40,0 --96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0 --105.60,38.40,2.03,0.00,1.00,96.00,38.40,0 --110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0 --115.20,33.60,2.07,0.00,1.00,105.60,33.60,0 --120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0 --124.80,33.60,2.11,0.00,1.00,115.20,33.60,0 --129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0 --134.40,28.80,2.16,0.00,1.00,124.80,28.80,0 --139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0 --144.00,24.00,2.20,0.00,1.00,134.40,24.00,0 --148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0 --153.60,19.20,2.24,0.00,1.00,144.00,19.20,0 --158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0 --163.20,14.40,2.29,0.00,1.00,153.60,14.40,0 --168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.33,0.00,1.00,163.20,9.60,0 --172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.37,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0 -153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0 -144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0 -134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0 -124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0 -120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0 -115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0 -110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0 -105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0 -96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0 -91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0 -86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0 -81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0 -72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0 -67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0 -62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0 -57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0 -52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0 -48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0 -43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0 -38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0 -33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0 -28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0 -14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.20,0.00,1.00,0.00,0.00,0 --9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0 --14.40,9.60,3.25,0.00,1.00,9.60,4.80,0 --14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0 --19.20,14.40,3.29,0.00,1.00,19.20,9.60,0 --24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0 --28.80,19.20,3.33,0.00,1.00,28.80,14.40,0 --33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0 --38.40,24.00,3.38,0.00,1.00,38.40,19.20,0 --43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0 --48.00,24.00,3.42,0.00,1.00,48.00,24.00,0 --52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0 --57.60,28.80,3.46,0.00,1.00,57.60,28.80,0 --62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0 --67.20,33.60,3.50,0.00,1.00,67.20,28.80,0 --72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0 --81.60,33.60,3.55,0.00,1.00,76.80,33.60,0 --86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0 --91.20,33.60,3.59,0.00,1.00,86.40,33.60,0 --96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0 --100.80,33.60,3.63,0.00,1.00,96.00,33.60,0 --110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0 --115.20,33.60,3.67,0.00,1.00,105.60,28.80,0 --120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0 --124.80,28.80,3.72,0.00,1.00,115.20,28.80,0 --129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0 --134.40,24.00,3.76,0.00,1.00,124.80,24.00,0 --139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0 --144.00,19.20,3.80,0.00,1.00,134.40,24.00,0 --148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0 --153.60,14.40,3.85,0.00,1.00,144.00,19.20,0 --158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0 --163.20,9.60,3.89,0.00,1.00,153.60,14.40,0 --168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0 --168.00,4.80,3.93,0.00,1.00,163.20,9.60,0 --172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0 --177.60,0.00,3.97,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0 -124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0 -120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0 -115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0 -110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0 -100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0 -96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0 -91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0 -86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0 -81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0 -72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0 -67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0 -62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0 -57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0 -52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0 -48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0 -43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0 -38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0 -33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0 -28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0 -24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0 -14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0 -14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0 --4.80,0.00,4.81,0.00,1.00,0.00,0.00,0 --9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0 --14.40,4.80,4.85,0.00,1.00,9.60,4.80,0 --19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0 --19.20,9.60,4.89,0.00,1.00,19.20,9.60,0 --24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0 --28.80,14.40,4.93,0.00,1.00,28.80,14.40,0 --33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0 --38.40,19.20,4.98,0.00,1.00,38.40,14.40,0 --43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0 --48.00,24.00,5.02,0.00,1.00,48.00,19.20,0 --52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0 --57.60,24.00,5.06,0.00,1.00,57.60,24.00,0 --62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0 --72.00,28.80,5.11,0.00,1.00,67.20,24.00,0 --76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0 --81.60,28.80,5.15,0.00,1.00,76.80,28.80,0 --86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0 --91.20,28.80,5.19,0.00,1.00,86.40,28.80,0 --96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0 --100.80,28.80,5.23,0.00,1.00,96.00,28.80,0 --105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0 --115.20,28.80,5.28,0.00,1.00,105.60,28.80,0 --120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0 --124.80,24.00,5.32,0.00,1.00,115.20,24.00,0 --129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0 --134.40,24.00,5.36,0.00,1.00,124.80,24.00,0 --139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0 --144.00,19.20,5.40,0.00,1.00,134.40,19.20,0 --148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0 --153.60,14.40,5.45,0.00,1.00,144.00,14.40,0 --158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0 --163.20,9.60,5.49,0.00,1.00,153.60,9.60,0 --163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0 --168.00,4.80,5.53,0.00,1.00,163.20,9.60,0 --172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0 --177.60,0.00,5.58,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0 -163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0 -129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0 -124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0 -120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0 -115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0 -105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0 -100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0 -96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0 -91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0 -86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0 -81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0 -76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0 -72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0 -62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0 -57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0 -52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0 -48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0 -43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0 -38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0 -33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0 -28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0 -24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0 -19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0 -19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0 -0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,6.41,0.00,1.00,0.00,0.00,0 --9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0 --14.40,4.80,6.45,0.00,1.00,9.60,4.80,0 --19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0 --24.00,9.60,6.49,0.00,1.00,19.20,9.60,0 --28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0 --33.60,14.40,6.54,0.00,1.00,28.80,9.60,0 --33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0 --38.40,14.40,6.58,0.00,1.00,38.40,14.40,0 --43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0 --48.00,19.20,6.62,0.00,1.00,48.00,14.40,0 --57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0 --62.40,19.20,6.66,0.00,1.00,57.60,19.20,0 --67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0 --72.00,24.00,6.71,0.00,1.00,67.20,19.20,0 --76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0 --81.60,24.00,6.75,0.00,1.00,76.80,24.00,0 --86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0 --91.20,24.00,6.79,0.00,1.00,86.40,24.00,0 --96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0 --100.80,24.00,6.84,0.00,1.00,96.00,24.00,0 --105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0 --110.40,24.00,6.88,0.00,1.00,105.60,24.00,0 --115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0 --120.00,19.20,6.92,0.00,1.00,115.20,19.20,0 --129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0 --134.40,19.20,6.96,0.00,1.00,124.80,19.20,0 --139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0 --144.00,14.40,7.01,0.00,1.00,134.40,14.40,0 --148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0 --148.80,14.40,7.05,0.00,1.00,144.00,14.40,0 --153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0 --158.40,9.60,7.09,0.00,1.00,153.60,9.60,0 --163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0 --168.00,4.80,7.13,0.00,1.00,163.20,4.80,0 --172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0 --177.60,0.00,7.18,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0 -163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0 -158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0 -148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0 -144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0 -134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0 -129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0 -120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0 -115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0 -110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0 -105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0 -100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0 -96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0 -91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0 -86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0 -81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0 -76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0 -72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0 -67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0 -62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0 -57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0 -48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0 -43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0 -38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0 -33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0 -33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0 -28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0 -24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0 -19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0 -0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,8.01,0.00,1.00,0.00,0.00,0 --9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0 --14.40,4.80,8.05,0.00,1.00,9.60,4.80,0 --19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0 --24.00,9.60,8.10,0.00,1.00,19.20,4.80,0 --28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0 --33.60,9.60,8.14,0.00,1.00,24.00,9.60,0 --38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0 --43.20,14.40,8.18,0.00,1.00,33.60,9.60,0 --48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0 --52.80,14.40,8.22,0.00,1.00,43.20,14.40,0 --57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0 --62.40,19.20,8.27,0.00,1.00,52.80,14.40,0 --67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0 --72.00,19.20,8.31,0.00,1.00,62.40,14.40,0 --76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0 --81.60,19.20,8.35,0.00,1.00,76.80,19.20,0 --86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0 --91.20,19.20,8.40,0.00,1.00,86.40,19.20,0 --96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0 --100.80,19.20,8.44,0.00,1.00,96.00,19.20,0 --105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0 --110.40,19.20,8.48,0.00,1.00,105.60,19.20,0 --115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0 --120.00,14.40,8.52,0.00,1.00,120.00,14.40,0 --124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0 --129.60,14.40,8.57,0.00,1.00,129.60,14.40,0 --134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0 --139.20,14.40,8.61,0.00,1.00,139.20,14.40,0 --144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0 --148.80,9.60,8.65,0.00,1.00,148.80,9.60,0 --153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0 --158.40,4.80,8.69,0.00,1.00,158.40,9.60,0 --163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0 --168.00,4.80,8.74,0.00,1.00,163.20,4.80,0 --172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0 -148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0 -144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0 -139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0 -134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0 -129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0 -124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0 -120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0 -115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0 -110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0 -105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0 -100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0 -96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0 -91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0 -86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0 -81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0 -76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0 -72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0 -67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0 -62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0 -52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0 -48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0 -43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0 -38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0 -33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0 -28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0 -24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0 -19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0 -9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0 -0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,9.61,0.00,1.00,0.00,0.00,0 --9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0 --14.40,4.80,9.66,0.00,1.00,9.60,0.00,0 --19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0 --24.00,4.80,9.70,0.00,1.00,14.40,4.80,0 --28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0 --33.60,9.60,9.74,0.00,1.00,24.00,4.80,0 --38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0 --43.20,9.60,9.78,0.00,1.00,33.60,9.60,0 --48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0 --52.80,9.60,9.83,0.00,1.00,43.20,9.60,0 --57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0 --62.40,14.40,9.87,0.00,1.00,52.80,9.60,0 --67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0 --72.00,14.40,9.91,0.00,1.00,62.40,14.40,0 --76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0 --81.60,14.40,9.95,0.00,1.00,76.80,14.40,0 --86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0 --91.20,14.40,10.00,0.00,1.00,86.40,14.40,0 --96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0 --100.80,14.40,10.04,0.00,1.00,96.00,14.40,0 --105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0 --110.40,14.40,10.08,0.00,1.00,110.40,14.40,0 --115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0 --120.00,14.40,10.13,0.00,1.00,120.00,9.60,0 --124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0 --129.60,9.60,10.17,0.00,1.00,129.60,9.60,0 --134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0 --139.20,9.60,10.21,0.00,1.00,139.20,9.60,0 --144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0 --148.80,9.60,10.25,0.00,1.00,148.80,9.60,0 --153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0 --158.40,4.80,10.30,0.00,1.00,158.40,4.80,0 --163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0 --168.00,4.80,10.34,0.00,1.00,168.00,4.80,0 --172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0 -148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0 -144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0 -139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0 -134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0 -129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0 -124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0 -120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0 -115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0 -110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0 -105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0 -100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0 -96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0 -91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0 -86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0 -81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0 -76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0 -72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0 -67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0 -62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0 -48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0 -43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0 -38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0 -33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0 -28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0 -24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0 -19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0 -14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,11.21,0.00,1.00,0.00,0.00,0 --9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0 --14.40,0.00,11.26,0.00,1.00,9.60,0.00,0 --19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0 --24.00,4.80,11.30,0.00,1.00,14.40,4.80,0 --28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0 --33.60,4.80,11.34,0.00,1.00,24.00,4.80,0 --38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0 --43.20,4.80,11.39,0.00,1.00,33.60,4.80,0 --48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0 --52.80,9.60,11.43,0.00,1.00,43.20,4.80,0 --57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0 --62.40,9.60,11.47,0.00,1.00,52.80,4.80,0 --67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0 --72.00,9.60,11.51,0.00,1.00,62.40,9.60,0 --76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0 --81.60,9.60,11.56,0.00,1.00,72.00,9.60,0 --86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0 --91.20,9.60,11.60,0.00,1.00,86.40,9.60,0 --96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0 --100.80,9.60,11.64,0.00,1.00,96.00,9.60,0 --105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0 --110.40,9.60,11.68,0.00,1.00,110.40,9.60,0 --115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0 --120.00,9.60,11.73,0.00,1.00,120.00,9.60,0 --124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0 --129.60,9.60,11.77,0.00,1.00,129.60,4.80,0 --134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0 --139.20,4.80,11.81,0.00,1.00,139.20,4.80,0 --144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0 --148.80,4.80,11.86,0.00,1.00,148.80,4.80,0 --153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0 --158.40,4.80,11.90,0.00,1.00,158.40,4.80,0 --163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0 --168.00,0.00,11.94,0.00,1.00,168.00,4.80,0 --172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0 -158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0 -148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0 -144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0 -139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0 -134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0 -129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0 -124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0 -120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0 -115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0 -110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0 -105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0 -100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0 -96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0 -91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0 -86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0 -81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0 -76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0 -72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0 -67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0 -62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0 -57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0 -43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0 -33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0 -28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0 -24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0 -19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,12.82,0.00,1.00,0.00,0.00,0 --9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0 --14.40,0.00,12.86,0.00,1.00,9.60,0.00,0 --19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0 --24.00,0.00,12.90,0.00,1.00,14.40,0.00,0 --28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0 --33.60,4.80,12.95,0.00,1.00,24.00,0.00,0 --38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0 --43.20,4.80,12.99,0.00,1.00,28.80,0.00,0 --48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0 --52.80,4.80,13.03,0.00,1.00,38.40,4.80,0 --57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0 --62.40,4.80,13.07,0.00,1.00,48.00,4.80,0 --67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0 --72.00,4.80,13.12,0.00,1.00,62.40,4.80,0 --76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0 --81.60,4.80,13.16,0.00,1.00,72.00,4.80,0 --86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0 --91.20,4.80,13.20,0.00,1.00,86.40,4.80,0 --96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0 --100.80,4.80,13.24,0.00,1.00,96.00,4.80,0 --105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0 --110.40,4.80,13.29,0.00,1.00,110.40,4.80,0 --115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0 --120.00,4.80,13.33,0.00,1.00,120.00,4.80,0 --124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0 --129.60,4.80,13.37,0.00,1.00,134.40,4.80,0 --134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0 --139.20,4.80,13.42,0.00,1.00,144.00,4.80,0 --144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0 --148.80,4.80,13.46,0.00,1.00,153.60,0.00,0 --153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0 --158.40,0.00,13.50,0.00,1.00,158.40,0.00,0 --163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0 --168.00,0.00,13.54,0.00,1.00,168.00,0.00,0 --172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0 -163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0 -158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0 -153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0 -148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0 -144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0 -139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0 -134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0 -129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0 -124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0 -120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0 -115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0 -110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0 -105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0 -100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0 -96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0 -91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0 -86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0 -81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0 -76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0 -72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0 -67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0 -57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0 -52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0 -43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0 -33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0 -28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0 -24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0 -19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0 -14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0 -9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,14.42,0.00,1.00,0.00,0.00,0 --9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0 --14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0 --19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0 --24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0 --28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0 --33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0 --38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0 --43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0 --48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0 --52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0 --57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0 --62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0 --67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0 --72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0 --76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0 --81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0 --86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0 --91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0 --96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0 --100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0 --105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0 --110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0 --115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0 --120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0 --124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0 --129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0 --134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0 --139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0 --144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0 --148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0 --153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0 --158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0 --163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0 --168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0 --172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0 -177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0 -172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0 -168.00,0.00,15.25,0.00,1.00,4.80,0.00,0 -163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0 -158.40,0.00,15.30,0.00,1.00,9.60,0.00,0 -153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0 -148.80,0.00,15.34,0.00,1.00,19.20,0.00,0 -144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0 -139.20,0.00,15.38,0.00,1.00,28.80,0.00,0 -134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0 -129.60,0.00,15.42,0.00,1.00,33.60,0.00,0 -124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0 -120.00,0.00,15.47,0.00,1.00,43.20,0.00,0 -115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0 -110.40,0.00,15.51,0.00,1.00,57.60,0.00,0 -105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0 -100.80,0.00,15.55,0.00,1.00,67.20,0.00,0 -96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0 -91.20,0.00,15.59,0.00,1.00,81.60,0.00,0 -86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0 -81.60,0.00,15.64,0.00,1.00,96.00,0.00,0 -76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0 -72.00,0.00,15.68,0.00,1.00,110.40,0.00,0 -67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0 -62.40,0.00,15.72,0.00,1.00,120.00,0.00,0 -57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0 -52.80,0.00,15.77,0.00,1.00,134.40,0.00,0 -48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0 -43.20,0.00,15.81,0.00,1.00,144.00,0.00,0 -38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0 -33.60,0.00,15.85,0.00,1.00,153.60,0.00,0 -28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0 -24.00,0.00,15.89,0.00,1.00,158.40,0.00,0 -19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0 -14.40,0.00,15.94,0.00,1.00,168.00,0.00,0 -9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0 -4.80,0.00,15.98,0.00,1.00,172.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 diff --git a/scripts/testv/stvOMASA_3ISM_2MASA2TC16c_ISM3.csv b/scripts/testv/stvOMASA_3ISM_2MASA2TC16c_ISM3.csv deleted file mode 100644 index 14eee9b693b536fa2fd22d2813d7f588b8930b06..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_2MASA2TC16c_ISM3.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0 --177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0 -4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0 --168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0 -14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0 --163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0 -19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0 --153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0 -28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0 --148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0 -38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0 --139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0 -48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0 --124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0 -57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0 --115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0 -72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0 --100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0 -86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0 --86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0 -100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0 --76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0 -110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0 --62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0 -124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0 --52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0 -134.40,33.60,0.28,0.00,1.00,177.60,0.00,0 --38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0 -144.00,28.80,0.30,0.00,1.00,177.60,0.00,0 --33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0 -153.60,24.00,0.32,0.00,1.00,177.60,0.00,0 --24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0 -158.40,19.20,0.34,0.00,1.00,177.60,0.00,0 --14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0 -168.00,9.60,0.36,0.00,1.00,177.60,0.00,0 --9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0 -172.80,4.80,0.38,0.00,1.00,177.60,0.00,0 --0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0 --177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0 -4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0 -14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0 -19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0 --158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0 -28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0 --148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0 -33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0 --139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0 -43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0 --129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0 -57.60,38.40,15.47,0.00,1.00,177.60,0.00,0 --120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0 -67.20,43.20,15.44,0.00,1.00,177.60,0.00,0 --105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0 -81.60,43.20,15.42,0.00,1.00,177.60,0.00,0 --91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0 -96.00,43.20,15.40,0.00,1.00,0.00,0.00,0 --76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0 -110.40,43.20,15.38,0.00,1.00,0.00,0.00,0 --67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0 -120.00,38.40,15.36,0.00,1.00,0.00,0.00,0 --52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0 -129.60,38.40,15.34,0.00,1.00,0.00,0.00,0 --43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0 -144.00,33.60,15.32,0.00,1.00,0.00,0.00,0 --33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0 -148.80,24.00,15.30,0.00,1.00,0.00,0.00,0 --24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0 -158.40,19.20,15.27,0.00,1.00,0.00,0.00,0 --19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0 -168.00,14.40,15.25,0.00,1.00,0.00,0.00,0 --9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0 -172.80,4.80,15.23,0.00,1.00,0.00,0.00,0 --4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0 -0.00,0.00,15.21,0.00,1.00,0.00,0.00,0 --177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0 -9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0 -14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0 --163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0 -24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0 --153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0 -28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0 --144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0 -38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0 --134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0 -48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0 --124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0 -62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0 --115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0 -72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0 --100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0 -86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0 --86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0 -96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0 --76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0 -110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0 --62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0 -120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0 --52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0 -134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0 --43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0 -144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0 --33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0 -148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0 --24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0 -158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0 --19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0 -168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0 --9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0 -172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0 -4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0 -14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0 -19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0 --153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0 -28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0 --148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0 -38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0 --139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0 -48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0 --124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0 -57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0 --115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0 -72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0 --105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0 -81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0 --91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0 -96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0 --76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0 -105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0 --67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0 -120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0 --57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0 -129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0 --43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0 -139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0 --33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0 -148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0 --28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0 -158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0 --19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0 -163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0 --9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0 -172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0 -0.00,0.00,1.60,0.00,1.00,0.00,0.00,0 --177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0 -9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0 -14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0 --158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0 -24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0 --153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0 -33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0 --144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0 -43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0 --134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0 -52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0 --124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0 -62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0 --110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0 -72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0 --100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0 -86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0 --86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0 -96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0 --76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0 -110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0 --67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0 -120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0 --52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0 -129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0 --43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0 -139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0 --33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0 -148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0 --24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0 -158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0 --19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0 -168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0 -172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0 -4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0 -14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0 --163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0 -24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0 --153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0 -28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0 --144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0 -38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0 --134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0 -48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0 --124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0 -62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0 --115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0 -72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0 --100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0 -81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0 --91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0 -96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0 --81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0 -105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0 --67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0 -115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0 --57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0 -129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0 --48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0 -139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0 --38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0 -148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0 --28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0 -153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0 --19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0 -163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0 --9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0 -172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0 -0.00,0.00,13.61,0.00,1.00,0.00,0.00,0 --177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0 -9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0 --168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0 -24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0 --148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0 -33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0 --139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0 -43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0 --129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0 -52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0 --120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0 -62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0 --110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0 -76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0 --100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0 -86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0 --86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0 -96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0 --76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0 -105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0 --67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0 -120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0 --57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0 -129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0 --48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0 -139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0 --38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0 -148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0 -158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0 --19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0 -163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0 -172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0 -4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0 -14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0 --163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0 -24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0 --153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0 -33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0 --144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0 -43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0 --134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0 -52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0 --124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0 -62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0 --115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0 -72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0 --100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0 -81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0 --91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0 -96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0 --81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0 -105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0 --67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0 -115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0 --57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0 -124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0 --48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0 -134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0 --38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0 -144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0 --28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0 -153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0 --19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0 -163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0 --14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0 -172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0 --4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0 -0.00,0.00,3.20,0.00,1.00,0.00,0.00,0 --177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0 -9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0 -19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0 -24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0 --148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0 -33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0 --139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0 -43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0 --129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0 -52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0 --120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0 -67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0 --110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0 -76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0 --100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0 -86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0 --86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0 -96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0 --76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0 -105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0 --67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0 -115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0 --57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0 -129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0 --48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0 -139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0 --38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0 -148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0 -153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0 --19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0 -163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0 -172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0 -4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0 -14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0 -24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0 --153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0 -33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0 --144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0 -43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0 --134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0 -52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0 --124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0 -62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0 --110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0 -72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0 --100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0 -81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0 --91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0 -96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0 --81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0 -105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0 --72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0 -115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0 --57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0 -124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0 --48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0 -134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0 --38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0 -144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0 --28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0 -153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0 --24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0 -163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0 --14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0 -172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -0.00,0.00,12.01,0.00,1.00,0.00,0.00,0 --177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0 -9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0 --158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0 -28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0 --148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0 -38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0 --139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0 -48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0 --129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0 -57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0 --120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0 -67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0 --110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0 -76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0 --100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0 -86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0 --86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0 -96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0 --76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0 -105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0 --67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0 -115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0 --57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0 -124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0 --48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0 -134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0 --38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0 -144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0 --28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0 -153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0 --19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0 -163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0 -172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0 -4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0 -14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0 -24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0 --148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0 -33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0 --139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0 -43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0 --129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0 -52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0 --120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0 -62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0 --110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0 -72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0 --100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0 -81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0 --91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0 -96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0 --81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0 -105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0 --72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0 -115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0 --62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0 -124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0 --52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0 -134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0 --43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0 -144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0 --33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0 -153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0 --24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0 -163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0 -172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0 -0.00,0.00,4.81,0.00,1.00,0.00,0.00,0 --177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0 -9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0 -19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0 -28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0 --148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0 -38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0 --139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0 -48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0 --129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0 -57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0 --120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0 -67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0 --110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0 -76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0 --100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0 -86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0 --86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0 -96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0 --76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0 -105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0 --67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0 -115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0 --57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0 -124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0 --48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0 -134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0 --38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0 -144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0 --28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0 -153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0 --19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0 -163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0 --9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0 -172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0 -4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0 -14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0 -24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0 --148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0 -33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0 --139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0 -43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0 --129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0 -52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0 --120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0 -62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0 --110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0 -72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0 --100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0 -81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0 --91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0 -96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0 --81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0 -105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0 --72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0 -115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0 --62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0 -124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0 --52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0 -134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0 --43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0 -144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0 --33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0 -153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0 --24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0 -163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0 -172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -0.00,0.00,10.40,0.00,1.00,0.00,0.00,0 --177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0 -9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0 -19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0 -28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0 --148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0 -38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0 --139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0 -48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0 --129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0 -57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0 --120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0 -67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0 --110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0 -76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0 --100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0 -86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0 --86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0 -96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0 --76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0 -105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0 --67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0 -115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0 --57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0 -124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0 --48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0 -134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0 --38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0 -144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0 --28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0 -153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0 -163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0 --9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0 -172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0 -4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0 -14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0 -24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0 -33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0 --139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0 -43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0 --129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0 -52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0 --120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0 -62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0 --110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0 -72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0 --100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0 -81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0 --91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0 -96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0 --81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0 -105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0 --72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0 -115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0 --62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0 -124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0 --52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0 -134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0 --43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0 -144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0 --33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0 -153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0 --24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0 -163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0 -172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,6.41,0.00,1.00,0.00,0.00,0 --177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0 -9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0 -19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0 --158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0 -28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0 --148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0 -38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0 --139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0 -48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0 --129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0 -57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0 --120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0 -67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0 --110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0 -76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0 --100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0 -86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0 --86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0 -96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0 --76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0 -105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0 --67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0 -115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0 --57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0 -124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0 --48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0 -134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0 --38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0 -144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0 --28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0 -153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0 -163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0 -172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0 -4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0 -14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0 --158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0 -24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0 -33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0 --139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0 -43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0 --129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0 -52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0 --120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0 -62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0 --110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0 -72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0 --100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0 -81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0 --91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0 -96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0 --81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0 -105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0 --72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0 -115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0 --62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0 -124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0 --52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0 -134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0 --43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0 -144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0 --33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0 -153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0 --24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0 -163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0 --14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0 -172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.80,0.00,1.00,0.00,0.00,0 --177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0 -9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0 -19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0 --158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0 -28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0 --148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0 -38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0 --139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0 -48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0 --129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0 -57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0 --120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0 -67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0 --110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0 -76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0 --100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0 -86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0 --86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0 -96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0 --76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0 -105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0 --67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0 -115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0 --57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0 -124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0 --48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0 -134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0 --38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0 -144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0 --28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0 -153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0 --19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0 -163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0 -172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0 --0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0 -4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0 --168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0 -14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0 --158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0 -24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0 --148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0 -33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0 --139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0 -43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0 --129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0 -52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0 --120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0 -62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0 --110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0 -72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0 --100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0 -81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0 --91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0 -96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0 --81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0 -105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0 --72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0 -115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0 --62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0 -124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0 --52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0 -134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0 --43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0 -144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0 --33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0 -153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0 --24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0 -163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0 --14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0 -172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.01,0.00,1.00,0.00,0.00,0 --177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0 --168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0 -19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0 --158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0 -28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0 --148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0 -38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0 --139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0 -48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0 --129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0 -57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0 --120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0 -67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0 --110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0 -76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0 --100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0 -86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0 --86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0 -96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0 --76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0 -105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0 --67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0 -115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0 --57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0 -124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0 --48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0 -134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0 --38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0 -144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0 --28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0 -153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0 --19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0 -163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0 --9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0 -172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0 --0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0 --168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0 -14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0 --158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0 -24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0 --148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0 -33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0 --139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0 -43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0 --129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0 -52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0 --120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0 -62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0 --110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0 -72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0 --100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0 -81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0 --91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0 -96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0 --81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0 -105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0 --72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0 -115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0 --62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0 -124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0 --52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0 -134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0 --43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0 -144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0 --33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0 -153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0 --24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0 -163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0 --14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0 --4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0 -0.00,0.00,7.20,0.00,1.00,0.00,0.00,0 --177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0 --168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0 -19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0 --158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0 --148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0 -38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0 --139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0 -48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0 --129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0 -57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0 --120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0 -67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0 --110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0 -76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0 --100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0 -86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0 --86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0 -96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0 --76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0 -105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0 --67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0 -115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0 --57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0 -124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0 --48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0 -134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0 --38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0 -144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0 --28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0 --19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0 -163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0 --9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0 --0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0 --168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0 -14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0 --158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0 --148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0 -33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0 --139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0 -43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0 --129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0 -52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0 --120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0 -62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0 --110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0 -72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0 --100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0 -81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0 --91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0 -96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0 --81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0 -105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0 --72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0 -115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0 --62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0 -124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0 --52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0 -134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0 --43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0 -144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0 --33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0 -153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0 --24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0 --14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0 --4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0 -0.00,0.00,9.61,0.00,1.00,0.00,0.00,0 --177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0 --168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0 --158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0 --148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0 --139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0 -48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0 --129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0 -57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0 --120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0 -67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0 --110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0 -76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0 --100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0 -86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0 --86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0 -96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0 --76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0 -105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0 --67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0 -115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0 --57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0 -124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0 --48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0 -134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0 --38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0 --28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0 --19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0 -163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0 --9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0 --0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0 --168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0 --158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0 --148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0 -33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0 --139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0 -43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0 --129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0 -52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0 --120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0 -62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0 --110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0 -72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0 --100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0 -81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0 --91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0 -96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0 --81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0 -105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0 --72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0 -115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0 --62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0 -124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0 --52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0 -134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0 --43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0 -144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0 --33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0 -153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0 --24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0 --14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0 -172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0 --4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0 -0.00,0.00,5.60,0.00,1.00,0.00,0.00,0 --177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0 --168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0 --158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0 -28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0 --148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0 --139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0 -48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0 --129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0 -57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0 --120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0 -67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0 --110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0 -76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0 --100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0 -86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0 --86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0 -96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0 --76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0 -105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0 --67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0 -115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0 --57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0 -124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0 --48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0 -134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0 --38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0 --28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0 -153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0 --19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0 --9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0 --0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0 --168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0 --158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0 --148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0 -33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0 --139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0 -43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0 --129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0 -52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0 --120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0 -62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0 --110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0 -72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0 --100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0 -81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0 --91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0 -96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0 --81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0 -105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0 --72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0 -115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0 --62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0 -124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0 --52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0 -134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0 --43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0 -144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0 --33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0 -153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0 --24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0 --14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0 --4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0 -0.00,0.00,11.21,0.00,1.00,0.00,0.00,0 --177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0 --168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0 --158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0 -28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0 --148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0 -38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0 --139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0 -48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0 --129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0 -57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0 --120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0 -67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0 --110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0 -76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0 --100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0 -86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0 --86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0 -96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0 --76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0 -105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0 --67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0 -115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0 --57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0 -124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0 --48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0 -134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0 --38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0 -144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0 --28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0 -153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0 --19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0 --9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0 --0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0 --168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0 --158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0 --148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0 --139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0 -43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0 --129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0 -52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0 --120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0 -62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0 --110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0 -72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0 --100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0 -81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0 --91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0 -96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0 --81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0 -105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0 --72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0 -115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0 --62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0 -124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0 --52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0 -134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0 --43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0 --33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0 -153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0 --24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0 -163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0 --14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0 --4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,3.99,0.00,1.00,0.00,0.00,0 --177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0 --168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0 -19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0 --158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0 --148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0 -33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0 --139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0 -43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0 --129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0 -52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0 --120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0 -62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0 --110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0 -76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0 --100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0 -86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0 --86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0 -96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0 --76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0 -105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0 --67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0 -120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0 --57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0 --48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0 -139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0 --38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0 -148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0 --28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0 -158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0 --19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0 -163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0 --9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0 --0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0 --168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0 --158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0 --153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0 --144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0 -43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0 --134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0 --124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0 -62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0 --110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0 -72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0 --100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0 -81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0 --91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0 -96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0 --81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0 -105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0 --72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0 -115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0 --57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0 -124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0 --48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0 -134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0 --38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0 --28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0 --24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0 --14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0 --4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,12.82,0.00,1.00,0.00,0.00,0 --177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0 --168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0 --158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0 --148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0 -33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0 --139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0 --129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0 --120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0 -62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0 --110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0 -76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0 --100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0 -86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0 --86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0 -96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0 --76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0 -110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0 --67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0 -120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0 --57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0 --48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0 --38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0 --28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0 --19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0 --9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0 --0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0 --168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0 --163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0 --153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0 -33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0 --144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0 -43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0 --134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0 --124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0 -62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0 --115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0 -72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0 --100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0 -81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0 --91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0 -96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0 --81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0 -105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0 --67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0 -115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0 --57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0 -124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0 --48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0 -134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0 --38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0 -144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0 --28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0 --19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0 --14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0 --4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,2.39,0.00,1.00,0.00,0.00,0 --177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0 --168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0 --158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0 --153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0 -33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0 --144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0 --134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0 --124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0 -62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0 --110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0 -72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0 --100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0 -86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0 --86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0 -96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0 --76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0 -110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0 --67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0 -120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0 --52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0 -129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0 --43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0 --33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0 --24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0 --19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0 --9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0 --0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0 --168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0 --163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0 --153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0 -28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0 --144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0 -38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0 --134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0 -48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0 --124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0 -57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0 --115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0 -72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0 --105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0 -81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0 --91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0 -96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0 --81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0 -105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0 --67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0 -120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0 --57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0 -129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0 --48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0 -139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0 --38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0 --28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0 -158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0 --19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0 --9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0 --4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0 -0.00,0.00,14.42,0.00,1.00,0.00,0.00,0 --177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0 --168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0 --163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0 -24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0 --153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0 -28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0 --144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0 -38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0 --134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0 -48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0 --124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0 -62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0 --115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0 -72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0 --100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0 -86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0 --86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0 -96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0 --76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0 -110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0 --62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0 -120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0 --52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0 -134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0 --43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0 --33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0 --24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0 -158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0 --14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0 --9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0 --0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0 --172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0 --163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0 --153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0 --148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0 -38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0 --139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0 -48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0 --129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0 --115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0 -67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0 --105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0 -81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0 --91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0 -96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0 --76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0 -105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0 --67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0 -120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0 --52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0 -129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0 --43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0 -139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0 --33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0 --28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0 --19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0 -163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0 --9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0 --4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0 -0.00,0.00,0.79,0.00,1.00,0.00,0.00,0 --177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0 -4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0 --168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0 --163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0 -19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0 --153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0 -28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0 --148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0 -38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0 --139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0 -48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0 --124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0 -57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0 --115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0 -72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0 --100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0 -86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0 --86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0 -100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0 --76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0 -110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0 --62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0 -124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0 --48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0 -134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0 --38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0 --28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0 --24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0 -163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0 --14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0 -168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0 --9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0 --0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0 --177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0 --172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0 -9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0 --163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0 --158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0 --148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0 -33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0 --139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0 -43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0 --129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0 --120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0 -67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0 --105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0 -81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0 --91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0 -96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0 --76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0 -110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0 --67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0 -120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0 --52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0 -134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0 --43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0 -144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0 --33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0 -153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0 --24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0 --19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0 -168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0 --9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0 --4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0 diff --git a/scripts/testv/stvOMASA_3ISM_2MASA2TC32c.met b/scripts/testv/stvOMASA_3ISM_2MASA2TC32c.met deleted file mode 100644 index 1b62022af572fc4f198e4212cca88d51913ec3c4..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_2MASA2TC32c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2eb412d646d7a32c77413dea54dc44cf45dc49e6d8c2de19abe4f4b93a91fa4a -size 159900 diff --git a/scripts/testv/stvOMASA_3ISM_2MASA2TC32c_ISM1.csv b/scripts/testv/stvOMASA_3ISM_2MASA2TC32c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_2MASA2TC32c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_3ISM_2MASA2TC32c_ISM2.csv b/scripts/testv/stvOMASA_3ISM_2MASA2TC32c_ISM2.csv deleted file mode 100644 index f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_2MASA2TC32c_ISM2.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,4.80,16.00,0.00,1.00,0.00,0.00,0 -0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0 -0.00,14.40,15.96,0.00,1.00,4.80,9.60,0 -0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0 -0.00,24.00,15.91,0.00,1.00,14.40,19.20,0 -0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0 -0.00,33.60,15.87,0.00,1.00,19.20,28.80,0 -0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0 -0.00,43.20,15.83,0.00,1.00,28.80,38.40,0 -0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0 -0.00,52.80,15.79,0.00,1.00,38.40,48.00,0 -0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0 -0.00,62.40,15.74,0.00,1.00,48.00,57.60,0 -4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0 -4.80,72.00,15.70,0.00,1.00,57.60,67.20,0 -4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0 -9.60,81.60,15.66,0.00,1.00,72.00,76.80,0 -19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0 -134.40,86.40,15.62,0.00,1.00,86.40,86.40,0 -168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0 -172.80,76.80,15.57,0.00,1.00,100.80,86.40,0 -177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0 -177.60,67.20,15.53,0.00,1.00,110.40,76.80,0 -177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0 -177.60,57.60,15.49,0.00,1.00,124.80,67.20,0 -177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0 -177.60,48.00,15.44,0.00,1.00,134.40,57.60,0 -177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0 -177.60,38.40,15.40,0.00,1.00,144.00,48.00,0 -177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0 -177.60,28.80,15.36,0.00,1.00,153.60,38.40,0 -177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0 -177.60,19.20,15.32,0.00,1.00,158.40,28.80,0 -177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0 -177.60,9.60,15.27,0.00,1.00,168.00,19.20,0 -177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0 -177.60,0.00,15.23,0.00,1.00,172.80,9.60,0 --177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0 --177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0 --177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0 --177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0 --177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0 --177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0 --177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0 --177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0 --177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0 --177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0 --177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0 --177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0 --177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0 --177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0 --177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0 --177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0 --172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0 --168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0 --134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0 --19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0 --9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0 --4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0 --4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0 --4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0 --0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0 --0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0 --0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0 --0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0 --0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0 --0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0 --0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0 --0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0 --0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0 --0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0 --0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0 --0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0 --0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0 --0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,14.40,0.00,1.00,0.00,0.00,0 --0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0 --0.00,14.40,14.36,0.00,1.00,9.60,9.60,0 --0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0 --0.00,24.00,14.31,0.00,1.00,14.40,19.20,0 --0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0 --0.00,33.60,14.27,0.00,1.00,24.00,28.80,0 --4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0 --4.80,43.20,14.23,0.00,1.00,28.80,38.40,0 --4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0 --4.80,52.80,14.18,0.00,1.00,38.40,48.00,0 --4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0 --4.80,62.40,14.14,0.00,1.00,48.00,57.60,0 --9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0 --9.60,72.00,14.10,0.00,1.00,62.40,67.20,0 --14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0 --24.00,81.60,14.06,0.00,1.00,72.00,76.80,0 --43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0 --110.40,86.40,14.01,0.00,1.00,86.40,86.40,0 --148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0 --163.20,76.80,13.97,0.00,1.00,96.00,81.60,0 --168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0 --172.80,67.20,13.93,0.00,1.00,110.40,72.00,0 --172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0 --172.80,57.60,13.89,0.00,1.00,120.00,62.40,0 --172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0 --177.60,48.00,13.84,0.00,1.00,134.40,52.80,0 --177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0 --177.60,38.40,13.80,0.00,1.00,144.00,43.20,0 --177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0 --177.60,28.80,13.76,0.00,1.00,148.80,33.60,0 --177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0 --177.60,19.20,13.71,0.00,1.00,158.40,24.00,0 --177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0 --177.60,9.60,13.67,0.00,1.00,168.00,14.40,0 --177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0 --177.60,0.00,13.63,0.00,1.00,172.80,4.80,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0 -177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0 -177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0 -177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0 -177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0 -177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0 -177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0 -172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0 -172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0 -172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0 -172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0 -168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0 -163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0 -148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0 -110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0 -43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0 -24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0 -14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0 -9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0 -9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0 -4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0 -4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0 -4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0 -4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0 -4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0 -0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0 -0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0 -0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0 -0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0 -0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,12.80,0.00,1.00,0.00,0.00,0 --0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0 --0.00,14.40,12.75,0.00,1.00,9.60,9.60,0 --4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0 --4.80,24.00,12.71,0.00,1.00,14.40,19.20,0 --4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0 --4.80,33.60,12.67,0.00,1.00,24.00,28.80,0 --4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0 --9.60,43.20,12.62,0.00,1.00,33.60,38.40,0 --9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0 --9.60,52.80,12.58,0.00,1.00,43.20,48.00,0 --14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0 --14.40,62.40,12.54,0.00,1.00,52.80,57.60,0 --19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0 --24.00,72.00,12.50,0.00,1.00,62.40,67.20,0 --33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0 --43.20,76.80,12.45,0.00,1.00,72.00,72.00,0 --67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0 --96.00,81.60,12.41,0.00,1.00,86.40,81.60,0 --124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0 --144.00,76.80,12.37,0.00,1.00,96.00,76.80,0 --153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0 --158.40,67.20,12.33,0.00,1.00,110.40,72.00,0 --163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0 --168.00,57.60,12.28,0.00,1.00,120.00,62.40,0 --168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0 --168.00,48.00,12.24,0.00,1.00,129.60,52.80,0 --172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0 --172.80,38.40,12.20,0.00,1.00,139.20,43.20,0 --172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0 --172.80,28.80,12.15,0.00,1.00,148.80,33.60,0 --177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0 --177.60,19.20,12.11,0.00,1.00,158.40,24.00,0 --177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0 --177.60,9.60,12.07,0.00,1.00,168.00,14.40,0 --177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0 --177.60,0.00,12.03,0.00,1.00,172.80,4.80,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0 -177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0 -172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0 -172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0 -168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0 -168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0 -168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0 -163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0 -158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0 -153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0 -144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0 -124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0 -96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0 -67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0 -43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0 -33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0 -24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0 -19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0 -14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0 -14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0 -9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0 -9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0 -9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0 -4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0 -4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0 -0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,11.19,0.00,1.00,0.00,0.00,0 --0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0 --4.80,14.40,11.15,0.00,1.00,9.60,9.60,0 --4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0 --4.80,24.00,11.11,0.00,1.00,14.40,19.20,0 --4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0 --9.60,33.60,11.07,0.00,1.00,24.00,28.80,0 --9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0 --14.40,43.20,11.02,0.00,1.00,33.60,38.40,0 --14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0 --14.40,52.80,10.98,0.00,1.00,43.20,48.00,0 --19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0 --24.00,57.60,10.94,0.00,1.00,52.80,52.80,0 --28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0 --33.60,67.20,10.89,0.00,1.00,62.40,62.40,0 --43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0 --57.60,72.00,10.85,0.00,1.00,76.80,72.00,0 --76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0 --96.00,76.80,10.81,0.00,1.00,86.40,76.80,0 --115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0 --129.60,72.00,10.77,0.00,1.00,96.00,76.80,0 --139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0 --148.80,67.20,10.72,0.00,1.00,105.60,67.20,0 --153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0 --158.40,57.60,10.68,0.00,1.00,120.00,62.40,0 --163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0 --163.20,48.00,10.64,0.00,1.00,129.60,52.80,0 --168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0 --168.00,38.40,10.60,0.00,1.00,139.20,43.20,0 --172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0 --172.80,28.80,10.55,0.00,1.00,148.80,33.60,0 --172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0 --172.80,19.20,10.51,0.00,1.00,158.40,24.00,0 --177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0 --177.60,9.60,10.47,0.00,1.00,163.20,14.40,0 --177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0 --177.60,0.00,10.42,0.00,1.00,172.80,4.80,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0 -168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0 -168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0 -163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0 -163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0 -158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0 -153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0 -148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0 -139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0 -129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0 -115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0 -96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0 -76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0 -57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0 -43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0 -33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0 -28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0 -24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0 -19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0 -14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0 -14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0 -14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0 -9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0 -9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0 -4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0 -4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0 -0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,9.59,0.00,1.00,0.00,0.00,0 --4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0 --4.80,14.40,9.55,0.00,1.00,9.60,9.60,0 --4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0 --9.60,24.00,9.51,0.00,1.00,19.20,19.20,0 --9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0 --9.60,33.60,9.46,0.00,1.00,24.00,28.80,0 --14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0 --14.40,38.40,9.42,0.00,1.00,33.60,33.60,0 --19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0 --24.00,48.00,9.38,0.00,1.00,43.20,43.20,0 --24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0 --28.80,57.60,9.34,0.00,1.00,52.80,52.80,0 --38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0 --43.20,62.40,9.29,0.00,1.00,67.20,62.40,0 --52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0 --62.40,72.00,9.25,0.00,1.00,76.80,67.20,0 --76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0 --96.00,72.00,9.21,0.00,1.00,86.40,72.00,0 --110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0 --120.00,67.20,9.16,0.00,1.00,96.00,72.00,0 --134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0 --139.20,62.40,9.12,0.00,1.00,105.60,67.20,0 --148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0 --153.60,57.60,9.08,0.00,1.00,115.20,57.60,0 --158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0 --158.40,48.00,9.04,0.00,1.00,129.60,52.80,0 --163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0 --163.20,38.40,8.99,0.00,1.00,139.20,43.20,0 --168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0 --168.00,28.80,8.95,0.00,1.00,148.80,33.60,0 --172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0 --172.80,19.20,8.91,0.00,1.00,153.60,24.00,0 --172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0 --177.60,9.60,8.87,0.00,1.00,163.20,14.40,0 --177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0 --177.60,0.00,8.82,0.00,1.00,172.80,4.80,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0 -168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0 -163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0 -163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0 -158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0 -158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0 -153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0 -148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0 -139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0 -134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0 -120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0 -110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0 -96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0 -76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0 -62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0 -52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0 -43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0 -38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0 -28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0 -24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0 -24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0 -19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0 -14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0 -14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0 -9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0 -9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0 -9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0 -0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,7.99,0.00,1.00,0.00,0.00,0 --4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0 --4.80,14.40,7.95,0.00,1.00,9.60,9.60,0 --9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0 --9.60,24.00,7.90,0.00,1.00,19.20,19.20,0 --14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0 --14.40,28.80,7.86,0.00,1.00,28.80,24.00,0 --19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0 --19.20,38.40,7.82,0.00,1.00,38.40,33.60,0 --24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0 --28.80,48.00,7.78,0.00,1.00,48.00,43.20,0 --33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0 --38.40,52.80,7.73,0.00,1.00,57.60,52.80,0 --43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0 --48.00,62.40,7.69,0.00,1.00,67.20,57.60,0 --57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0 --67.20,67.20,7.65,0.00,1.00,76.80,62.40,0 --81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0 --91.20,67.20,7.60,0.00,1.00,86.40,67.20,0 --105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0 --115.20,67.20,7.56,0.00,1.00,96.00,67.20,0 --124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0 --134.40,57.60,7.52,0.00,1.00,105.60,62.40,0 --139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0 --144.00,52.80,7.48,0.00,1.00,115.20,57.60,0 --148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0 --153.60,43.20,7.43,0.00,1.00,124.80,48.00,0 --158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0 --163.20,38.40,7.39,0.00,1.00,134.40,38.40,0 --163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0 --168.00,28.80,7.35,0.00,1.00,144.00,33.60,0 --168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0 --172.80,19.20,7.31,0.00,1.00,153.60,24.00,0 --172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0 --177.60,9.60,7.26,0.00,1.00,163.20,14.40,0 --177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0 --177.60,0.00,7.22,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0 -163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0 -158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0 -153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0 -148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0 -144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0 -139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0 -134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0 -124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0 -115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0 -105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0 -91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0 -81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0 -67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0 -57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0 -48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0 -43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0 -38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0 -33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0 -28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0 -24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0 -19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0 -19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0 -14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0 -9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0 -0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,6.39,0.00,1.00,0.00,0.00,0 --4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0 --4.80,14.40,6.34,0.00,1.00,9.60,9.60,0 --9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0 --9.60,19.20,6.30,0.00,1.00,19.20,14.40,0 --14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0 --19.20,28.80,6.26,0.00,1.00,28.80,24.00,0 --19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0 --24.00,38.40,6.22,0.00,1.00,38.40,33.60,0 --28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0 --33.60,43.20,6.17,0.00,1.00,48.00,38.40,0 --38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0 --43.20,52.80,6.13,0.00,1.00,57.60,48.00,0 --48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0 --52.80,57.60,6.09,0.00,1.00,67.20,52.80,0 --62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0 --72.00,62.40,6.05,0.00,1.00,76.80,57.60,0 --81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0 --91.20,62.40,6.00,0.00,1.00,86.40,62.40,0 --100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0 --110.40,62.40,5.96,0.00,1.00,96.00,62.40,0 --120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0 --129.60,57.60,5.92,0.00,1.00,105.60,57.60,0 --134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0 --139.20,48.00,5.87,0.00,1.00,115.20,52.80,0 --144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0 --148.80,43.20,5.83,0.00,1.00,124.80,48.00,0 --153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0 --158.40,33.60,5.79,0.00,1.00,134.40,38.40,0 --163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0 --163.20,28.80,5.75,0.00,1.00,144.00,28.80,0 --168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0 --168.00,19.20,5.70,0.00,1.00,153.60,24.00,0 --172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0 --172.80,9.60,5.66,0.00,1.00,163.20,14.40,0 --177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0 --177.60,0.00,5.62,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0 -163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0 -158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0 -148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0 -144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0 -139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0 -134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0 -129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0 -120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0 -110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0 -100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0 -91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0 -81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0 -72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0 -62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0 -52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0 -48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0 -43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0 -38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0 -33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0 -28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0 -24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0 -19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0 -19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0 -9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0 -4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0 -0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,4.79,0.00,1.00,0.00,0.00,0 --4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0 --9.60,14.40,4.74,0.00,1.00,9.60,9.60,0 --9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0 --14.40,19.20,4.70,0.00,1.00,19.20,14.40,0 --14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0 --19.20,28.80,4.66,0.00,1.00,28.80,24.00,0 --24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0 --28.80,33.60,4.61,0.00,1.00,38.40,28.80,0 --28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0 --33.60,43.20,4.57,0.00,1.00,48.00,38.40,0 --38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0 --48.00,48.00,4.53,0.00,1.00,57.60,43.20,0 --52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0 --57.60,52.80,4.49,0.00,1.00,67.20,48.00,0 --67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0 --76.80,57.60,4.44,0.00,1.00,76.80,52.80,0 --81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0 --91.20,57.60,4.40,0.00,1.00,86.40,57.60,0 --100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0 --110.40,57.60,4.36,0.00,1.00,96.00,57.60,0 --115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0 --124.80,52.80,4.32,0.00,1.00,105.60,52.80,0 --129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0 --139.20,48.00,4.27,0.00,1.00,115.20,48.00,0 --144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0 --148.80,38.40,4.23,0.00,1.00,124.80,43.20,0 --153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0 --153.60,33.60,4.19,0.00,1.00,134.40,38.40,0 --158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0 --163.20,24.00,4.14,0.00,1.00,144.00,28.80,0 --163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0 --168.00,19.20,4.10,0.00,1.00,153.60,24.00,0 --172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0 --172.80,9.60,4.06,0.00,1.00,163.20,14.40,0 --177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0 --177.60,0.00,4.02,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0 -163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0 -163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0 -158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0 -148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0 -144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0 -139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0 -129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0 -124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0 -115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0 -110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0 -100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0 -91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0 -81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0 -76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0 -67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0 -57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0 -52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0 -48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0 -38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0 -33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0 -28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0 -28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0 -24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0 -19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0 -14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0 -14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0 -9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0 -0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.18,0.00,1.00,0.00,0.00,0 --4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0 --9.60,9.60,3.14,0.00,1.00,9.60,9.60,0 --9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0 --14.40,19.20,3.10,0.00,1.00,19.20,14.40,0 --19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0 --24.00,24.00,3.05,0.00,1.00,28.80,24.00,0 --24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0 --28.80,33.60,3.01,0.00,1.00,38.40,28.80,0 --33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0 --38.40,38.40,2.97,0.00,1.00,48.00,33.60,0 --43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0 --48.00,43.20,2.93,0.00,1.00,57.60,43.20,0 --52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0 --62.40,48.00,2.88,0.00,1.00,67.20,48.00,0 --67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0 --76.80,52.80,2.84,0.00,1.00,76.80,48.00,0 --86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0 --91.20,52.80,2.80,0.00,1.00,86.40,52.80,0 --100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0 --105.60,52.80,2.76,0.00,1.00,96.00,52.80,0 --115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0 --120.00,48.00,2.71,0.00,1.00,105.60,48.00,0 --129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0 --134.40,43.20,2.67,0.00,1.00,115.20,43.20,0 --139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0 --144.00,38.40,2.63,0.00,1.00,124.80,38.40,0 --148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0 --153.60,33.60,2.58,0.00,1.00,134.40,33.60,0 --158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0 --158.40,24.00,2.54,0.00,1.00,144.00,28.80,0 --163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0 --168.00,19.20,2.50,0.00,1.00,153.60,19.20,0 --168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.46,0.00,1.00,163.20,14.40,0 --177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.41,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0 -158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0 -148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0 -144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0 -139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0 -134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0 -129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0 -120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0 -115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0 -105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0 -100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0 -91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0 -86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0 -76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0 -67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0 -62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0 -52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0 -48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0 -43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0 -38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0 -33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0 -28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0 -24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0 -24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0 -19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0 -0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.58,0.00,1.00,0.00,0.00,0 --4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.54,0.00,1.00,9.60,4.80,0 --14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0 --14.40,19.20,1.50,0.00,1.00,19.20,14.40,0 --19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0 --24.00,24.00,1.45,0.00,1.00,28.80,19.20,0 --28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0 --33.60,28.80,1.41,0.00,1.00,38.40,28.80,0 --38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0 --43.20,38.40,1.37,0.00,1.00,48.00,33.60,0 --48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0 --52.80,43.20,1.32,0.00,1.00,57.60,38.40,0 --57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0 --62.40,43.20,1.28,0.00,1.00,67.20,43.20,0 --72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0 --76.80,48.00,1.24,0.00,1.00,76.80,43.20,0 --86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0 --91.20,48.00,1.20,0.00,1.00,86.40,48.00,0 --100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0 --105.60,48.00,1.15,0.00,1.00,96.00,48.00,0 --110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0 --120.00,43.20,1.11,0.00,1.00,105.60,43.20,0 --124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0 --129.60,38.40,1.07,0.00,1.00,115.20,43.20,0 --134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0 --139.20,33.60,1.03,0.00,1.00,124.80,38.40,0 --144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0 --148.80,28.80,0.98,0.00,1.00,134.40,33.60,0 --153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0 --158.40,24.00,0.94,0.00,1.00,144.00,24.00,0 --163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0 --163.20,14.40,0.90,0.00,1.00,153.60,19.20,0 --168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.85,0.00,1.00,163.20,14.40,0 --172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.81,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0 -148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0 -144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0 -139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0 -134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0 -129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0 -124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0 -120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0 -110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0 -105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0 -100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0 -91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0 -86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0 -76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0 -72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0 -62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0 -57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0 -52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0 -48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0 -43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0 -38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0 -28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0 -19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0 -0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,0.00,0.00,1.00,0.00,0.00,0 --4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0 --9.60,9.60,0.04,0.00,1.00,9.60,4.80,0 --14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0 --19.20,14.40,0.09,0.00,1.00,19.20,14.40,0 --24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0 --24.00,24.00,0.13,0.00,1.00,28.80,19.20,0 --28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0 --33.60,28.80,0.17,0.00,1.00,38.40,24.00,0 --38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0 --43.20,33.60,0.21,0.00,1.00,48.00,28.80,0 --48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0 --52.80,38.40,0.26,0.00,1.00,57.60,33.60,0 --62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0 --67.20,38.40,0.30,0.00,1.00,67.20,38.40,0 --72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0 --76.80,43.20,0.34,0.00,1.00,76.80,38.40,0 --86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0 --91.20,43.20,0.38,0.00,1.00,86.40,43.20,0 --96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0 --105.60,43.20,0.43,0.00,1.00,96.00,43.20,0 --110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0 --115.20,38.40,0.47,0.00,1.00,105.60,38.40,0 --124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0 --129.60,38.40,0.51,0.00,1.00,115.20,38.40,0 --134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0 --139.20,33.60,0.56,0.00,1.00,124.80,33.60,0 --144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0 --148.80,28.80,0.60,0.00,1.00,134.40,28.80,0 --153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0 --158.40,19.20,0.64,0.00,1.00,144.00,24.00,0 --158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0 --163.20,14.40,0.68,0.00,1.00,153.60,19.20,0 --168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.73,0.00,1.00,163.20,9.60,0 --172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.77,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0 -158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0 -158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0 -148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0 -144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0 -139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0 -134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0 -129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0 -124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0 -115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0 -110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0 -105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0 -96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0 -91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0 -86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0 -76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0 -72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0 -67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0 -62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0 -52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0 -48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0 -43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0 -38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0 -28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0 -19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0 -0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.60,0.00,1.00,0.00,0.00,0 --9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.64,0.00,1.00,9.60,4.80,0 --14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0 --19.20,14.40,1.69,0.00,1.00,19.20,9.60,0 --24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0 --28.80,19.20,1.73,0.00,1.00,28.80,19.20,0 --33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0 --38.40,24.00,1.77,0.00,1.00,38.40,24.00,0 --43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0 --48.00,28.80,1.82,0.00,1.00,48.00,28.80,0 --52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0 --57.60,33.60,1.86,0.00,1.00,57.60,28.80,0 --62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0 --67.20,38.40,1.90,0.00,1.00,67.20,33.60,0 --72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0 --81.60,38.40,1.94,0.00,1.00,76.80,38.40,0 --86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0 --91.20,38.40,1.99,0.00,1.00,86.40,38.40,0 --96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0 --105.60,38.40,2.03,0.00,1.00,96.00,38.40,0 --110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0 --115.20,33.60,2.07,0.00,1.00,105.60,33.60,0 --120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0 --124.80,33.60,2.11,0.00,1.00,115.20,33.60,0 --129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0 --134.40,28.80,2.16,0.00,1.00,124.80,28.80,0 --139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0 --144.00,24.00,2.20,0.00,1.00,134.40,24.00,0 --148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0 --153.60,19.20,2.24,0.00,1.00,144.00,19.20,0 --158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0 --163.20,14.40,2.29,0.00,1.00,153.60,14.40,0 --168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.33,0.00,1.00,163.20,9.60,0 --172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.37,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0 -153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0 -144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0 -134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0 -124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0 -120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0 -115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0 -110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0 -105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0 -96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0 -91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0 -86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0 -81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0 -72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0 -67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0 -62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0 -57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0 -52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0 -48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0 -43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0 -38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0 -33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0 -28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0 -14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.20,0.00,1.00,0.00,0.00,0 --9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0 --14.40,9.60,3.25,0.00,1.00,9.60,4.80,0 --14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0 --19.20,14.40,3.29,0.00,1.00,19.20,9.60,0 --24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0 --28.80,19.20,3.33,0.00,1.00,28.80,14.40,0 --33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0 --38.40,24.00,3.38,0.00,1.00,38.40,19.20,0 --43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0 --48.00,24.00,3.42,0.00,1.00,48.00,24.00,0 --52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0 --57.60,28.80,3.46,0.00,1.00,57.60,28.80,0 --62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0 --67.20,33.60,3.50,0.00,1.00,67.20,28.80,0 --72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0 --81.60,33.60,3.55,0.00,1.00,76.80,33.60,0 --86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0 --91.20,33.60,3.59,0.00,1.00,86.40,33.60,0 --96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0 --100.80,33.60,3.63,0.00,1.00,96.00,33.60,0 --110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0 --115.20,33.60,3.67,0.00,1.00,105.60,28.80,0 --120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0 --124.80,28.80,3.72,0.00,1.00,115.20,28.80,0 --129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0 --134.40,24.00,3.76,0.00,1.00,124.80,24.00,0 --139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0 --144.00,19.20,3.80,0.00,1.00,134.40,24.00,0 --148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0 --153.60,14.40,3.85,0.00,1.00,144.00,19.20,0 --158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0 --163.20,9.60,3.89,0.00,1.00,153.60,14.40,0 --168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0 --168.00,4.80,3.93,0.00,1.00,163.20,9.60,0 --172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0 --177.60,0.00,3.97,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0 -124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0 -120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0 -115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0 -110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0 -100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0 -96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0 -91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0 -86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0 -81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0 -72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0 -67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0 -62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0 -57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0 -52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0 -48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0 -43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0 -38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0 -33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0 -28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0 -24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0 -14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0 -14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0 --4.80,0.00,4.81,0.00,1.00,0.00,0.00,0 --9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0 --14.40,4.80,4.85,0.00,1.00,9.60,4.80,0 --19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0 --19.20,9.60,4.89,0.00,1.00,19.20,9.60,0 --24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0 --28.80,14.40,4.93,0.00,1.00,28.80,14.40,0 --33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0 --38.40,19.20,4.98,0.00,1.00,38.40,14.40,0 --43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0 --48.00,24.00,5.02,0.00,1.00,48.00,19.20,0 --52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0 --57.60,24.00,5.06,0.00,1.00,57.60,24.00,0 --62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0 --72.00,28.80,5.11,0.00,1.00,67.20,24.00,0 --76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0 --81.60,28.80,5.15,0.00,1.00,76.80,28.80,0 --86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0 --91.20,28.80,5.19,0.00,1.00,86.40,28.80,0 --96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0 --100.80,28.80,5.23,0.00,1.00,96.00,28.80,0 --105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0 --115.20,28.80,5.28,0.00,1.00,105.60,28.80,0 --120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0 --124.80,24.00,5.32,0.00,1.00,115.20,24.00,0 --129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0 --134.40,24.00,5.36,0.00,1.00,124.80,24.00,0 --139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0 --144.00,19.20,5.40,0.00,1.00,134.40,19.20,0 --148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0 --153.60,14.40,5.45,0.00,1.00,144.00,14.40,0 --158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0 --163.20,9.60,5.49,0.00,1.00,153.60,9.60,0 --163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0 --168.00,4.80,5.53,0.00,1.00,163.20,9.60,0 --172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0 --177.60,0.00,5.58,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0 -163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0 -129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0 -124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0 -120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0 -115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0 -105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0 -100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0 -96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0 -91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0 -86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0 -81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0 -76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0 -72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0 -62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0 -57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0 -52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0 -48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0 -43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0 -38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0 -33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0 -28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0 -24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0 -19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0 -19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0 -0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,6.41,0.00,1.00,0.00,0.00,0 --9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0 --14.40,4.80,6.45,0.00,1.00,9.60,4.80,0 --19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0 --24.00,9.60,6.49,0.00,1.00,19.20,9.60,0 --28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0 --33.60,14.40,6.54,0.00,1.00,28.80,9.60,0 --33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0 --38.40,14.40,6.58,0.00,1.00,38.40,14.40,0 --43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0 --48.00,19.20,6.62,0.00,1.00,48.00,14.40,0 --57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0 --62.40,19.20,6.66,0.00,1.00,57.60,19.20,0 --67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0 --72.00,24.00,6.71,0.00,1.00,67.20,19.20,0 --76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0 --81.60,24.00,6.75,0.00,1.00,76.80,24.00,0 --86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0 --91.20,24.00,6.79,0.00,1.00,86.40,24.00,0 --96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0 --100.80,24.00,6.84,0.00,1.00,96.00,24.00,0 --105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0 --110.40,24.00,6.88,0.00,1.00,105.60,24.00,0 --115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0 --120.00,19.20,6.92,0.00,1.00,115.20,19.20,0 --129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0 --134.40,19.20,6.96,0.00,1.00,124.80,19.20,0 --139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0 --144.00,14.40,7.01,0.00,1.00,134.40,14.40,0 --148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0 --148.80,14.40,7.05,0.00,1.00,144.00,14.40,0 --153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0 --158.40,9.60,7.09,0.00,1.00,153.60,9.60,0 --163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0 --168.00,4.80,7.13,0.00,1.00,163.20,4.80,0 --172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0 --177.60,0.00,7.18,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0 -163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0 -158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0 -148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0 -144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0 -134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0 -129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0 -120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0 -115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0 -110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0 -105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0 -100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0 -96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0 -91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0 -86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0 -81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0 -76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0 -72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0 -67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0 -62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0 -57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0 -48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0 -43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0 -38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0 -33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0 -33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0 -28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0 -24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0 -19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0 -0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,8.01,0.00,1.00,0.00,0.00,0 --9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0 --14.40,4.80,8.05,0.00,1.00,9.60,4.80,0 --19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0 --24.00,9.60,8.10,0.00,1.00,19.20,4.80,0 --28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0 --33.60,9.60,8.14,0.00,1.00,24.00,9.60,0 --38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0 --43.20,14.40,8.18,0.00,1.00,33.60,9.60,0 --48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0 --52.80,14.40,8.22,0.00,1.00,43.20,14.40,0 --57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0 --62.40,19.20,8.27,0.00,1.00,52.80,14.40,0 --67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0 --72.00,19.20,8.31,0.00,1.00,62.40,14.40,0 --76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0 --81.60,19.20,8.35,0.00,1.00,76.80,19.20,0 --86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0 --91.20,19.20,8.40,0.00,1.00,86.40,19.20,0 --96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0 --100.80,19.20,8.44,0.00,1.00,96.00,19.20,0 --105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0 --110.40,19.20,8.48,0.00,1.00,105.60,19.20,0 --115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0 --120.00,14.40,8.52,0.00,1.00,120.00,14.40,0 --124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0 --129.60,14.40,8.57,0.00,1.00,129.60,14.40,0 --134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0 --139.20,14.40,8.61,0.00,1.00,139.20,14.40,0 --144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0 --148.80,9.60,8.65,0.00,1.00,148.80,9.60,0 --153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0 --158.40,4.80,8.69,0.00,1.00,158.40,9.60,0 --163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0 --168.00,4.80,8.74,0.00,1.00,163.20,4.80,0 --172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0 -148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0 -144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0 -139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0 -134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0 -129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0 -124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0 -120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0 -115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0 -110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0 -105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0 -100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0 -96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0 -91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0 -86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0 -81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0 -76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0 -72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0 -67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0 -62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0 -52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0 -48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0 -43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0 -38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0 -33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0 -28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0 -24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0 -19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0 -9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0 -0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,9.61,0.00,1.00,0.00,0.00,0 --9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0 --14.40,4.80,9.66,0.00,1.00,9.60,0.00,0 --19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0 --24.00,4.80,9.70,0.00,1.00,14.40,4.80,0 --28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0 --33.60,9.60,9.74,0.00,1.00,24.00,4.80,0 --38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0 --43.20,9.60,9.78,0.00,1.00,33.60,9.60,0 --48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0 --52.80,9.60,9.83,0.00,1.00,43.20,9.60,0 --57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0 --62.40,14.40,9.87,0.00,1.00,52.80,9.60,0 --67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0 --72.00,14.40,9.91,0.00,1.00,62.40,14.40,0 --76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0 --81.60,14.40,9.95,0.00,1.00,76.80,14.40,0 --86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0 --91.20,14.40,10.00,0.00,1.00,86.40,14.40,0 --96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0 --100.80,14.40,10.04,0.00,1.00,96.00,14.40,0 --105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0 --110.40,14.40,10.08,0.00,1.00,110.40,14.40,0 --115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0 --120.00,14.40,10.13,0.00,1.00,120.00,9.60,0 --124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0 --129.60,9.60,10.17,0.00,1.00,129.60,9.60,0 --134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0 --139.20,9.60,10.21,0.00,1.00,139.20,9.60,0 --144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0 --148.80,9.60,10.25,0.00,1.00,148.80,9.60,0 --153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0 --158.40,4.80,10.30,0.00,1.00,158.40,4.80,0 --163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0 --168.00,4.80,10.34,0.00,1.00,168.00,4.80,0 --172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0 -148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0 -144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0 -139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0 -134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0 -129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0 -124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0 -120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0 -115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0 -110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0 -105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0 -100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0 -96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0 -91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0 -86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0 -81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0 -76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0 -72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0 -67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0 -62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0 -48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0 -43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0 -38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0 -33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0 -28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0 -24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0 -19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0 -14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,11.21,0.00,1.00,0.00,0.00,0 --9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0 --14.40,0.00,11.26,0.00,1.00,9.60,0.00,0 --19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0 --24.00,4.80,11.30,0.00,1.00,14.40,4.80,0 --28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0 --33.60,4.80,11.34,0.00,1.00,24.00,4.80,0 --38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0 --43.20,4.80,11.39,0.00,1.00,33.60,4.80,0 --48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0 --52.80,9.60,11.43,0.00,1.00,43.20,4.80,0 --57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0 --62.40,9.60,11.47,0.00,1.00,52.80,4.80,0 --67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0 --72.00,9.60,11.51,0.00,1.00,62.40,9.60,0 --76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0 --81.60,9.60,11.56,0.00,1.00,72.00,9.60,0 --86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0 --91.20,9.60,11.60,0.00,1.00,86.40,9.60,0 --96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0 --100.80,9.60,11.64,0.00,1.00,96.00,9.60,0 --105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0 --110.40,9.60,11.68,0.00,1.00,110.40,9.60,0 --115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0 --120.00,9.60,11.73,0.00,1.00,120.00,9.60,0 --124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0 --129.60,9.60,11.77,0.00,1.00,129.60,4.80,0 --134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0 --139.20,4.80,11.81,0.00,1.00,139.20,4.80,0 --144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0 --148.80,4.80,11.86,0.00,1.00,148.80,4.80,0 --153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0 --158.40,4.80,11.90,0.00,1.00,158.40,4.80,0 --163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0 --168.00,0.00,11.94,0.00,1.00,168.00,4.80,0 --172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0 -158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0 -148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0 -144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0 -139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0 -134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0 -129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0 -124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0 -120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0 -115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0 -110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0 -105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0 -100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0 -96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0 -91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0 -86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0 -81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0 -76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0 -72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0 -67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0 -62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0 -57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0 -43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0 -33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0 -28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0 -24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0 -19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,12.82,0.00,1.00,0.00,0.00,0 --9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0 --14.40,0.00,12.86,0.00,1.00,9.60,0.00,0 --19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0 --24.00,0.00,12.90,0.00,1.00,14.40,0.00,0 --28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0 --33.60,4.80,12.95,0.00,1.00,24.00,0.00,0 --38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0 --43.20,4.80,12.99,0.00,1.00,28.80,0.00,0 --48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0 --52.80,4.80,13.03,0.00,1.00,38.40,4.80,0 --57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0 --62.40,4.80,13.07,0.00,1.00,48.00,4.80,0 --67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0 --72.00,4.80,13.12,0.00,1.00,62.40,4.80,0 --76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0 --81.60,4.80,13.16,0.00,1.00,72.00,4.80,0 --86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0 --91.20,4.80,13.20,0.00,1.00,86.40,4.80,0 --96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0 --100.80,4.80,13.24,0.00,1.00,96.00,4.80,0 --105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0 --110.40,4.80,13.29,0.00,1.00,110.40,4.80,0 --115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0 --120.00,4.80,13.33,0.00,1.00,120.00,4.80,0 --124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0 --129.60,4.80,13.37,0.00,1.00,134.40,4.80,0 --134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0 --139.20,4.80,13.42,0.00,1.00,144.00,4.80,0 --144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0 --148.80,4.80,13.46,0.00,1.00,153.60,0.00,0 --153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0 --158.40,0.00,13.50,0.00,1.00,158.40,0.00,0 --163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0 --168.00,0.00,13.54,0.00,1.00,168.00,0.00,0 --172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0 -163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0 -158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0 -153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0 -148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0 -144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0 -139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0 -134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0 -129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0 -124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0 -120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0 -115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0 -110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0 -105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0 -100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0 -96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0 -91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0 -86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0 -81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0 -76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0 -72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0 -67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0 -57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0 -52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0 -43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0 -33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0 -28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0 -24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0 -19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0 -14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0 -9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,14.42,0.00,1.00,0.00,0.00,0 --9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0 --14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0 --19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0 --24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0 --28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0 --33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0 --38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0 --43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0 --48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0 --52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0 --57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0 --62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0 --67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0 --72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0 --76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0 --81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0 --86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0 --91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0 --96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0 --100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0 --105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0 --110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0 --115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0 --120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0 --124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0 --129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0 --134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0 --139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0 --144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0 --148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0 --153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0 --158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0 --163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0 --168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0 --172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0 -177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0 -172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0 -168.00,0.00,15.25,0.00,1.00,4.80,0.00,0 -163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0 -158.40,0.00,15.30,0.00,1.00,9.60,0.00,0 -153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0 -148.80,0.00,15.34,0.00,1.00,19.20,0.00,0 -144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0 -139.20,0.00,15.38,0.00,1.00,28.80,0.00,0 -134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0 -129.60,0.00,15.42,0.00,1.00,33.60,0.00,0 -124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0 -120.00,0.00,15.47,0.00,1.00,43.20,0.00,0 -115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0 -110.40,0.00,15.51,0.00,1.00,57.60,0.00,0 -105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0 -100.80,0.00,15.55,0.00,1.00,67.20,0.00,0 -96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0 -91.20,0.00,15.59,0.00,1.00,81.60,0.00,0 -86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0 -81.60,0.00,15.64,0.00,1.00,96.00,0.00,0 -76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0 -72.00,0.00,15.68,0.00,1.00,110.40,0.00,0 -67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0 -62.40,0.00,15.72,0.00,1.00,120.00,0.00,0 -57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0 -52.80,0.00,15.77,0.00,1.00,134.40,0.00,0 -48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0 -43.20,0.00,15.81,0.00,1.00,144.00,0.00,0 -38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0 -33.60,0.00,15.85,0.00,1.00,153.60,0.00,0 -28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0 -24.00,0.00,15.89,0.00,1.00,158.40,0.00,0 -19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0 -14.40,0.00,15.94,0.00,1.00,168.00,0.00,0 -9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0 -4.80,0.00,15.98,0.00,1.00,172.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 diff --git a/scripts/testv/stvOMASA_3ISM_2MASA2TC32c_ISM3.csv b/scripts/testv/stvOMASA_3ISM_2MASA2TC32c_ISM3.csv deleted file mode 100644 index 14eee9b693b536fa2fd22d2813d7f588b8930b06..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_3ISM_2MASA2TC32c_ISM3.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0 --177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0 -4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0 --168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0 -14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0 --163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0 -19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0 --153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0 -28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0 --148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0 -38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0 --139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0 -48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0 --124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0 -57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0 --115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0 -72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0 --100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0 -86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0 --86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0 -100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0 --76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0 -110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0 --62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0 -124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0 --52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0 -134.40,33.60,0.28,0.00,1.00,177.60,0.00,0 --38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0 -144.00,28.80,0.30,0.00,1.00,177.60,0.00,0 --33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0 -153.60,24.00,0.32,0.00,1.00,177.60,0.00,0 --24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0 -158.40,19.20,0.34,0.00,1.00,177.60,0.00,0 --14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0 -168.00,9.60,0.36,0.00,1.00,177.60,0.00,0 --9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0 -172.80,4.80,0.38,0.00,1.00,177.60,0.00,0 --0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0 --177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0 -4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0 -14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0 -19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0 --158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0 -28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0 --148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0 -33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0 --139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0 -43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0 --129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0 -57.60,38.40,15.47,0.00,1.00,177.60,0.00,0 --120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0 -67.20,43.20,15.44,0.00,1.00,177.60,0.00,0 --105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0 -81.60,43.20,15.42,0.00,1.00,177.60,0.00,0 --91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0 -96.00,43.20,15.40,0.00,1.00,0.00,0.00,0 --76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0 -110.40,43.20,15.38,0.00,1.00,0.00,0.00,0 --67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0 -120.00,38.40,15.36,0.00,1.00,0.00,0.00,0 --52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0 -129.60,38.40,15.34,0.00,1.00,0.00,0.00,0 --43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0 -144.00,33.60,15.32,0.00,1.00,0.00,0.00,0 --33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0 -148.80,24.00,15.30,0.00,1.00,0.00,0.00,0 --24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0 -158.40,19.20,15.27,0.00,1.00,0.00,0.00,0 --19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0 -168.00,14.40,15.25,0.00,1.00,0.00,0.00,0 --9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0 -172.80,4.80,15.23,0.00,1.00,0.00,0.00,0 --4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0 -0.00,0.00,15.21,0.00,1.00,0.00,0.00,0 --177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0 -9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0 -14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0 --163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0 -24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0 --153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0 -28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0 --144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0 -38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0 --134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0 -48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0 --124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0 -62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0 --115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0 -72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0 --100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0 -86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0 --86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0 -96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0 --76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0 -110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0 --62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0 -120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0 --52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0 -134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0 --43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0 -144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0 --33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0 -148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0 --24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0 -158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0 --19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0 -168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0 --9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0 -172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0 -4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0 -14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0 -19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0 --153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0 -28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0 --148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0 -38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0 --139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0 -48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0 --124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0 -57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0 --115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0 -72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0 --105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0 -81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0 --91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0 -96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0 --76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0 -105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0 --67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0 -120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0 --57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0 -129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0 --43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0 -139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0 --33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0 -148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0 --28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0 -158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0 --19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0 -163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0 --9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0 -172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0 -0.00,0.00,1.60,0.00,1.00,0.00,0.00,0 --177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0 -9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0 -14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0 --158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0 -24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0 --153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0 -33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0 --144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0 -43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0 --134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0 -52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0 --124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0 -62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0 --110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0 -72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0 --100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0 -86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0 --86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0 -96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0 --76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0 -110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0 --67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0 -120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0 --52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0 -129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0 --43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0 -139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0 --33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0 -148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0 --24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0 -158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0 --19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0 -168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0 -172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0 -4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0 -14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0 --163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0 -24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0 --153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0 -28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0 --144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0 -38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0 --134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0 -48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0 --124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0 -62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0 --115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0 -72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0 --100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0 -81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0 --91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0 -96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0 --81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0 -105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0 --67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0 -115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0 --57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0 -129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0 --48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0 -139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0 --38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0 -148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0 --28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0 -153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0 --19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0 -163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0 --9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0 -172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0 -0.00,0.00,13.61,0.00,1.00,0.00,0.00,0 --177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0 -9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0 --168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0 -24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0 --148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0 -33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0 --139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0 -43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0 --129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0 -52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0 --120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0 -62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0 --110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0 -76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0 --100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0 -86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0 --86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0 -96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0 --76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0 -105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0 --67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0 -120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0 --57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0 -129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0 --48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0 -139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0 --38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0 -148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0 -158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0 --19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0 -163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0 -172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0 -4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0 -14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0 --163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0 -24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0 --153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0 -33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0 --144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0 -43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0 --134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0 -52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0 --124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0 -62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0 --115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0 -72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0 --100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0 -81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0 --91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0 -96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0 --81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0 -105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0 --67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0 -115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0 --57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0 -124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0 --48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0 -134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0 --38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0 -144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0 --28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0 -153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0 --19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0 -163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0 --14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0 -172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0 --4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0 -0.00,0.00,3.20,0.00,1.00,0.00,0.00,0 --177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0 -9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0 -19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0 -24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0 --148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0 -33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0 --139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0 -43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0 --129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0 -52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0 --120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0 -67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0 --110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0 -76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0 --100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0 -86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0 --86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0 -96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0 --76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0 -105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0 --67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0 -115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0 --57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0 -129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0 --48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0 -139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0 --38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0 -148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0 -153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0 --19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0 -163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0 -172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0 -4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0 -14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0 -24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0 --153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0 -33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0 --144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0 -43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0 --134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0 -52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0 --124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0 -62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0 --110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0 -72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0 --100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0 -81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0 --91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0 -96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0 --81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0 -105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0 --72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0 -115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0 --57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0 -124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0 --48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0 -134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0 --38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0 -144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0 --28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0 -153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0 --24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0 -163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0 --14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0 -172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -0.00,0.00,12.01,0.00,1.00,0.00,0.00,0 --177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0 -9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0 --158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0 -28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0 --148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0 -38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0 --139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0 -48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0 --129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0 -57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0 --120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0 -67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0 --110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0 -76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0 --100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0 -86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0 --86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0 -96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0 --76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0 -105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0 --67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0 -115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0 --57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0 -124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0 --48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0 -134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0 --38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0 -144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0 --28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0 -153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0 --19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0 -163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0 -172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0 -4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0 -14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0 -24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0 --148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0 -33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0 --139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0 -43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0 --129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0 -52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0 --120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0 -62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0 --110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0 -72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0 --100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0 -81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0 --91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0 -96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0 --81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0 -105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0 --72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0 -115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0 --62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0 -124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0 --52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0 -134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0 --43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0 -144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0 --33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0 -153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0 --24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0 -163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0 -172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0 -0.00,0.00,4.81,0.00,1.00,0.00,0.00,0 --177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0 -9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0 -19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0 -28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0 --148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0 -38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0 --139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0 -48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0 --129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0 -57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0 --120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0 -67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0 --110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0 -76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0 --100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0 -86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0 --86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0 -96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0 --76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0 -105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0 --67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0 -115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0 --57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0 -124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0 --48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0 -134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0 --38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0 -144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0 --28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0 -153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0 --19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0 -163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0 --9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0 -172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0 -4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0 -14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0 -24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0 --148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0 -33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0 --139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0 -43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0 --129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0 -52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0 --120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0 -62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0 --110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0 -72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0 --100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0 -81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0 --91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0 -96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0 --81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0 -105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0 --72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0 -115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0 --62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0 -124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0 --52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0 -134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0 --43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0 -144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0 --33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0 -153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0 --24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0 -163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0 -172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -0.00,0.00,10.40,0.00,1.00,0.00,0.00,0 --177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0 -9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0 -19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0 -28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0 --148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0 -38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0 --139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0 -48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0 --129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0 -57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0 --120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0 -67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0 --110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0 -76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0 --100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0 -86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0 --86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0 -96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0 --76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0 -105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0 --67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0 -115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0 --57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0 -124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0 --48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0 -134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0 --38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0 -144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0 --28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0 -153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0 -163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0 --9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0 -172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0 -4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0 -14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0 -24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0 -33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0 --139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0 -43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0 --129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0 -52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0 --120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0 -62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0 --110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0 -72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0 --100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0 -81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0 --91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0 -96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0 --81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0 -105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0 --72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0 -115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0 --62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0 -124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0 --52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0 -134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0 --43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0 -144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0 --33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0 -153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0 --24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0 -163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0 -172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,6.41,0.00,1.00,0.00,0.00,0 --177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0 -9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0 -19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0 --158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0 -28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0 --148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0 -38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0 --139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0 -48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0 --129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0 -57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0 --120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0 -67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0 --110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0 -76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0 --100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0 -86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0 --86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0 -96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0 --76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0 -105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0 --67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0 -115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0 --57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0 -124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0 --48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0 -134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0 --38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0 -144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0 --28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0 -153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0 -163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0 -172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0 -4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0 -14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0 --158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0 -24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0 -33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0 --139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0 -43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0 --129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0 -52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0 --120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0 -62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0 --110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0 -72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0 --100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0 -81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0 --91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0 -96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0 --81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0 -105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0 --72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0 -115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0 --62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0 -124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0 --52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0 -134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0 --43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0 -144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0 --33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0 -153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0 --24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0 -163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0 --14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0 -172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.80,0.00,1.00,0.00,0.00,0 --177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0 -9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0 -19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0 --158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0 -28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0 --148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0 -38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0 --139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0 -48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0 --129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0 -57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0 --120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0 -67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0 --110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0 -76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0 --100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0 -86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0 --86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0 -96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0 --76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0 -105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0 --67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0 -115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0 --57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0 -124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0 --48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0 -134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0 --38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0 -144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0 --28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0 -153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0 --19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0 -163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0 -172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0 --0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0 -4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0 --168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0 -14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0 --158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0 -24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0 --148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0 -33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0 --139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0 -43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0 --129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0 -52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0 --120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0 -62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0 --110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0 -72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0 --100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0 -81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0 --91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0 -96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0 --81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0 -105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0 --72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0 -115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0 --62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0 -124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0 --52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0 -134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0 --43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0 -144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0 --33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0 -153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0 --24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0 -163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0 --14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0 -172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.01,0.00,1.00,0.00,0.00,0 --177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0 --168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0 -19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0 --158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0 -28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0 --148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0 -38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0 --139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0 -48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0 --129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0 -57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0 --120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0 -67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0 --110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0 -76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0 --100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0 -86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0 --86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0 -96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0 --76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0 -105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0 --67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0 -115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0 --57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0 -124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0 --48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0 -134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0 --38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0 -144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0 --28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0 -153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0 --19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0 -163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0 --9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0 -172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0 --0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0 --168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0 -14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0 --158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0 -24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0 --148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0 -33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0 --139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0 -43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0 --129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0 -52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0 --120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0 -62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0 --110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0 -72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0 --100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0 -81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0 --91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0 -96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0 --81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0 -105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0 --72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0 -115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0 --62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0 -124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0 --52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0 -134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0 --43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0 -144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0 --33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0 -153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0 --24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0 -163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0 --14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0 --4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0 -0.00,0.00,7.20,0.00,1.00,0.00,0.00,0 --177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0 --168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0 -19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0 --158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0 --148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0 -38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0 --139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0 -48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0 --129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0 -57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0 --120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0 -67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0 --110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0 -76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0 --100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0 -86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0 --86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0 -96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0 --76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0 -105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0 --67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0 -115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0 --57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0 -124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0 --48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0 -134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0 --38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0 -144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0 --28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0 --19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0 -163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0 --9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0 --0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0 --168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0 -14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0 --158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0 --148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0 -33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0 --139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0 -43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0 --129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0 -52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0 --120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0 -62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0 --110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0 -72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0 --100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0 -81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0 --91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0 -96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0 --81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0 -105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0 --72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0 -115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0 --62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0 -124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0 --52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0 -134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0 --43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0 -144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0 --33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0 -153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0 --24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0 --14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0 --4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0 -0.00,0.00,9.61,0.00,1.00,0.00,0.00,0 --177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0 --168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0 --158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0 --148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0 --139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0 -48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0 --129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0 -57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0 --120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0 -67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0 --110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0 -76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0 --100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0 -86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0 --86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0 -96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0 --76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0 -105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0 --67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0 -115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0 --57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0 -124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0 --48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0 -134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0 --38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0 --28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0 --19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0 -163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0 --9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0 --0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0 --168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0 --158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0 --148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0 -33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0 --139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0 -43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0 --129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0 -52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0 --120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0 -62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0 --110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0 -72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0 --100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0 -81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0 --91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0 -96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0 --81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0 -105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0 --72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0 -115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0 --62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0 -124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0 --52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0 -134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0 --43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0 -144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0 --33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0 -153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0 --24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0 --14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0 -172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0 --4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0 -0.00,0.00,5.60,0.00,1.00,0.00,0.00,0 --177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0 --168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0 --158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0 -28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0 --148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0 --139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0 -48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0 --129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0 -57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0 --120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0 -67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0 --110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0 -76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0 --100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0 -86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0 --86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0 -96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0 --76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0 -105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0 --67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0 -115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0 --57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0 -124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0 --48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0 -134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0 --38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0 --28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0 -153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0 --19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0 --9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0 --0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0 --168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0 --158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0 --148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0 -33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0 --139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0 -43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0 --129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0 -52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0 --120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0 -62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0 --110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0 -72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0 --100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0 -81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0 --91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0 -96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0 --81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0 -105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0 --72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0 -115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0 --62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0 -124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0 --52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0 -134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0 --43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0 -144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0 --33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0 -153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0 --24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0 --14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0 --4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0 -0.00,0.00,11.21,0.00,1.00,0.00,0.00,0 --177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0 --168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0 --158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0 -28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0 --148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0 -38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0 --139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0 -48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0 --129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0 -57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0 --120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0 -67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0 --110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0 -76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0 --100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0 -86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0 --86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0 -96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0 --76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0 -105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0 --67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0 -115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0 --57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0 -124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0 --48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0 -134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0 --38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0 -144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0 --28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0 -153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0 --19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0 --9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0 --0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0 --168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0 --158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0 --148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0 --139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0 -43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0 --129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0 -52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0 --120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0 -62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0 --110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0 -72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0 --100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0 -81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0 --91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0 -96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0 --81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0 -105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0 --72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0 -115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0 --62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0 -124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0 --52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0 -134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0 --43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0 --33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0 -153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0 --24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0 -163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0 --14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0 --4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,3.99,0.00,1.00,0.00,0.00,0 --177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0 --168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0 -19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0 --158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0 --148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0 -33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0 --139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0 -43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0 --129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0 -52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0 --120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0 -62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0 --110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0 -76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0 --100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0 -86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0 --86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0 -96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0 --76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0 -105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0 --67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0 -120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0 --57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0 --48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0 -139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0 --38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0 -148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0 --28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0 -158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0 --19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0 -163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0 --9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0 --0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0 --168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0 --158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0 --153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0 --144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0 -43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0 --134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0 --124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0 -62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0 --110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0 -72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0 --100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0 -81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0 --91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0 -96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0 --81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0 -105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0 --72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0 -115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0 --57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0 -124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0 --48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0 -134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0 --38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0 --28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0 --24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0 --14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0 --4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,12.82,0.00,1.00,0.00,0.00,0 --177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0 --168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0 --158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0 --148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0 -33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0 --139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0 --129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0 --120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0 -62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0 --110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0 -76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0 --100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0 -86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0 --86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0 -96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0 --76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0 -110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0 --67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0 -120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0 --57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0 --48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0 --38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0 --28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0 --19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0 --9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0 --0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0 --168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0 --163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0 --153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0 -33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0 --144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0 -43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0 --134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0 --124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0 -62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0 --115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0 -72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0 --100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0 -81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0 --91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0 -96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0 --81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0 -105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0 --67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0 -115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0 --57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0 -124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0 --48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0 -134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0 --38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0 -144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0 --28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0 --19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0 --14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0 --4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,2.39,0.00,1.00,0.00,0.00,0 --177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0 --168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0 --158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0 --153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0 -33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0 --144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0 --134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0 --124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0 -62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0 --110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0 -72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0 --100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0 -86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0 --86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0 -96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0 --76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0 -110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0 --67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0 -120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0 --52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0 -129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0 --43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0 --33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0 --24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0 --19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0 --9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0 --0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0 --168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0 --163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0 --153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0 -28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0 --144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0 -38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0 --134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0 -48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0 --124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0 -57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0 --115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0 -72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0 --105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0 -81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0 --91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0 -96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0 --81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0 -105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0 --67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0 -120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0 --57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0 -129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0 --48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0 -139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0 --38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0 --28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0 -158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0 --19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0 --9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0 --4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0 -0.00,0.00,14.42,0.00,1.00,0.00,0.00,0 --177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0 --168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0 --163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0 -24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0 --153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0 -28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0 --144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0 -38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0 --134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0 -48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0 --124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0 -62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0 --115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0 -72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0 --100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0 -86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0 --86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0 -96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0 --76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0 -110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0 --62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0 -120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0 --52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0 -134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0 --43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0 --33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0 --24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0 -158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0 --14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0 --9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0 --0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0 --172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0 --163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0 --153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0 --148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0 -38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0 --139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0 -48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0 --129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0 --115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0 -67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0 --105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0 -81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0 --91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0 -96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0 --76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0 -105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0 --67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0 -120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0 --52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0 -129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0 --43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0 -139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0 --33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0 --28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0 --19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0 -163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0 --9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0 --4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0 -0.00,0.00,0.79,0.00,1.00,0.00,0.00,0 --177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0 -4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0 --168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0 --163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0 -19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0 --153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0 -28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0 --148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0 -38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0 --139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0 -48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0 --124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0 -57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0 --115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0 -72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0 --100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0 -86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0 --86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0 -100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0 --76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0 -110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0 --62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0 -124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0 --48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0 -134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0 --38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0 --28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0 --24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0 -163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0 --14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0 -168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0 --9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0 --0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0 --177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0 --172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0 -9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0 --163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0 --158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0 --148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0 -33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0 --139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0 -43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0 --129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0 --120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0 -67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0 --105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0 -81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0 --91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0 -96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0 --76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0 -110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0 --67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0 -120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0 --52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0 -134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0 --43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0 -144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0 --33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0 -153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0 --24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0 --19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0 -168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0 --9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0 --4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0 diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC16c.met b/scripts/testv/stvOMASA_4ISM_1MASA1TC16c.met deleted file mode 100644 index f2ce23bd2054140614b7d2ad88769d5d2db77990..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_1MASA1TC16c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6349efe3448d28979b80744bcdc29d57f1c025704939b42d7b913d7fc3f23ccc -size 102300 diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC16c.wav b/scripts/testv/stvOMASA_4ISM_1MASA1TC16c.wav deleted file mode 100644 index b996a5f84711b3b61f0ba66e5dc0b022a3d283fd..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_1MASA1TC16c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b02b0bc5a4124e56193d79571adf74eb12a67b7f7085ad46ee0d31aeb119f55a -size 480080 diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC16c_ISM1.csv b/scripts/testv/stvOMASA_4ISM_1MASA1TC16c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_1MASA1TC16c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC16c_ISM2.csv b/scripts/testv/stvOMASA_4ISM_1MASA1TC16c_ISM2.csv deleted file mode 100644 index f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_1MASA1TC16c_ISM2.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,4.80,16.00,0.00,1.00,0.00,0.00,0 -0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0 -0.00,14.40,15.96,0.00,1.00,4.80,9.60,0 -0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0 -0.00,24.00,15.91,0.00,1.00,14.40,19.20,0 -0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0 -0.00,33.60,15.87,0.00,1.00,19.20,28.80,0 -0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0 -0.00,43.20,15.83,0.00,1.00,28.80,38.40,0 -0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0 -0.00,52.80,15.79,0.00,1.00,38.40,48.00,0 -0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0 -0.00,62.40,15.74,0.00,1.00,48.00,57.60,0 -4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0 -4.80,72.00,15.70,0.00,1.00,57.60,67.20,0 -4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0 -9.60,81.60,15.66,0.00,1.00,72.00,76.80,0 -19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0 -134.40,86.40,15.62,0.00,1.00,86.40,86.40,0 -168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0 -172.80,76.80,15.57,0.00,1.00,100.80,86.40,0 -177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0 -177.60,67.20,15.53,0.00,1.00,110.40,76.80,0 -177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0 -177.60,57.60,15.49,0.00,1.00,124.80,67.20,0 -177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0 -177.60,48.00,15.44,0.00,1.00,134.40,57.60,0 -177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0 -177.60,38.40,15.40,0.00,1.00,144.00,48.00,0 -177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0 -177.60,28.80,15.36,0.00,1.00,153.60,38.40,0 -177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0 -177.60,19.20,15.32,0.00,1.00,158.40,28.80,0 -177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0 -177.60,9.60,15.27,0.00,1.00,168.00,19.20,0 -177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0 -177.60,0.00,15.23,0.00,1.00,172.80,9.60,0 --177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0 --177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0 --177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0 --177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0 --177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0 --177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0 --177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0 --177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0 --177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0 --177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0 --177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0 --177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0 --177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0 --177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0 --177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0 --177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0 --172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0 --168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0 --134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0 --19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0 --9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0 --4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0 --4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0 --4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0 --0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0 --0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0 --0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0 --0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0 --0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0 --0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0 --0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0 --0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0 --0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0 --0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0 --0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0 --0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0 --0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0 --0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,14.40,0.00,1.00,0.00,0.00,0 --0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0 --0.00,14.40,14.36,0.00,1.00,9.60,9.60,0 --0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0 --0.00,24.00,14.31,0.00,1.00,14.40,19.20,0 --0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0 --0.00,33.60,14.27,0.00,1.00,24.00,28.80,0 --4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0 --4.80,43.20,14.23,0.00,1.00,28.80,38.40,0 --4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0 --4.80,52.80,14.18,0.00,1.00,38.40,48.00,0 --4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0 --4.80,62.40,14.14,0.00,1.00,48.00,57.60,0 --9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0 --9.60,72.00,14.10,0.00,1.00,62.40,67.20,0 --14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0 --24.00,81.60,14.06,0.00,1.00,72.00,76.80,0 --43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0 --110.40,86.40,14.01,0.00,1.00,86.40,86.40,0 --148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0 --163.20,76.80,13.97,0.00,1.00,96.00,81.60,0 --168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0 --172.80,67.20,13.93,0.00,1.00,110.40,72.00,0 --172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0 --172.80,57.60,13.89,0.00,1.00,120.00,62.40,0 --172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0 --177.60,48.00,13.84,0.00,1.00,134.40,52.80,0 --177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0 --177.60,38.40,13.80,0.00,1.00,144.00,43.20,0 --177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0 --177.60,28.80,13.76,0.00,1.00,148.80,33.60,0 --177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0 --177.60,19.20,13.71,0.00,1.00,158.40,24.00,0 --177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0 --177.60,9.60,13.67,0.00,1.00,168.00,14.40,0 --177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0 --177.60,0.00,13.63,0.00,1.00,172.80,4.80,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0 -177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0 -177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0 -177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0 -177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0 -177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0 -177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0 -172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0 -172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0 -172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0 -172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0 -168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0 -163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0 -148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0 -110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0 -43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0 -24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0 -14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0 -9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0 -9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0 -4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0 -4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0 -4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0 -4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0 -4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0 -0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0 -0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0 -0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0 -0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0 -0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,12.80,0.00,1.00,0.00,0.00,0 --0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0 --0.00,14.40,12.75,0.00,1.00,9.60,9.60,0 --4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0 --4.80,24.00,12.71,0.00,1.00,14.40,19.20,0 --4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0 --4.80,33.60,12.67,0.00,1.00,24.00,28.80,0 --4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0 --9.60,43.20,12.62,0.00,1.00,33.60,38.40,0 --9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0 --9.60,52.80,12.58,0.00,1.00,43.20,48.00,0 --14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0 --14.40,62.40,12.54,0.00,1.00,52.80,57.60,0 --19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0 --24.00,72.00,12.50,0.00,1.00,62.40,67.20,0 --33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0 --43.20,76.80,12.45,0.00,1.00,72.00,72.00,0 --67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0 --96.00,81.60,12.41,0.00,1.00,86.40,81.60,0 --124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0 --144.00,76.80,12.37,0.00,1.00,96.00,76.80,0 --153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0 --158.40,67.20,12.33,0.00,1.00,110.40,72.00,0 --163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0 --168.00,57.60,12.28,0.00,1.00,120.00,62.40,0 --168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0 --168.00,48.00,12.24,0.00,1.00,129.60,52.80,0 --172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0 --172.80,38.40,12.20,0.00,1.00,139.20,43.20,0 --172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0 --172.80,28.80,12.15,0.00,1.00,148.80,33.60,0 --177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0 --177.60,19.20,12.11,0.00,1.00,158.40,24.00,0 --177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0 --177.60,9.60,12.07,0.00,1.00,168.00,14.40,0 --177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0 --177.60,0.00,12.03,0.00,1.00,172.80,4.80,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0 -177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0 -172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0 -172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0 -168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0 -168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0 -168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0 -163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0 -158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0 -153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0 -144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0 -124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0 -96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0 -67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0 -43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0 -33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0 -24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0 -19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0 -14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0 -14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0 -9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0 -9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0 -9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0 -4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0 -4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0 -0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,11.19,0.00,1.00,0.00,0.00,0 --0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0 --4.80,14.40,11.15,0.00,1.00,9.60,9.60,0 --4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0 --4.80,24.00,11.11,0.00,1.00,14.40,19.20,0 --4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0 --9.60,33.60,11.07,0.00,1.00,24.00,28.80,0 --9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0 --14.40,43.20,11.02,0.00,1.00,33.60,38.40,0 --14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0 --14.40,52.80,10.98,0.00,1.00,43.20,48.00,0 --19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0 --24.00,57.60,10.94,0.00,1.00,52.80,52.80,0 --28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0 --33.60,67.20,10.89,0.00,1.00,62.40,62.40,0 --43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0 --57.60,72.00,10.85,0.00,1.00,76.80,72.00,0 --76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0 --96.00,76.80,10.81,0.00,1.00,86.40,76.80,0 --115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0 --129.60,72.00,10.77,0.00,1.00,96.00,76.80,0 --139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0 --148.80,67.20,10.72,0.00,1.00,105.60,67.20,0 --153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0 --158.40,57.60,10.68,0.00,1.00,120.00,62.40,0 --163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0 --163.20,48.00,10.64,0.00,1.00,129.60,52.80,0 --168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0 --168.00,38.40,10.60,0.00,1.00,139.20,43.20,0 --172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0 --172.80,28.80,10.55,0.00,1.00,148.80,33.60,0 --172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0 --172.80,19.20,10.51,0.00,1.00,158.40,24.00,0 --177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0 --177.60,9.60,10.47,0.00,1.00,163.20,14.40,0 --177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0 --177.60,0.00,10.42,0.00,1.00,172.80,4.80,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0 -168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0 -168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0 -163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0 -163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0 -158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0 -153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0 -148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0 -139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0 -129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0 -115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0 -96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0 -76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0 -57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0 -43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0 -33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0 -28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0 -24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0 -19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0 -14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0 -14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0 -14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0 -9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0 -9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0 -4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0 -4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0 -0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,9.59,0.00,1.00,0.00,0.00,0 --4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0 --4.80,14.40,9.55,0.00,1.00,9.60,9.60,0 --4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0 --9.60,24.00,9.51,0.00,1.00,19.20,19.20,0 --9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0 --9.60,33.60,9.46,0.00,1.00,24.00,28.80,0 --14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0 --14.40,38.40,9.42,0.00,1.00,33.60,33.60,0 --19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0 --24.00,48.00,9.38,0.00,1.00,43.20,43.20,0 --24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0 --28.80,57.60,9.34,0.00,1.00,52.80,52.80,0 --38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0 --43.20,62.40,9.29,0.00,1.00,67.20,62.40,0 --52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0 --62.40,72.00,9.25,0.00,1.00,76.80,67.20,0 --76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0 --96.00,72.00,9.21,0.00,1.00,86.40,72.00,0 --110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0 --120.00,67.20,9.16,0.00,1.00,96.00,72.00,0 --134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0 --139.20,62.40,9.12,0.00,1.00,105.60,67.20,0 --148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0 --153.60,57.60,9.08,0.00,1.00,115.20,57.60,0 --158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0 --158.40,48.00,9.04,0.00,1.00,129.60,52.80,0 --163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0 --163.20,38.40,8.99,0.00,1.00,139.20,43.20,0 --168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0 --168.00,28.80,8.95,0.00,1.00,148.80,33.60,0 --172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0 --172.80,19.20,8.91,0.00,1.00,153.60,24.00,0 --172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0 --177.60,9.60,8.87,0.00,1.00,163.20,14.40,0 --177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0 --177.60,0.00,8.82,0.00,1.00,172.80,4.80,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0 -168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0 -163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0 -163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0 -158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0 -158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0 -153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0 -148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0 -139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0 -134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0 -120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0 -110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0 -96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0 -76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0 -62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0 -52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0 -43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0 -38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0 -28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0 -24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0 -24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0 -19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0 -14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0 -14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0 -9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0 -9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0 -9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0 -0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,7.99,0.00,1.00,0.00,0.00,0 --4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0 --4.80,14.40,7.95,0.00,1.00,9.60,9.60,0 --9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0 --9.60,24.00,7.90,0.00,1.00,19.20,19.20,0 --14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0 --14.40,28.80,7.86,0.00,1.00,28.80,24.00,0 --19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0 --19.20,38.40,7.82,0.00,1.00,38.40,33.60,0 --24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0 --28.80,48.00,7.78,0.00,1.00,48.00,43.20,0 --33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0 --38.40,52.80,7.73,0.00,1.00,57.60,52.80,0 --43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0 --48.00,62.40,7.69,0.00,1.00,67.20,57.60,0 --57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0 --67.20,67.20,7.65,0.00,1.00,76.80,62.40,0 --81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0 --91.20,67.20,7.60,0.00,1.00,86.40,67.20,0 --105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0 --115.20,67.20,7.56,0.00,1.00,96.00,67.20,0 --124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0 --134.40,57.60,7.52,0.00,1.00,105.60,62.40,0 --139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0 --144.00,52.80,7.48,0.00,1.00,115.20,57.60,0 --148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0 --153.60,43.20,7.43,0.00,1.00,124.80,48.00,0 --158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0 --163.20,38.40,7.39,0.00,1.00,134.40,38.40,0 --163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0 --168.00,28.80,7.35,0.00,1.00,144.00,33.60,0 --168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0 --172.80,19.20,7.31,0.00,1.00,153.60,24.00,0 --172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0 --177.60,9.60,7.26,0.00,1.00,163.20,14.40,0 --177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0 --177.60,0.00,7.22,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0 -163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0 -158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0 -153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0 -148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0 -144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0 -139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0 -134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0 -124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0 -115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0 -105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0 -91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0 -81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0 -67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0 -57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0 -48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0 -43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0 -38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0 -33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0 -28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0 -24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0 -19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0 -19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0 -14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0 -9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0 -0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,6.39,0.00,1.00,0.00,0.00,0 --4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0 --4.80,14.40,6.34,0.00,1.00,9.60,9.60,0 --9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0 --9.60,19.20,6.30,0.00,1.00,19.20,14.40,0 --14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0 --19.20,28.80,6.26,0.00,1.00,28.80,24.00,0 --19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0 --24.00,38.40,6.22,0.00,1.00,38.40,33.60,0 --28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0 --33.60,43.20,6.17,0.00,1.00,48.00,38.40,0 --38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0 --43.20,52.80,6.13,0.00,1.00,57.60,48.00,0 --48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0 --52.80,57.60,6.09,0.00,1.00,67.20,52.80,0 --62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0 --72.00,62.40,6.05,0.00,1.00,76.80,57.60,0 --81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0 --91.20,62.40,6.00,0.00,1.00,86.40,62.40,0 --100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0 --110.40,62.40,5.96,0.00,1.00,96.00,62.40,0 --120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0 --129.60,57.60,5.92,0.00,1.00,105.60,57.60,0 --134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0 --139.20,48.00,5.87,0.00,1.00,115.20,52.80,0 --144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0 --148.80,43.20,5.83,0.00,1.00,124.80,48.00,0 --153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0 --158.40,33.60,5.79,0.00,1.00,134.40,38.40,0 --163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0 --163.20,28.80,5.75,0.00,1.00,144.00,28.80,0 --168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0 --168.00,19.20,5.70,0.00,1.00,153.60,24.00,0 --172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0 --172.80,9.60,5.66,0.00,1.00,163.20,14.40,0 --177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0 --177.60,0.00,5.62,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0 -163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0 -158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0 -148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0 -144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0 -139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0 -134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0 -129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0 -120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0 -110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0 -100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0 -91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0 -81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0 -72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0 -62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0 -52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0 -48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0 -43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0 -38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0 -33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0 -28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0 -24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0 -19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0 -19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0 -9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0 -4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0 -0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,4.79,0.00,1.00,0.00,0.00,0 --4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0 --9.60,14.40,4.74,0.00,1.00,9.60,9.60,0 --9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0 --14.40,19.20,4.70,0.00,1.00,19.20,14.40,0 --14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0 --19.20,28.80,4.66,0.00,1.00,28.80,24.00,0 --24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0 --28.80,33.60,4.61,0.00,1.00,38.40,28.80,0 --28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0 --33.60,43.20,4.57,0.00,1.00,48.00,38.40,0 --38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0 --48.00,48.00,4.53,0.00,1.00,57.60,43.20,0 --52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0 --57.60,52.80,4.49,0.00,1.00,67.20,48.00,0 --67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0 --76.80,57.60,4.44,0.00,1.00,76.80,52.80,0 --81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0 --91.20,57.60,4.40,0.00,1.00,86.40,57.60,0 --100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0 --110.40,57.60,4.36,0.00,1.00,96.00,57.60,0 --115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0 --124.80,52.80,4.32,0.00,1.00,105.60,52.80,0 --129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0 --139.20,48.00,4.27,0.00,1.00,115.20,48.00,0 --144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0 --148.80,38.40,4.23,0.00,1.00,124.80,43.20,0 --153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0 --153.60,33.60,4.19,0.00,1.00,134.40,38.40,0 --158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0 --163.20,24.00,4.14,0.00,1.00,144.00,28.80,0 --163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0 --168.00,19.20,4.10,0.00,1.00,153.60,24.00,0 --172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0 --172.80,9.60,4.06,0.00,1.00,163.20,14.40,0 --177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0 --177.60,0.00,4.02,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0 -163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0 -163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0 -158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0 -148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0 -144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0 -139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0 -129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0 -124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0 -115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0 -110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0 -100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0 -91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0 -81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0 -76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0 -67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0 -57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0 -52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0 -48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0 -38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0 -33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0 -28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0 -28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0 -24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0 -19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0 -14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0 -14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0 -9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0 -0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.18,0.00,1.00,0.00,0.00,0 --4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0 --9.60,9.60,3.14,0.00,1.00,9.60,9.60,0 --9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0 --14.40,19.20,3.10,0.00,1.00,19.20,14.40,0 --19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0 --24.00,24.00,3.05,0.00,1.00,28.80,24.00,0 --24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0 --28.80,33.60,3.01,0.00,1.00,38.40,28.80,0 --33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0 --38.40,38.40,2.97,0.00,1.00,48.00,33.60,0 --43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0 --48.00,43.20,2.93,0.00,1.00,57.60,43.20,0 --52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0 --62.40,48.00,2.88,0.00,1.00,67.20,48.00,0 --67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0 --76.80,52.80,2.84,0.00,1.00,76.80,48.00,0 --86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0 --91.20,52.80,2.80,0.00,1.00,86.40,52.80,0 --100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0 --105.60,52.80,2.76,0.00,1.00,96.00,52.80,0 --115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0 --120.00,48.00,2.71,0.00,1.00,105.60,48.00,0 --129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0 --134.40,43.20,2.67,0.00,1.00,115.20,43.20,0 --139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0 --144.00,38.40,2.63,0.00,1.00,124.80,38.40,0 --148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0 --153.60,33.60,2.58,0.00,1.00,134.40,33.60,0 --158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0 --158.40,24.00,2.54,0.00,1.00,144.00,28.80,0 --163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0 --168.00,19.20,2.50,0.00,1.00,153.60,19.20,0 --168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.46,0.00,1.00,163.20,14.40,0 --177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.41,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0 -158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0 -148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0 -144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0 -139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0 -134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0 -129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0 -120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0 -115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0 -105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0 -100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0 -91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0 -86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0 -76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0 -67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0 -62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0 -52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0 -48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0 -43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0 -38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0 -33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0 -28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0 -24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0 -24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0 -19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0 -0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.58,0.00,1.00,0.00,0.00,0 --4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.54,0.00,1.00,9.60,4.80,0 --14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0 --14.40,19.20,1.50,0.00,1.00,19.20,14.40,0 --19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0 --24.00,24.00,1.45,0.00,1.00,28.80,19.20,0 --28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0 --33.60,28.80,1.41,0.00,1.00,38.40,28.80,0 --38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0 --43.20,38.40,1.37,0.00,1.00,48.00,33.60,0 --48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0 --52.80,43.20,1.32,0.00,1.00,57.60,38.40,0 --57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0 --62.40,43.20,1.28,0.00,1.00,67.20,43.20,0 --72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0 --76.80,48.00,1.24,0.00,1.00,76.80,43.20,0 --86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0 --91.20,48.00,1.20,0.00,1.00,86.40,48.00,0 --100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0 --105.60,48.00,1.15,0.00,1.00,96.00,48.00,0 --110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0 --120.00,43.20,1.11,0.00,1.00,105.60,43.20,0 --124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0 --129.60,38.40,1.07,0.00,1.00,115.20,43.20,0 --134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0 --139.20,33.60,1.03,0.00,1.00,124.80,38.40,0 --144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0 --148.80,28.80,0.98,0.00,1.00,134.40,33.60,0 --153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0 --158.40,24.00,0.94,0.00,1.00,144.00,24.00,0 --163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0 --163.20,14.40,0.90,0.00,1.00,153.60,19.20,0 --168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.85,0.00,1.00,163.20,14.40,0 --172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.81,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0 -148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0 -144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0 -139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0 -134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0 -129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0 -124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0 -120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0 -110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0 -105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0 -100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0 -91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0 -86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0 -76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0 -72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0 -62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0 -57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0 -52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0 -48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0 -43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0 -38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0 -28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0 -19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0 -0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,0.00,0.00,1.00,0.00,0.00,0 --4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0 --9.60,9.60,0.04,0.00,1.00,9.60,4.80,0 --14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0 --19.20,14.40,0.09,0.00,1.00,19.20,14.40,0 --24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0 --24.00,24.00,0.13,0.00,1.00,28.80,19.20,0 --28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0 --33.60,28.80,0.17,0.00,1.00,38.40,24.00,0 --38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0 --43.20,33.60,0.21,0.00,1.00,48.00,28.80,0 --48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0 --52.80,38.40,0.26,0.00,1.00,57.60,33.60,0 --62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0 --67.20,38.40,0.30,0.00,1.00,67.20,38.40,0 --72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0 --76.80,43.20,0.34,0.00,1.00,76.80,38.40,0 --86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0 --91.20,43.20,0.38,0.00,1.00,86.40,43.20,0 --96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0 --105.60,43.20,0.43,0.00,1.00,96.00,43.20,0 --110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0 --115.20,38.40,0.47,0.00,1.00,105.60,38.40,0 --124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0 --129.60,38.40,0.51,0.00,1.00,115.20,38.40,0 --134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0 --139.20,33.60,0.56,0.00,1.00,124.80,33.60,0 --144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0 --148.80,28.80,0.60,0.00,1.00,134.40,28.80,0 --153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0 --158.40,19.20,0.64,0.00,1.00,144.00,24.00,0 --158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0 --163.20,14.40,0.68,0.00,1.00,153.60,19.20,0 --168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.73,0.00,1.00,163.20,9.60,0 --172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.77,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0 -158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0 -158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0 -148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0 -144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0 -139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0 -134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0 -129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0 -124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0 -115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0 -110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0 -105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0 -96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0 -91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0 -86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0 -76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0 -72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0 -67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0 -62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0 -52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0 -48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0 -43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0 -38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0 -28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0 -19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0 -0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.60,0.00,1.00,0.00,0.00,0 --9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.64,0.00,1.00,9.60,4.80,0 --14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0 --19.20,14.40,1.69,0.00,1.00,19.20,9.60,0 --24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0 --28.80,19.20,1.73,0.00,1.00,28.80,19.20,0 --33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0 --38.40,24.00,1.77,0.00,1.00,38.40,24.00,0 --43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0 --48.00,28.80,1.82,0.00,1.00,48.00,28.80,0 --52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0 --57.60,33.60,1.86,0.00,1.00,57.60,28.80,0 --62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0 --67.20,38.40,1.90,0.00,1.00,67.20,33.60,0 --72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0 --81.60,38.40,1.94,0.00,1.00,76.80,38.40,0 --86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0 --91.20,38.40,1.99,0.00,1.00,86.40,38.40,0 --96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0 --105.60,38.40,2.03,0.00,1.00,96.00,38.40,0 --110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0 --115.20,33.60,2.07,0.00,1.00,105.60,33.60,0 --120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0 --124.80,33.60,2.11,0.00,1.00,115.20,33.60,0 --129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0 --134.40,28.80,2.16,0.00,1.00,124.80,28.80,0 --139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0 --144.00,24.00,2.20,0.00,1.00,134.40,24.00,0 --148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0 --153.60,19.20,2.24,0.00,1.00,144.00,19.20,0 --158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0 --163.20,14.40,2.29,0.00,1.00,153.60,14.40,0 --168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.33,0.00,1.00,163.20,9.60,0 --172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.37,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0 -153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0 -144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0 -134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0 -124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0 -120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0 -115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0 -110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0 -105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0 -96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0 -91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0 -86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0 -81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0 -72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0 -67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0 -62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0 -57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0 -52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0 -48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0 -43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0 -38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0 -33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0 -28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0 -14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.20,0.00,1.00,0.00,0.00,0 --9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0 --14.40,9.60,3.25,0.00,1.00,9.60,4.80,0 --14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0 --19.20,14.40,3.29,0.00,1.00,19.20,9.60,0 --24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0 --28.80,19.20,3.33,0.00,1.00,28.80,14.40,0 --33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0 --38.40,24.00,3.38,0.00,1.00,38.40,19.20,0 --43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0 --48.00,24.00,3.42,0.00,1.00,48.00,24.00,0 --52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0 --57.60,28.80,3.46,0.00,1.00,57.60,28.80,0 --62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0 --67.20,33.60,3.50,0.00,1.00,67.20,28.80,0 --72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0 --81.60,33.60,3.55,0.00,1.00,76.80,33.60,0 --86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0 --91.20,33.60,3.59,0.00,1.00,86.40,33.60,0 --96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0 --100.80,33.60,3.63,0.00,1.00,96.00,33.60,0 --110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0 --115.20,33.60,3.67,0.00,1.00,105.60,28.80,0 --120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0 --124.80,28.80,3.72,0.00,1.00,115.20,28.80,0 --129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0 --134.40,24.00,3.76,0.00,1.00,124.80,24.00,0 --139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0 --144.00,19.20,3.80,0.00,1.00,134.40,24.00,0 --148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0 --153.60,14.40,3.85,0.00,1.00,144.00,19.20,0 --158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0 --163.20,9.60,3.89,0.00,1.00,153.60,14.40,0 --168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0 --168.00,4.80,3.93,0.00,1.00,163.20,9.60,0 --172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0 --177.60,0.00,3.97,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0 -124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0 -120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0 -115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0 -110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0 -100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0 -96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0 -91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0 -86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0 -81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0 -72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0 -67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0 -62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0 -57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0 -52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0 -48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0 -43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0 -38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0 -33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0 -28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0 -24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0 -14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0 -14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0 --4.80,0.00,4.81,0.00,1.00,0.00,0.00,0 --9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0 --14.40,4.80,4.85,0.00,1.00,9.60,4.80,0 --19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0 --19.20,9.60,4.89,0.00,1.00,19.20,9.60,0 --24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0 --28.80,14.40,4.93,0.00,1.00,28.80,14.40,0 --33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0 --38.40,19.20,4.98,0.00,1.00,38.40,14.40,0 --43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0 --48.00,24.00,5.02,0.00,1.00,48.00,19.20,0 --52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0 --57.60,24.00,5.06,0.00,1.00,57.60,24.00,0 --62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0 --72.00,28.80,5.11,0.00,1.00,67.20,24.00,0 --76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0 --81.60,28.80,5.15,0.00,1.00,76.80,28.80,0 --86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0 --91.20,28.80,5.19,0.00,1.00,86.40,28.80,0 --96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0 --100.80,28.80,5.23,0.00,1.00,96.00,28.80,0 --105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0 --115.20,28.80,5.28,0.00,1.00,105.60,28.80,0 --120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0 --124.80,24.00,5.32,0.00,1.00,115.20,24.00,0 --129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0 --134.40,24.00,5.36,0.00,1.00,124.80,24.00,0 --139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0 --144.00,19.20,5.40,0.00,1.00,134.40,19.20,0 --148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0 --153.60,14.40,5.45,0.00,1.00,144.00,14.40,0 --158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0 --163.20,9.60,5.49,0.00,1.00,153.60,9.60,0 --163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0 --168.00,4.80,5.53,0.00,1.00,163.20,9.60,0 --172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0 --177.60,0.00,5.58,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0 -163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0 -129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0 -124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0 -120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0 -115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0 -105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0 -100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0 -96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0 -91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0 -86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0 -81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0 -76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0 -72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0 -62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0 -57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0 -52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0 -48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0 -43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0 -38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0 -33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0 -28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0 -24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0 -19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0 -19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0 -0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,6.41,0.00,1.00,0.00,0.00,0 --9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0 --14.40,4.80,6.45,0.00,1.00,9.60,4.80,0 --19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0 --24.00,9.60,6.49,0.00,1.00,19.20,9.60,0 --28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0 --33.60,14.40,6.54,0.00,1.00,28.80,9.60,0 --33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0 --38.40,14.40,6.58,0.00,1.00,38.40,14.40,0 --43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0 --48.00,19.20,6.62,0.00,1.00,48.00,14.40,0 --57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0 --62.40,19.20,6.66,0.00,1.00,57.60,19.20,0 --67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0 --72.00,24.00,6.71,0.00,1.00,67.20,19.20,0 --76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0 --81.60,24.00,6.75,0.00,1.00,76.80,24.00,0 --86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0 --91.20,24.00,6.79,0.00,1.00,86.40,24.00,0 --96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0 --100.80,24.00,6.84,0.00,1.00,96.00,24.00,0 --105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0 --110.40,24.00,6.88,0.00,1.00,105.60,24.00,0 --115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0 --120.00,19.20,6.92,0.00,1.00,115.20,19.20,0 --129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0 --134.40,19.20,6.96,0.00,1.00,124.80,19.20,0 --139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0 --144.00,14.40,7.01,0.00,1.00,134.40,14.40,0 --148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0 --148.80,14.40,7.05,0.00,1.00,144.00,14.40,0 --153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0 --158.40,9.60,7.09,0.00,1.00,153.60,9.60,0 --163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0 --168.00,4.80,7.13,0.00,1.00,163.20,4.80,0 --172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0 --177.60,0.00,7.18,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0 -163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0 -158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0 -148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0 -144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0 -134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0 -129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0 -120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0 -115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0 -110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0 -105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0 -100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0 -96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0 -91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0 -86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0 -81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0 -76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0 -72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0 -67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0 -62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0 -57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0 -48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0 -43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0 -38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0 -33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0 -33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0 -28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0 -24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0 -19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0 -0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,8.01,0.00,1.00,0.00,0.00,0 --9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0 --14.40,4.80,8.05,0.00,1.00,9.60,4.80,0 --19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0 --24.00,9.60,8.10,0.00,1.00,19.20,4.80,0 --28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0 --33.60,9.60,8.14,0.00,1.00,24.00,9.60,0 --38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0 --43.20,14.40,8.18,0.00,1.00,33.60,9.60,0 --48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0 --52.80,14.40,8.22,0.00,1.00,43.20,14.40,0 --57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0 --62.40,19.20,8.27,0.00,1.00,52.80,14.40,0 --67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0 --72.00,19.20,8.31,0.00,1.00,62.40,14.40,0 --76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0 --81.60,19.20,8.35,0.00,1.00,76.80,19.20,0 --86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0 --91.20,19.20,8.40,0.00,1.00,86.40,19.20,0 --96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0 --100.80,19.20,8.44,0.00,1.00,96.00,19.20,0 --105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0 --110.40,19.20,8.48,0.00,1.00,105.60,19.20,0 --115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0 --120.00,14.40,8.52,0.00,1.00,120.00,14.40,0 --124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0 --129.60,14.40,8.57,0.00,1.00,129.60,14.40,0 --134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0 --139.20,14.40,8.61,0.00,1.00,139.20,14.40,0 --144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0 --148.80,9.60,8.65,0.00,1.00,148.80,9.60,0 --153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0 --158.40,4.80,8.69,0.00,1.00,158.40,9.60,0 --163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0 --168.00,4.80,8.74,0.00,1.00,163.20,4.80,0 --172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0 -148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0 -144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0 -139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0 -134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0 -129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0 -124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0 -120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0 -115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0 -110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0 -105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0 -100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0 -96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0 -91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0 -86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0 -81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0 -76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0 -72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0 -67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0 -62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0 -52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0 -48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0 -43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0 -38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0 -33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0 -28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0 -24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0 -19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0 -9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0 -0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,9.61,0.00,1.00,0.00,0.00,0 --9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0 --14.40,4.80,9.66,0.00,1.00,9.60,0.00,0 --19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0 --24.00,4.80,9.70,0.00,1.00,14.40,4.80,0 --28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0 --33.60,9.60,9.74,0.00,1.00,24.00,4.80,0 --38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0 --43.20,9.60,9.78,0.00,1.00,33.60,9.60,0 --48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0 --52.80,9.60,9.83,0.00,1.00,43.20,9.60,0 --57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0 --62.40,14.40,9.87,0.00,1.00,52.80,9.60,0 --67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0 --72.00,14.40,9.91,0.00,1.00,62.40,14.40,0 --76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0 --81.60,14.40,9.95,0.00,1.00,76.80,14.40,0 --86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0 --91.20,14.40,10.00,0.00,1.00,86.40,14.40,0 --96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0 --100.80,14.40,10.04,0.00,1.00,96.00,14.40,0 --105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0 --110.40,14.40,10.08,0.00,1.00,110.40,14.40,0 --115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0 --120.00,14.40,10.13,0.00,1.00,120.00,9.60,0 --124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0 --129.60,9.60,10.17,0.00,1.00,129.60,9.60,0 --134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0 --139.20,9.60,10.21,0.00,1.00,139.20,9.60,0 --144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0 --148.80,9.60,10.25,0.00,1.00,148.80,9.60,0 --153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0 --158.40,4.80,10.30,0.00,1.00,158.40,4.80,0 --163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0 --168.00,4.80,10.34,0.00,1.00,168.00,4.80,0 --172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0 -148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0 -144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0 -139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0 -134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0 -129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0 -124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0 -120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0 -115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0 -110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0 -105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0 -100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0 -96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0 -91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0 -86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0 -81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0 -76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0 -72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0 -67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0 -62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0 -48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0 -43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0 -38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0 -33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0 -28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0 -24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0 -19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0 -14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,11.21,0.00,1.00,0.00,0.00,0 --9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0 --14.40,0.00,11.26,0.00,1.00,9.60,0.00,0 --19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0 --24.00,4.80,11.30,0.00,1.00,14.40,4.80,0 --28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0 --33.60,4.80,11.34,0.00,1.00,24.00,4.80,0 --38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0 --43.20,4.80,11.39,0.00,1.00,33.60,4.80,0 --48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0 --52.80,9.60,11.43,0.00,1.00,43.20,4.80,0 --57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0 --62.40,9.60,11.47,0.00,1.00,52.80,4.80,0 --67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0 --72.00,9.60,11.51,0.00,1.00,62.40,9.60,0 --76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0 --81.60,9.60,11.56,0.00,1.00,72.00,9.60,0 --86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0 --91.20,9.60,11.60,0.00,1.00,86.40,9.60,0 --96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0 --100.80,9.60,11.64,0.00,1.00,96.00,9.60,0 --105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0 --110.40,9.60,11.68,0.00,1.00,110.40,9.60,0 --115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0 --120.00,9.60,11.73,0.00,1.00,120.00,9.60,0 --124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0 --129.60,9.60,11.77,0.00,1.00,129.60,4.80,0 --134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0 --139.20,4.80,11.81,0.00,1.00,139.20,4.80,0 --144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0 --148.80,4.80,11.86,0.00,1.00,148.80,4.80,0 --153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0 --158.40,4.80,11.90,0.00,1.00,158.40,4.80,0 --163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0 --168.00,0.00,11.94,0.00,1.00,168.00,4.80,0 --172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0 -158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0 -148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0 -144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0 -139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0 -134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0 -129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0 -124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0 -120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0 -115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0 -110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0 -105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0 -100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0 -96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0 -91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0 -86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0 -81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0 -76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0 -72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0 -67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0 -62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0 -57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0 -43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0 -33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0 -28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0 -24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0 -19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,12.82,0.00,1.00,0.00,0.00,0 --9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0 --14.40,0.00,12.86,0.00,1.00,9.60,0.00,0 --19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0 --24.00,0.00,12.90,0.00,1.00,14.40,0.00,0 --28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0 --33.60,4.80,12.95,0.00,1.00,24.00,0.00,0 --38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0 --43.20,4.80,12.99,0.00,1.00,28.80,0.00,0 --48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0 --52.80,4.80,13.03,0.00,1.00,38.40,4.80,0 --57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0 --62.40,4.80,13.07,0.00,1.00,48.00,4.80,0 --67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0 --72.00,4.80,13.12,0.00,1.00,62.40,4.80,0 --76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0 --81.60,4.80,13.16,0.00,1.00,72.00,4.80,0 --86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0 --91.20,4.80,13.20,0.00,1.00,86.40,4.80,0 --96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0 --100.80,4.80,13.24,0.00,1.00,96.00,4.80,0 --105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0 --110.40,4.80,13.29,0.00,1.00,110.40,4.80,0 --115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0 --120.00,4.80,13.33,0.00,1.00,120.00,4.80,0 --124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0 --129.60,4.80,13.37,0.00,1.00,134.40,4.80,0 --134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0 --139.20,4.80,13.42,0.00,1.00,144.00,4.80,0 --144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0 --148.80,4.80,13.46,0.00,1.00,153.60,0.00,0 --153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0 --158.40,0.00,13.50,0.00,1.00,158.40,0.00,0 --163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0 --168.00,0.00,13.54,0.00,1.00,168.00,0.00,0 --172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0 -163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0 -158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0 -153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0 -148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0 -144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0 -139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0 -134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0 -129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0 -124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0 -120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0 -115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0 -110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0 -105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0 -100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0 -96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0 -91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0 -86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0 -81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0 -76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0 -72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0 -67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0 -57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0 -52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0 -43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0 -33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0 -28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0 -24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0 -19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0 -14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0 -9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,14.42,0.00,1.00,0.00,0.00,0 --9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0 --14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0 --19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0 --24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0 --28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0 --33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0 --38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0 --43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0 --48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0 --52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0 --57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0 --62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0 --67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0 --72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0 --76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0 --81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0 --86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0 --91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0 --96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0 --100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0 --105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0 --110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0 --115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0 --120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0 --124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0 --129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0 --134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0 --139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0 --144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0 --148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0 --153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0 --158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0 --163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0 --168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0 --172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0 -177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0 -172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0 -168.00,0.00,15.25,0.00,1.00,4.80,0.00,0 -163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0 -158.40,0.00,15.30,0.00,1.00,9.60,0.00,0 -153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0 -148.80,0.00,15.34,0.00,1.00,19.20,0.00,0 -144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0 -139.20,0.00,15.38,0.00,1.00,28.80,0.00,0 -134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0 -129.60,0.00,15.42,0.00,1.00,33.60,0.00,0 -124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0 -120.00,0.00,15.47,0.00,1.00,43.20,0.00,0 -115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0 -110.40,0.00,15.51,0.00,1.00,57.60,0.00,0 -105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0 -100.80,0.00,15.55,0.00,1.00,67.20,0.00,0 -96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0 -91.20,0.00,15.59,0.00,1.00,81.60,0.00,0 -86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0 -81.60,0.00,15.64,0.00,1.00,96.00,0.00,0 -76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0 -72.00,0.00,15.68,0.00,1.00,110.40,0.00,0 -67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0 -62.40,0.00,15.72,0.00,1.00,120.00,0.00,0 -57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0 -52.80,0.00,15.77,0.00,1.00,134.40,0.00,0 -48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0 -43.20,0.00,15.81,0.00,1.00,144.00,0.00,0 -38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0 -33.60,0.00,15.85,0.00,1.00,153.60,0.00,0 -28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0 -24.00,0.00,15.89,0.00,1.00,158.40,0.00,0 -19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0 -14.40,0.00,15.94,0.00,1.00,168.00,0.00,0 -9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0 -4.80,0.00,15.98,0.00,1.00,172.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC16c_ISM3.csv b/scripts/testv/stvOMASA_4ISM_1MASA1TC16c_ISM3.csv deleted file mode 100644 index 14eee9b693b536fa2fd22d2813d7f588b8930b06..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_1MASA1TC16c_ISM3.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0 --177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0 -4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0 --168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0 -14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0 --163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0 -19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0 --153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0 -28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0 --148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0 -38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0 --139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0 -48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0 --124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0 -57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0 --115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0 -72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0 --100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0 -86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0 --86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0 -100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0 --76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0 -110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0 --62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0 -124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0 --52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0 -134.40,33.60,0.28,0.00,1.00,177.60,0.00,0 --38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0 -144.00,28.80,0.30,0.00,1.00,177.60,0.00,0 --33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0 -153.60,24.00,0.32,0.00,1.00,177.60,0.00,0 --24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0 -158.40,19.20,0.34,0.00,1.00,177.60,0.00,0 --14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0 -168.00,9.60,0.36,0.00,1.00,177.60,0.00,0 --9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0 -172.80,4.80,0.38,0.00,1.00,177.60,0.00,0 --0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0 --177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0 -4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0 -14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0 -19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0 --158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0 -28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0 --148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0 -33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0 --139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0 -43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0 --129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0 -57.60,38.40,15.47,0.00,1.00,177.60,0.00,0 --120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0 -67.20,43.20,15.44,0.00,1.00,177.60,0.00,0 --105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0 -81.60,43.20,15.42,0.00,1.00,177.60,0.00,0 --91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0 -96.00,43.20,15.40,0.00,1.00,0.00,0.00,0 --76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0 -110.40,43.20,15.38,0.00,1.00,0.00,0.00,0 --67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0 -120.00,38.40,15.36,0.00,1.00,0.00,0.00,0 --52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0 -129.60,38.40,15.34,0.00,1.00,0.00,0.00,0 --43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0 -144.00,33.60,15.32,0.00,1.00,0.00,0.00,0 --33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0 -148.80,24.00,15.30,0.00,1.00,0.00,0.00,0 --24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0 -158.40,19.20,15.27,0.00,1.00,0.00,0.00,0 --19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0 -168.00,14.40,15.25,0.00,1.00,0.00,0.00,0 --9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0 -172.80,4.80,15.23,0.00,1.00,0.00,0.00,0 --4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0 -0.00,0.00,15.21,0.00,1.00,0.00,0.00,0 --177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0 -9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0 -14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0 --163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0 -24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0 --153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0 -28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0 --144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0 -38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0 --134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0 -48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0 --124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0 -62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0 --115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0 -72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0 --100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0 -86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0 --86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0 -96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0 --76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0 -110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0 --62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0 -120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0 --52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0 -134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0 --43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0 -144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0 --33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0 -148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0 --24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0 -158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0 --19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0 -168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0 --9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0 -172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0 -4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0 -14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0 -19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0 --153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0 -28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0 --148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0 -38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0 --139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0 -48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0 --124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0 -57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0 --115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0 -72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0 --105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0 -81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0 --91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0 -96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0 --76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0 -105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0 --67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0 -120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0 --57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0 -129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0 --43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0 -139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0 --33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0 -148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0 --28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0 -158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0 --19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0 -163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0 --9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0 -172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0 -0.00,0.00,1.60,0.00,1.00,0.00,0.00,0 --177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0 -9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0 -14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0 --158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0 -24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0 --153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0 -33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0 --144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0 -43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0 --134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0 -52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0 --124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0 -62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0 --110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0 -72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0 --100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0 -86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0 --86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0 -96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0 --76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0 -110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0 --67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0 -120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0 --52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0 -129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0 --43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0 -139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0 --33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0 -148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0 --24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0 -158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0 --19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0 -168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0 -172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0 -4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0 -14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0 --163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0 -24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0 --153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0 -28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0 --144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0 -38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0 --134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0 -48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0 --124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0 -62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0 --115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0 -72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0 --100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0 -81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0 --91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0 -96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0 --81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0 -105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0 --67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0 -115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0 --57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0 -129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0 --48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0 -139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0 --38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0 -148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0 --28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0 -153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0 --19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0 -163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0 --9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0 -172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0 -0.00,0.00,13.61,0.00,1.00,0.00,0.00,0 --177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0 -9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0 --168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0 -24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0 --148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0 -33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0 --139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0 -43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0 --129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0 -52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0 --120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0 -62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0 --110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0 -76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0 --100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0 -86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0 --86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0 -96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0 --76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0 -105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0 --67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0 -120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0 --57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0 -129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0 --48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0 -139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0 --38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0 -148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0 -158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0 --19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0 -163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0 -172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0 -4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0 -14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0 --163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0 -24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0 --153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0 -33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0 --144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0 -43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0 --134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0 -52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0 --124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0 -62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0 --115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0 -72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0 --100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0 -81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0 --91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0 -96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0 --81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0 -105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0 --67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0 -115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0 --57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0 -124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0 --48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0 -134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0 --38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0 -144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0 --28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0 -153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0 --19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0 -163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0 --14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0 -172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0 --4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0 -0.00,0.00,3.20,0.00,1.00,0.00,0.00,0 --177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0 -9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0 -19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0 -24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0 --148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0 -33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0 --139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0 -43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0 --129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0 -52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0 --120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0 -67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0 --110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0 -76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0 --100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0 -86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0 --86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0 -96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0 --76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0 -105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0 --67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0 -115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0 --57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0 -129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0 --48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0 -139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0 --38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0 -148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0 -153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0 --19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0 -163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0 -172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0 -4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0 -14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0 -24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0 --153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0 -33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0 --144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0 -43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0 --134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0 -52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0 --124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0 -62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0 --110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0 -72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0 --100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0 -81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0 --91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0 -96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0 --81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0 -105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0 --72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0 -115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0 --57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0 -124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0 --48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0 -134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0 --38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0 -144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0 --28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0 -153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0 --24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0 -163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0 --14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0 -172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -0.00,0.00,12.01,0.00,1.00,0.00,0.00,0 --177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0 -9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0 --158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0 -28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0 --148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0 -38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0 --139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0 -48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0 --129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0 -57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0 --120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0 -67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0 --110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0 -76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0 --100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0 -86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0 --86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0 -96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0 --76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0 -105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0 --67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0 -115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0 --57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0 -124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0 --48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0 -134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0 --38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0 -144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0 --28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0 -153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0 --19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0 -163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0 -172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0 -4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0 -14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0 -24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0 --148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0 -33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0 --139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0 -43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0 --129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0 -52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0 --120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0 -62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0 --110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0 -72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0 --100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0 -81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0 --91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0 -96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0 --81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0 -105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0 --72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0 -115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0 --62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0 -124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0 --52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0 -134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0 --43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0 -144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0 --33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0 -153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0 --24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0 -163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0 -172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0 -0.00,0.00,4.81,0.00,1.00,0.00,0.00,0 --177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0 -9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0 -19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0 -28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0 --148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0 -38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0 --139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0 -48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0 --129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0 -57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0 --120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0 -67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0 --110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0 -76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0 --100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0 -86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0 --86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0 -96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0 --76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0 -105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0 --67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0 -115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0 --57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0 -124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0 --48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0 -134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0 --38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0 -144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0 --28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0 -153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0 --19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0 -163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0 --9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0 -172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0 -4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0 -14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0 -24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0 --148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0 -33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0 --139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0 -43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0 --129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0 -52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0 --120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0 -62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0 --110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0 -72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0 --100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0 -81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0 --91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0 -96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0 --81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0 -105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0 --72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0 -115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0 --62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0 -124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0 --52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0 -134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0 --43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0 -144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0 --33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0 -153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0 --24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0 -163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0 -172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -0.00,0.00,10.40,0.00,1.00,0.00,0.00,0 --177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0 -9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0 -19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0 -28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0 --148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0 -38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0 --139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0 -48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0 --129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0 -57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0 --120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0 -67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0 --110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0 -76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0 --100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0 -86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0 --86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0 -96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0 --76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0 -105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0 --67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0 -115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0 --57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0 -124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0 --48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0 -134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0 --38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0 -144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0 --28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0 -153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0 -163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0 --9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0 -172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0 -4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0 -14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0 -24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0 -33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0 --139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0 -43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0 --129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0 -52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0 --120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0 -62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0 --110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0 -72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0 --100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0 -81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0 --91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0 -96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0 --81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0 -105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0 --72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0 -115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0 --62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0 -124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0 --52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0 -134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0 --43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0 -144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0 --33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0 -153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0 --24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0 -163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0 -172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,6.41,0.00,1.00,0.00,0.00,0 --177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0 -9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0 -19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0 --158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0 -28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0 --148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0 -38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0 --139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0 -48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0 --129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0 -57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0 --120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0 -67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0 --110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0 -76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0 --100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0 -86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0 --86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0 -96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0 --76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0 -105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0 --67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0 -115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0 --57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0 -124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0 --48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0 -134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0 --38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0 -144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0 --28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0 -153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0 -163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0 -172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0 -4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0 -14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0 --158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0 -24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0 -33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0 --139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0 -43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0 --129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0 -52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0 --120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0 -62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0 --110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0 -72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0 --100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0 -81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0 --91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0 -96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0 --81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0 -105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0 --72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0 -115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0 --62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0 -124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0 --52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0 -134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0 --43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0 -144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0 --33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0 -153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0 --24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0 -163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0 --14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0 -172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.80,0.00,1.00,0.00,0.00,0 --177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0 -9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0 -19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0 --158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0 -28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0 --148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0 -38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0 --139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0 -48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0 --129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0 -57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0 --120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0 -67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0 --110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0 -76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0 --100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0 -86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0 --86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0 -96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0 --76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0 -105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0 --67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0 -115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0 --57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0 -124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0 --48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0 -134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0 --38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0 -144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0 --28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0 -153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0 --19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0 -163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0 -172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0 --0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0 -4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0 --168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0 -14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0 --158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0 -24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0 --148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0 -33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0 --139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0 -43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0 --129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0 -52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0 --120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0 -62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0 --110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0 -72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0 --100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0 -81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0 --91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0 -96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0 --81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0 -105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0 --72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0 -115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0 --62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0 -124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0 --52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0 -134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0 --43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0 -144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0 --33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0 -153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0 --24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0 -163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0 --14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0 -172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.01,0.00,1.00,0.00,0.00,0 --177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0 --168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0 -19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0 --158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0 -28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0 --148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0 -38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0 --139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0 -48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0 --129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0 -57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0 --120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0 -67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0 --110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0 -76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0 --100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0 -86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0 --86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0 -96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0 --76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0 -105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0 --67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0 -115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0 --57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0 -124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0 --48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0 -134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0 --38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0 -144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0 --28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0 -153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0 --19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0 -163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0 --9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0 -172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0 --0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0 --168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0 -14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0 --158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0 -24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0 --148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0 -33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0 --139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0 -43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0 --129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0 -52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0 --120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0 -62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0 --110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0 -72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0 --100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0 -81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0 --91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0 -96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0 --81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0 -105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0 --72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0 -115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0 --62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0 -124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0 --52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0 -134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0 --43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0 -144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0 --33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0 -153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0 --24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0 -163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0 --14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0 --4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0 -0.00,0.00,7.20,0.00,1.00,0.00,0.00,0 --177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0 --168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0 -19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0 --158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0 --148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0 -38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0 --139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0 -48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0 --129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0 -57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0 --120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0 -67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0 --110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0 -76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0 --100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0 -86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0 --86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0 -96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0 --76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0 -105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0 --67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0 -115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0 --57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0 -124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0 --48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0 -134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0 --38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0 -144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0 --28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0 --19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0 -163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0 --9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0 --0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0 --168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0 -14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0 --158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0 --148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0 -33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0 --139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0 -43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0 --129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0 -52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0 --120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0 -62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0 --110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0 -72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0 --100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0 -81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0 --91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0 -96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0 --81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0 -105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0 --72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0 -115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0 --62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0 -124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0 --52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0 -134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0 --43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0 -144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0 --33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0 -153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0 --24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0 --14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0 --4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0 -0.00,0.00,9.61,0.00,1.00,0.00,0.00,0 --177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0 --168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0 --158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0 --148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0 --139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0 -48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0 --129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0 -57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0 --120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0 -67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0 --110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0 -76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0 --100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0 -86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0 --86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0 -96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0 --76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0 -105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0 --67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0 -115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0 --57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0 -124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0 --48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0 -134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0 --38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0 --28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0 --19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0 -163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0 --9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0 --0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0 --168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0 --158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0 --148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0 -33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0 --139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0 -43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0 --129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0 -52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0 --120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0 -62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0 --110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0 -72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0 --100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0 -81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0 --91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0 -96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0 --81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0 -105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0 --72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0 -115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0 --62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0 -124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0 --52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0 -134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0 --43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0 -144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0 --33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0 -153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0 --24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0 --14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0 -172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0 --4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0 -0.00,0.00,5.60,0.00,1.00,0.00,0.00,0 --177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0 --168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0 --158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0 -28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0 --148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0 --139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0 -48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0 --129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0 -57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0 --120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0 -67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0 --110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0 -76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0 --100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0 -86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0 --86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0 -96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0 --76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0 -105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0 --67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0 -115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0 --57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0 -124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0 --48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0 -134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0 --38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0 --28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0 -153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0 --19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0 --9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0 --0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0 --168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0 --158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0 --148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0 -33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0 --139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0 -43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0 --129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0 -52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0 --120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0 -62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0 --110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0 -72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0 --100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0 -81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0 --91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0 -96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0 --81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0 -105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0 --72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0 -115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0 --62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0 -124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0 --52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0 -134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0 --43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0 -144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0 --33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0 -153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0 --24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0 --14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0 --4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0 -0.00,0.00,11.21,0.00,1.00,0.00,0.00,0 --177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0 --168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0 --158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0 -28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0 --148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0 -38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0 --139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0 -48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0 --129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0 -57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0 --120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0 -67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0 --110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0 -76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0 --100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0 -86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0 --86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0 -96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0 --76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0 -105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0 --67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0 -115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0 --57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0 -124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0 --48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0 -134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0 --38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0 -144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0 --28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0 -153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0 --19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0 --9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0 --0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0 --168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0 --158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0 --148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0 --139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0 -43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0 --129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0 -52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0 --120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0 -62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0 --110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0 -72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0 --100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0 -81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0 --91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0 -96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0 --81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0 -105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0 --72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0 -115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0 --62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0 -124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0 --52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0 -134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0 --43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0 --33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0 -153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0 --24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0 -163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0 --14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0 --4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,3.99,0.00,1.00,0.00,0.00,0 --177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0 --168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0 -19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0 --158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0 --148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0 -33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0 --139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0 -43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0 --129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0 -52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0 --120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0 -62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0 --110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0 -76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0 --100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0 -86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0 --86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0 -96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0 --76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0 -105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0 --67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0 -120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0 --57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0 --48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0 -139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0 --38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0 -148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0 --28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0 -158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0 --19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0 -163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0 --9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0 --0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0 --168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0 --158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0 --153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0 --144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0 -43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0 --134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0 --124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0 -62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0 --110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0 -72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0 --100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0 -81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0 --91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0 -96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0 --81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0 -105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0 --72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0 -115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0 --57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0 -124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0 --48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0 -134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0 --38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0 --28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0 --24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0 --14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0 --4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,12.82,0.00,1.00,0.00,0.00,0 --177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0 --168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0 --158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0 --148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0 -33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0 --139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0 --129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0 --120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0 -62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0 --110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0 -76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0 --100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0 -86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0 --86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0 -96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0 --76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0 -110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0 --67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0 -120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0 --57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0 --48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0 --38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0 --28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0 --19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0 --9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0 --0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0 --168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0 --163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0 --153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0 -33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0 --144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0 -43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0 --134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0 --124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0 -62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0 --115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0 -72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0 --100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0 -81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0 --91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0 -96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0 --81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0 -105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0 --67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0 -115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0 --57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0 -124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0 --48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0 -134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0 --38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0 -144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0 --28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0 --19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0 --14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0 --4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,2.39,0.00,1.00,0.00,0.00,0 --177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0 --168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0 --158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0 --153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0 -33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0 --144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0 --134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0 --124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0 -62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0 --110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0 -72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0 --100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0 -86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0 --86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0 -96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0 --76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0 -110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0 --67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0 -120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0 --52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0 -129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0 --43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0 --33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0 --24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0 --19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0 --9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0 --0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0 --168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0 --163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0 --153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0 -28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0 --144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0 -38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0 --134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0 -48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0 --124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0 -57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0 --115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0 -72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0 --105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0 -81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0 --91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0 -96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0 --81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0 -105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0 --67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0 -120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0 --57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0 -129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0 --48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0 -139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0 --38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0 --28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0 -158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0 --19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0 --9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0 --4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0 -0.00,0.00,14.42,0.00,1.00,0.00,0.00,0 --177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0 --168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0 --163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0 -24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0 --153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0 -28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0 --144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0 -38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0 --134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0 -48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0 --124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0 -62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0 --115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0 -72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0 --100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0 -86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0 --86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0 -96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0 --76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0 -110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0 --62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0 -120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0 --52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0 -134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0 --43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0 --33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0 --24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0 -158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0 --14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0 --9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0 --0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0 --172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0 --163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0 --153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0 --148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0 -38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0 --139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0 -48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0 --129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0 --115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0 -67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0 --105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0 -81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0 --91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0 -96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0 --76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0 -105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0 --67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0 -120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0 --52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0 -129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0 --43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0 -139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0 --33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0 --28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0 --19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0 -163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0 --9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0 --4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0 -0.00,0.00,0.79,0.00,1.00,0.00,0.00,0 --177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0 -4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0 --168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0 --163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0 -19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0 --153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0 -28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0 --148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0 -38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0 --139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0 -48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0 --124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0 -57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0 --115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0 -72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0 --100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0 -86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0 --86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0 -100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0 --76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0 -110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0 --62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0 -124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0 --48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0 -134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0 --38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0 --28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0 --24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0 -163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0 --14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0 -168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0 --9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0 --0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0 --177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0 --172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0 -9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0 --163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0 --158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0 --148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0 -33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0 --139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0 -43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0 --129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0 --120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0 -67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0 --105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0 -81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0 --91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0 -96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0 --76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0 -110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0 --67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0 -120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0 --52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0 -134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0 --43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0 -144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0 --33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0 -153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0 --24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0 --19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0 -168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0 --9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0 --4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0 diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC16c_ISM4.csv b/scripts/testv/stvOMASA_4ISM_1MASA1TC16c_ISM4.csv deleted file mode 100644 index 8a14c3413ddd2dd47415bf6de3e19631f65f8f6c..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_1MASA1TC16c_ISM4.csv +++ /dev/null @@ -1,1500 +0,0 @@ --0.00,0.00,0.00,0.00,1.00,0.00,4.80,0 --0.00,4.80,0.06,0.00,1.00,4.80,9.60,0 --0.00,9.60,0.13,0.00,1.00,9.60,14.40,0 --0.00,14.40,0.19,0.00,1.00,14.40,19.20,0 --0.00,19.20,0.26,0.00,1.00,19.20,24.00,0 --0.00,24.00,0.32,0.00,1.00,24.00,28.80,0 --0.00,28.80,0.39,0.00,1.00,28.80,33.60,0 --0.00,33.60,0.45,0.00,1.00,33.60,38.40,0 --0.00,38.40,0.51,0.00,1.00,38.40,43.20,0 --0.00,43.20,0.58,0.00,1.00,43.20,48.00,0 --0.00,48.00,0.64,0.00,1.00,48.00,52.80,0 --0.00,52.80,0.71,0.00,1.00,52.80,57.60,0 --0.00,57.60,0.77,0.00,1.00,57.60,62.40,0 --0.00,62.40,0.84,0.00,1.00,62.40,67.20,0 --0.00,67.20,0.90,0.00,1.00,67.20,72.00,0 --0.00,72.00,0.96,0.00,1.00,72.00,76.80,0 --0.00,76.80,1.03,0.00,1.00,76.80,81.60,0 --0.00,81.60,1.09,0.00,1.00,81.60,86.40,0 --0.00,86.40,1.16,0.00,1.00,86.40,86.40,0 --177.60,89.20,1.22,0.00,1.00,91.20,81.60,0 --177.60,86.40,1.29,0.00,1.00,96.00,76.80,0 --177.60,81.60,1.35,0.00,1.00,100.80,72.00,0 --177.60,76.80,1.41,0.00,1.00,105.60,67.20,0 --177.60,72.00,1.48,0.00,1.00,110.40,62.40,0 --177.60,67.20,1.54,0.00,1.00,115.20,57.60,0 -177.60,62.40,1.61,0.00,1.00,120.00,52.80,0 -177.60,57.60,1.67,0.00,1.00,124.80,48.00,0 -177.60,52.80,1.73,0.00,1.00,129.60,43.20,0 -177.60,48.00,1.80,0.00,1.00,134.40,38.40,0 -177.60,43.20,1.86,0.00,1.00,139.20,33.60,0 -177.60,38.40,1.93,0.00,1.00,144.00,28.80,0 -177.60,33.60,1.99,0.00,1.00,148.80,24.00,0 -177.60,28.80,2.06,0.00,1.00,153.60,19.20,0 -177.60,24.00,2.12,0.00,1.00,158.40,14.40,0 -177.60,19.20,2.18,0.00,1.00,163.20,9.60,0 -177.60,14.40,2.25,0.00,1.00,168.00,4.80,0 -177.60,9.60,2.31,0.00,1.00,172.80,0.00,0 -177.60,4.80,2.38,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,2.44,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,2.51,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,2.57,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,2.63,0.00,1.00,-163.20,-19.20,0 --177.60,-19.20,2.70,0.00,1.00,-158.40,-24.00,0 --177.60,-24.00,2.76,0.00,1.00,-153.60,-28.80,0 --177.60,-28.80,2.83,0.00,1.00,-148.80,-33.60,0 --177.60,-33.60,2.89,0.00,1.00,-144.00,-38.40,0 --177.60,-38.40,2.96,0.00,1.00,-139.20,-43.20,0 --177.60,-48.00,3.02,0.00,1.00,-134.40,-48.00,0 --177.60,-48.00,3.08,0.00,1.00,-129.60,-52.80,0 --177.60,-52.80,3.15,0.00,1.00,-124.80,-57.60,0 --177.60,-57.60,3.21,0.00,1.00,-120.00,-62.40,0 -177.60,-62.40,3.28,0.00,1.00,-115.20,-67.20,0 -177.60,-67.20,3.34,0.00,1.00,-110.40,-72.00,0 -177.60,-76.80,3.41,0.00,1.00,-105.60,-76.80,0 -177.60,-76.80,3.47,0.00,1.00,-100.80,-81.60,0 -177.60,-86.40,3.53,0.00,1.00,-96.00,-86.40,0 -177.60,-89.20,3.60,0.00,1.00,-91.20,-86.40,0 -0.00,-86.40,3.66,0.00,1.00,-86.40,-81.60,0 -0.00,-81.60,3.73,0.00,1.00,-81.60,-76.80,0 -0.00,-76.80,3.79,0.00,1.00,-76.80,-72.00,0 -0.00,-72.00,3.86,0.00,1.00,-72.00,-67.20,0 -0.00,-67.20,3.92,0.00,1.00,-67.20,-62.40,0 -0.00,-62.40,3.98,0.00,1.00,-62.40,-57.60,0 -0.00,-57.60,4.05,0.00,1.00,-57.60,-52.80,0 -0.00,-52.80,4.11,0.00,1.00,-52.80,-48.00,0 -0.00,-48.00,4.18,0.00,1.00,-48.00,-43.20,0 -0.00,-43.20,4.24,0.00,1.00,-43.20,-38.40,0 -0.00,-38.40,4.31,0.00,1.00,-38.40,-33.60,0 -0.00,-33.60,4.37,0.00,1.00,-33.60,-28.80,0 -0.00,-28.80,4.43,0.00,1.00,-28.80,-24.00,0 -0.00,-24.00,4.50,0.00,1.00,-24.00,-19.20,0 -0.00,-19.20,4.56,0.00,1.00,-19.20,-14.40,0 -0.00,-14.40,4.63,0.00,1.00,-14.40,-9.60,0 -0.00,-9.60,4.69,0.00,1.00,-9.60,-4.80,0 -0.00,-4.80,4.76,0.00,1.00,-4.80,0.00,0 -0.00,0.00,4.82,0.00,1.00,0.00,4.80,0 -0.00,4.80,4.88,0.00,1.00,4.80,9.60,0 -0.00,9.60,4.95,0.00,1.00,9.60,14.40,0 -0.00,14.40,5.01,0.00,1.00,14.40,19.20,0 -0.00,19.20,5.08,0.00,1.00,19.20,24.00,0 -0.00,24.00,5.14,0.00,1.00,24.00,28.80,0 -4.80,28.80,5.20,0.00,1.00,28.80,33.60,0 -4.80,33.60,5.27,0.00,1.00,33.60,38.40,0 -4.80,38.40,5.33,0.00,1.00,38.40,43.20,0 -4.80,43.20,5.40,0.00,1.00,43.20,48.00,0 -4.80,48.00,5.46,0.00,1.00,48.00,52.80,0 -4.80,52.80,5.53,0.00,1.00,52.80,57.60,0 -9.60,57.60,5.59,0.00,1.00,57.60,62.40,0 -9.60,62.40,5.65,0.00,1.00,62.40,67.20,0 -9.60,67.20,5.72,0.00,1.00,67.20,72.00,0 -14.40,72.00,5.78,0.00,1.00,72.00,76.80,0 -19.20,76.80,5.85,0.00,1.00,76.80,81.60,0 -28.80,81.60,5.91,0.00,1.00,81.60,86.40,0 -52.80,86.40,5.98,0.00,1.00,86.40,86.40,0 -105.60,86.40,6.04,0.00,1.00,91.20,81.60,0 -139.20,81.60,6.10,0.00,1.00,96.00,76.80,0 -158.40,76.80,6.17,0.00,1.00,100.80,72.00,0 -163.20,72.00,6.23,0.00,1.00,105.60,67.20,0 -168.00,67.20,6.30,0.00,1.00,110.40,62.40,0 -168.00,62.40,6.36,0.00,1.00,115.20,57.60,0 -172.80,57.60,6.43,0.00,1.00,120.00,52.80,0 -172.80,52.80,6.49,0.00,1.00,124.80,48.00,0 -172.80,48.00,6.55,0.00,1.00,129.60,43.20,0 -172.80,43.20,6.62,0.00,1.00,134.40,38.40,0 -177.60,38.40,6.68,0.00,1.00,139.20,33.60,0 -177.60,33.60,6.75,0.00,1.00,144.00,28.80,0 -177.60,28.80,6.81,0.00,1.00,148.80,24.00,0 -177.60,24.00,6.88,0.00,1.00,153.60,19.20,0 -177.60,19.20,6.94,0.00,1.00,158.40,14.40,0 -177.60,14.40,7.00,0.00,1.00,163.20,9.60,0 -177.60,9.60,7.07,0.00,1.00,168.00,4.80,0 -177.60,4.80,7.13,0.00,1.00,172.80,0.00,0 -177.60,0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,7.26,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,7.33,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,7.39,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,7.45,0.00,1.00,-163.20,-19.20,0 --177.60,-19.20,7.52,0.00,1.00,-158.40,-24.00,0 --177.60,-24.00,7.58,0.00,1.00,-153.60,-28.80,0 --177.60,-28.80,7.65,0.00,1.00,-148.80,-33.60,0 --177.60,-33.60,7.71,0.00,1.00,-144.00,-38.40,0 --177.60,-38.40,7.78,0.00,1.00,-139.20,-43.20,0 --172.80,-43.20,7.84,0.00,1.00,-134.40,-48.00,0 --172.80,-48.00,7.90,0.00,1.00,-129.60,-52.80,0 --172.80,-52.80,7.97,0.00,1.00,-124.80,-57.60,0 --172.80,-57.60,8.03,0.00,1.00,-120.00,-62.40,0 --168.00,-62.40,8.10,0.00,1.00,-115.20,-67.20,0 --168.00,-67.20,8.16,0.00,1.00,-110.40,-72.00,0 --163.20,-72.00,8.22,0.00,1.00,-105.60,-76.80,0 --158.40,-76.80,8.29,0.00,1.00,-100.80,-81.60,0 --139.20,-81.60,8.35,0.00,1.00,-96.00,-86.40,0 --105.60,-86.40,8.42,0.00,1.00,-91.20,-86.40,0 --52.80,-86.40,8.48,0.00,1.00,-86.40,-81.60,0 --28.80,-81.60,8.55,0.00,1.00,-81.60,-76.80,0 --19.20,-76.80,8.61,0.00,1.00,-76.80,-72.00,0 --14.40,-72.00,8.67,0.00,1.00,-72.00,-67.20,0 --9.60,-67.20,8.74,0.00,1.00,-67.20,-62.40,0 --9.60,-62.40,8.80,0.00,1.00,-62.40,-57.60,0 --9.60,-57.60,8.87,0.00,1.00,-57.60,-52.80,0 --4.80,-52.80,8.93,0.00,1.00,-52.80,-48.00,0 --4.80,-48.00,9.00,0.00,1.00,-48.00,-43.20,0 --4.80,-43.20,9.06,0.00,1.00,-43.20,-38.40,0 --4.80,-38.40,9.12,0.00,1.00,-38.40,-33.60,0 --4.80,-33.60,9.19,0.00,1.00,-33.60,-28.80,0 --4.80,-28.80,9.25,0.00,1.00,-28.80,-24.00,0 --0.00,-24.00,9.32,0.00,1.00,-24.00,-19.20,0 --0.00,-19.20,9.38,0.00,1.00,-19.20,-14.40,0 --0.00,-14.40,9.45,0.00,1.00,-14.40,-9.60,0 --0.00,-9.60,9.51,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,9.57,0.00,1.00,-4.80,0.00,0 -0.00,0.00,9.64,0.00,1.00,0.00,4.80,0 -0.00,4.80,9.70,0.00,1.00,4.80,9.60,0 -0.00,9.60,9.77,0.00,1.00,9.60,14.40,0 -4.80,14.40,9.83,0.00,1.00,14.40,19.20,0 -4.80,19.20,9.90,0.00,1.00,19.20,24.00,0 -4.80,24.00,9.96,0.00,1.00,24.00,28.80,0 -4.80,28.80,10.02,0.00,1.00,28.80,33.60,0 -4.80,33.60,10.09,0.00,1.00,33.60,38.40,0 -9.60,38.40,10.15,0.00,1.00,38.40,43.20,0 -9.60,43.20,10.22,0.00,1.00,43.20,48.00,0 -9.60,48.00,10.28,0.00,1.00,48.00,52.80,0 -14.40,52.80,10.35,0.00,1.00,52.80,57.60,0 -14.40,57.60,10.41,0.00,1.00,57.60,62.40,0 -19.20,62.40,10.47,0.00,1.00,62.40,67.20,0 -24.00,67.20,10.54,0.00,1.00,67.20,72.00,0 -28.80,72.00,10.60,0.00,1.00,72.00,72.00,0 -33.60,72.00,10.67,0.00,1.00,76.80,76.80,0 -48.00,76.80,10.73,0.00,1.00,81.60,81.60,0 -67.20,81.60,10.80,0.00,1.00,86.40,81.60,0 -96.00,81.60,10.86,0.00,1.00,91.20,81.60,0 -120.00,76.80,10.92,0.00,1.00,96.00,76.80,0 -139.20,76.80,10.99,0.00,1.00,100.80,72.00,0 -148.80,72.00,11.05,0.00,1.00,105.60,67.20,0 -153.60,67.20,11.12,0.00,1.00,110.40,62.40,0 -158.40,62.40,11.18,0.00,1.00,115.20,57.60,0 -163.20,57.60,11.24,0.00,1.00,120.00,52.80,0 -168.00,52.80,11.31,0.00,1.00,124.80,48.00,0 -168.00,48.00,11.37,0.00,1.00,129.60,43.20,0 -168.00,43.20,11.44,0.00,1.00,134.40,38.40,0 -172.80,38.40,11.50,0.00,1.00,139.20,33.60,0 -172.80,33.60,11.57,0.00,1.00,144.00,28.80,0 -172.80,28.80,11.63,0.00,1.00,148.80,24.00,0 -177.60,24.00,11.69,0.00,1.00,153.60,19.20,0 -177.60,19.20,11.76,0.00,1.00,158.40,14.40,0 -177.60,14.40,11.82,0.00,1.00,163.20,9.60,0 -177.60,9.60,11.89,0.00,1.00,168.00,4.80,0 -177.60,4.80,11.95,0.00,1.00,172.80,0.00,0 -177.60,0.00,12.02,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,12.08,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,12.14,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,12.21,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,12.27,0.00,1.00,-163.20,-19.20,0 --177.60,-19.20,12.34,0.00,1.00,-158.40,-24.00,0 --177.60,-24.00,12.40,0.00,1.00,-153.60,-28.80,0 --172.80,-28.80,12.47,0.00,1.00,-148.80,-33.60,0 --172.80,-33.60,12.53,0.00,1.00,-144.00,-38.40,0 --172.80,-38.40,12.59,0.00,1.00,-139.20,-43.20,0 --168.00,-43.20,12.66,0.00,1.00,-134.40,-48.00,0 --168.00,-48.00,12.72,0.00,1.00,-129.60,-52.80,0 --168.00,-52.80,12.79,0.00,1.00,-124.80,-57.60,0 --163.20,-57.60,12.85,0.00,1.00,-120.00,-62.40,0 --158.40,-62.40,12.92,0.00,1.00,-115.20,-67.20,0 --153.60,-67.20,12.98,0.00,1.00,-110.40,-72.00,0 --148.80,-72.00,13.04,0.00,1.00,-105.60,-76.80,0 --139.20,-76.80,13.11,0.00,1.00,-100.80,-81.60,0 --120.00,-76.80,13.17,0.00,1.00,-96.00,-81.60,0 --96.00,-81.60,13.24,0.00,1.00,-91.20,-81.60,0 --67.20,-81.60,13.30,0.00,1.00,-86.40,-76.80,0 --48.00,-76.80,13.37,0.00,1.00,-81.60,-72.00,0 --33.60,-72.00,13.43,0.00,1.00,-76.80,-72.00,0 --28.80,-72.00,13.49,0.00,1.00,-72.00,-67.20,0 --24.00,-67.20,13.56,0.00,1.00,-67.20,-62.40,0 --19.20,-62.40,13.62,0.00,1.00,-62.40,-57.60,0 --14.40,-57.60,13.69,0.00,1.00,-57.60,-52.80,0 --14.40,-52.80,13.75,0.00,1.00,-52.80,-48.00,0 --9.60,-48.00,13.82,0.00,1.00,-48.00,-43.20,0 --9.60,-43.20,13.88,0.00,1.00,-43.20,-38.40,0 --9.60,-38.40,13.94,0.00,1.00,-38.40,-33.60,0 --4.80,-33.60,14.01,0.00,1.00,-33.60,-28.80,0 --4.80,-28.80,14.07,0.00,1.00,-28.80,-24.00,0 --4.80,-24.00,14.14,0.00,1.00,-24.00,-19.20,0 --4.80,-19.20,14.20,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,14.27,0.00,1.00,-14.40,-9.60,0 --0.00,-9.60,14.33,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,14.39,0.00,1.00,-4.80,0.00,0 -0.00,0.00,14.46,0.00,1.00,0.00,4.80,0 -0.00,4.80,14.52,0.00,1.00,4.80,9.60,0 -4.80,9.60,14.59,0.00,1.00,9.60,14.40,0 -4.80,14.40,14.65,0.00,1.00,14.40,19.20,0 -4.80,19.20,14.71,0.00,1.00,19.20,24.00,0 -4.80,24.00,14.78,0.00,1.00,24.00,28.80,0 -9.60,28.80,14.84,0.00,1.00,28.80,33.60,0 -9.60,33.60,14.91,0.00,1.00,33.60,38.40,0 -9.60,38.40,14.97,0.00,1.00,38.40,43.20,0 -14.40,43.20,15.04,0.00,1.00,43.20,48.00,0 -14.40,48.00,15.10,0.00,1.00,48.00,52.80,0 -19.20,52.80,15.16,0.00,1.00,52.80,57.60,0 -19.20,52.80,15.23,0.00,1.00,57.60,57.60,0 -24.00,57.60,15.29,0.00,1.00,62.40,62.40,0 -28.80,62.40,15.36,0.00,1.00,67.20,67.20,0 -38.40,67.20,15.42,0.00,1.00,72.00,72.00,0 -48.00,72.00,15.49,0.00,1.00,76.80,72.00,0 -57.60,72.00,15.55,0.00,1.00,81.60,76.80,0 -76.80,76.80,15.61,0.00,1.00,86.40,76.80,0 -96.00,76.80,15.68,0.00,1.00,91.20,76.80,0 -115.20,76.80,15.74,0.00,1.00,96.00,72.00,0 -129.60,72.00,15.81,0.00,1.00,100.80,72.00,0 -139.20,67.20,15.87,0.00,1.00,105.60,67.20,0 -144.00,67.20,15.94,0.00,1.00,110.40,62.40,0 -153.60,62.40,16.00,0.00,1.00,115.20,57.60,0 -158.40,57.60,16.00,0.00,1.00,120.00,52.80,0 -158.40,52.80,15.94,0.00,1.00,124.80,48.00,0 -163.20,48.00,15.87,0.00,1.00,129.60,43.20,0 -168.00,43.20,15.81,0.00,1.00,134.40,38.40,0 -168.00,38.40,15.74,0.00,1.00,139.20,33.60,0 -168.00,33.60,15.68,0.00,1.00,144.00,28.80,0 -172.80,28.80,15.61,0.00,1.00,148.80,24.00,0 -172.80,24.00,15.55,0.00,1.00,153.60,19.20,0 -172.80,19.20,15.49,0.00,1.00,158.40,14.40,0 -177.60,14.40,15.42,0.00,1.00,163.20,9.60,0 -177.60,9.60,15.36,0.00,1.00,168.00,4.80,0 -177.60,4.80,15.29,0.00,1.00,172.80,0.00,0 -177.60,0.00,15.23,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,15.16,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,15.10,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,15.04,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,14.97,0.00,1.00,-163.20,-19.20,0 --172.80,-19.20,14.91,0.00,1.00,-158.40,-24.00,0 --172.80,-24.00,14.84,0.00,1.00,-153.60,-28.80,0 --172.80,-28.80,14.78,0.00,1.00,-148.80,-33.60,0 --168.00,-33.60,14.71,0.00,1.00,-144.00,-38.40,0 --168.00,-38.40,14.65,0.00,1.00,-139.20,-43.20,0 --168.00,-43.20,14.59,0.00,1.00,-134.40,-48.00,0 --163.20,-48.00,14.52,0.00,1.00,-129.60,-52.80,0 --158.40,-52.80,14.46,0.00,1.00,-124.80,-57.60,0 --158.40,-57.60,14.39,0.00,1.00,-120.00,-62.40,0 --153.60,-62.40,14.33,0.00,1.00,-115.20,-67.20,0 --144.00,-67.20,14.27,0.00,1.00,-110.40,-72.00,0 --139.20,-67.20,14.20,0.00,1.00,-105.60,-72.00,0 --129.60,-72.00,14.14,0.00,1.00,-100.80,-76.80,0 --115.20,-76.80,14.07,0.00,1.00,-96.00,-76.80,0 --96.00,-76.80,14.01,0.00,1.00,-91.20,-76.80,0 --76.80,-76.80,13.94,0.00,1.00,-86.40,-72.00,0 --57.60,-72.00,13.88,0.00,1.00,-81.60,-72.00,0 --48.00,-72.00,13.82,0.00,1.00,-76.80,-67.20,0 --38.40,-67.20,13.75,0.00,1.00,-72.00,-62.40,0 --28.80,-62.40,13.69,0.00,1.00,-67.20,-57.60,0 --24.00,-57.60,13.62,0.00,1.00,-62.40,-57.60,0 --19.20,-52.80,13.56,0.00,1.00,-57.60,-52.80,0 --19.20,-52.80,13.49,0.00,1.00,-52.80,-48.00,0 --14.40,-48.00,13.43,0.00,1.00,-48.00,-43.20,0 --14.40,-43.20,13.37,0.00,1.00,-43.20,-38.40,0 --9.60,-38.40,13.30,0.00,1.00,-38.40,-33.60,0 --9.60,-33.60,13.24,0.00,1.00,-33.60,-28.80,0 --9.60,-28.80,13.17,0.00,1.00,-28.80,-24.00,0 --4.80,-24.00,13.11,0.00,1.00,-24.00,-19.20,0 --4.80,-19.20,13.04,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,12.98,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,12.92,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,12.85,0.00,1.00,-4.80,0.00,0 -0.00,0.00,12.79,0.00,1.00,0.00,4.80,0 -0.00,4.80,12.72,0.00,1.00,4.80,9.60,0 -4.80,9.60,12.66,0.00,1.00,9.60,14.40,0 -4.80,14.40,12.59,0.00,1.00,14.40,19.20,0 -4.80,19.20,12.53,0.00,1.00,19.20,24.00,0 -9.60,24.00,12.47,0.00,1.00,24.00,28.80,0 -9.60,28.80,12.40,0.00,1.00,28.80,33.60,0 -14.40,33.60,12.34,0.00,1.00,33.60,38.40,0 -14.40,33.60,12.27,0.00,1.00,38.40,38.40,0 -19.20,38.40,12.21,0.00,1.00,43.20,43.20,0 -19.20,43.20,12.14,0.00,1.00,48.00,48.00,0 -24.00,48.00,12.08,0.00,1.00,52.80,52.80,0 -28.80,52.80,12.02,0.00,1.00,57.60,57.60,0 -33.60,57.60,11.95,0.00,1.00,62.40,62.40,0 -38.40,62.40,11.89,0.00,1.00,67.20,62.40,0 -43.20,62.40,11.82,0.00,1.00,72.00,67.20,0 -52.80,67.20,11.76,0.00,1.00,76.80,72.00,0 -67.20,67.20,11.69,0.00,1.00,81.60,72.00,0 -76.80,72.00,11.63,0.00,1.00,86.40,72.00,0 -96.00,72.00,11.57,0.00,1.00,91.20,72.00,0 -105.60,72.00,11.50,0.00,1.00,96.00,67.20,0 -120.00,67.20,11.44,0.00,1.00,100.80,67.20,0 -129.60,67.20,11.37,0.00,1.00,105.60,62.40,0 -139.20,62.40,11.31,0.00,1.00,110.40,57.60,0 -144.00,57.60,11.24,0.00,1.00,115.20,57.60,0 -148.80,52.80,11.18,0.00,1.00,120.00,52.80,0 -153.60,52.80,11.12,0.00,1.00,124.80,48.00,0 -158.40,48.00,11.05,0.00,1.00,129.60,43.20,0 -163.20,43.20,10.99,0.00,1.00,134.40,38.40,0 -163.20,38.40,10.92,0.00,1.00,139.20,33.60,0 -168.00,33.60,10.86,0.00,1.00,144.00,28.80,0 -168.00,28.80,10.80,0.00,1.00,148.80,24.00,0 -172.80,24.00,10.73,0.00,1.00,153.60,19.20,0 -172.80,19.20,10.67,0.00,1.00,158.40,14.40,0 -172.80,14.40,10.60,0.00,1.00,163.20,9.60,0 -177.60,9.60,10.54,0.00,1.00,168.00,4.80,0 -177.60,4.80,10.47,0.00,1.00,172.80,0.00,0 -177.60,0.00,10.41,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.35,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,10.28,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,10.22,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,10.15,0.00,1.00,-163.20,-19.20,0 --172.80,-19.20,10.09,0.00,1.00,-158.40,-24.00,0 --172.80,-24.00,10.02,0.00,1.00,-153.60,-28.80,0 --168.00,-28.80,9.96,0.00,1.00,-148.80,-33.60,0 --168.00,-33.60,9.90,0.00,1.00,-144.00,-38.40,0 --163.20,-38.40,9.83,0.00,1.00,-139.20,-43.20,0 --163.20,-43.20,9.77,0.00,1.00,-134.40,-48.00,0 --158.40,-48.00,9.70,0.00,1.00,-129.60,-52.80,0 --153.60,-52.80,9.64,0.00,1.00,-124.80,-57.60,0 --148.80,-52.80,9.57,0.00,1.00,-120.00,-57.60,0 --144.00,-57.60,9.51,0.00,1.00,-115.20,-62.40,0 --139.20,-62.40,9.45,0.00,1.00,-110.40,-67.20,0 --129.60,-67.20,9.38,0.00,1.00,-105.60,-67.20,0 --120.00,-67.20,9.32,0.00,1.00,-100.80,-72.00,0 --105.60,-72.00,9.25,0.00,1.00,-96.00,-72.00,0 --96.00,-72.00,9.19,0.00,1.00,-91.20,-72.00,0 --76.80,-72.00,9.12,0.00,1.00,-86.40,-72.00,0 --67.20,-67.20,9.06,0.00,1.00,-81.60,-67.20,0 --52.80,-67.20,9.00,0.00,1.00,-76.80,-62.40,0 --43.20,-62.40,8.93,0.00,1.00,-72.00,-62.40,0 --38.40,-62.40,8.87,0.00,1.00,-67.20,-57.60,0 --33.60,-57.60,8.80,0.00,1.00,-62.40,-52.80,0 --28.80,-52.80,8.74,0.00,1.00,-57.60,-48.00,0 --24.00,-48.00,8.67,0.00,1.00,-52.80,-43.20,0 --19.20,-43.20,8.61,0.00,1.00,-48.00,-38.40,0 --19.20,-38.40,8.55,0.00,1.00,-43.20,-38.40,0 --14.40,-33.60,8.48,0.00,1.00,-38.40,-33.60,0 --14.40,-33.60,8.42,0.00,1.00,-33.60,-28.80,0 --9.60,-28.80,8.35,0.00,1.00,-28.80,-24.00,0 --9.60,-24.00,8.29,0.00,1.00,-24.00,-19.20,0 --4.80,-19.20,8.22,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,8.16,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,8.10,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,8.03,0.00,1.00,-4.80,0.00,0 -0.00,0.00,7.97,0.00,1.00,0.00,4.80,0 -0.00,4.80,7.90,0.00,1.00,4.80,9.60,0 -4.80,9.60,7.84,0.00,1.00,9.60,14.40,0 -4.80,14.40,7.78,0.00,1.00,14.40,19.20,0 -9.60,19.20,7.71,0.00,1.00,19.20,24.00,0 -9.60,24.00,7.65,0.00,1.00,24.00,24.00,0 -14.40,24.00,7.58,0.00,1.00,28.80,28.80,0 -14.40,28.80,7.52,0.00,1.00,33.60,33.60,0 -19.20,33.60,7.45,0.00,1.00,33.60,38.40,0 -19.20,38.40,7.39,0.00,1.00,38.40,43.20,0 -24.00,43.20,7.33,0.00,1.00,43.20,48.00,0 -28.80,48.00,7.26,0.00,1.00,48.00,52.80,0 -33.60,52.80,7.20,0.00,1.00,57.60,52.80,0 -38.40,52.80,7.13,0.00,1.00,62.40,57.60,0 -43.20,57.60,7.07,0.00,1.00,67.20,62.40,0 -52.80,62.40,7.00,0.00,1.00,72.00,62.40,0 -62.40,62.40,6.94,0.00,1.00,76.80,67.20,0 -72.00,62.40,6.88,0.00,1.00,81.60,67.20,0 -81.60,67.20,6.81,0.00,1.00,86.40,67.20,0 -91.20,67.20,6.75,0.00,1.00,91.20,67.20,0 -105.60,67.20,6.68,0.00,1.00,96.00,67.20,0 -115.20,62.40,6.62,0.00,1.00,100.80,62.40,0 -124.80,62.40,6.55,0.00,1.00,105.60,57.60,0 -134.40,57.60,6.49,0.00,1.00,110.40,57.60,0 -139.20,57.60,6.43,0.00,1.00,115.20,52.80,0 -144.00,52.80,6.36,0.00,1.00,120.00,48.00,0 -148.80,48.00,6.30,0.00,1.00,129.60,43.20,0 -153.60,43.20,6.23,0.00,1.00,134.40,43.20,0 -158.40,38.40,6.17,0.00,1.00,139.20,38.40,0 -158.40,38.40,6.10,0.00,1.00,144.00,33.60,0 -163.20,33.60,6.04,0.00,1.00,148.80,28.80,0 -168.00,28.80,5.98,0.00,1.00,148.80,24.00,0 -168.00,24.00,5.91,0.00,1.00,153.60,19.20,0 -172.80,19.20,5.85,0.00,1.00,158.40,14.40,0 -172.80,14.40,5.78,0.00,1.00,163.20,9.60,0 -172.80,9.60,5.72,0.00,1.00,168.00,4.80,0 -177.60,4.80,5.65,0.00,1.00,172.80,0.00,0 -177.60,0.00,5.59,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,5.53,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,5.46,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,5.40,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,5.33,0.00,1.00,-163.20,-19.20,0 --172.80,-19.20,5.27,0.00,1.00,-158.40,-24.00,0 --168.00,-24.00,5.20,0.00,1.00,-153.60,-28.80,0 --168.00,-28.80,5.14,0.00,1.00,-148.80,-33.60,0 --163.20,-33.60,5.08,0.00,1.00,-148.80,-38.40,0 --158.40,-38.40,5.01,0.00,1.00,-144.00,-43.20,0 --158.40,-38.40,4.95,0.00,1.00,-139.20,-43.20,0 --153.60,-43.20,4.88,0.00,1.00,-134.40,-48.00,0 --148.80,-48.00,4.82,0.00,1.00,-129.60,-52.80,0 --144.00,-52.80,4.76,0.00,1.00,-120.00,-57.60,0 --139.20,-57.60,4.69,0.00,1.00,-115.20,-57.60,0 --134.40,-57.60,4.63,0.00,1.00,-110.40,-62.40,0 --124.80,-62.40,4.56,0.00,1.00,-105.60,-67.20,0 --115.20,-62.40,4.50,0.00,1.00,-100.80,-67.20,0 --105.60,-67.20,4.43,0.00,1.00,-96.00,-67.20,0 --91.20,-67.20,4.37,0.00,1.00,-91.20,-67.20,0 --81.60,-67.20,4.31,0.00,1.00,-86.40,-67.20,0 --72.00,-62.40,4.24,0.00,1.00,-81.60,-62.40,0 --62.40,-62.40,4.18,0.00,1.00,-76.80,-62.40,0 --52.80,-62.40,4.11,0.00,1.00,-72.00,-57.60,0 --43.20,-57.60,4.05,0.00,1.00,-67.20,-52.80,0 --38.40,-52.80,3.98,0.00,1.00,-62.40,-52.80,0 --33.60,-52.80,3.92,0.00,1.00,-57.60,-48.00,0 --28.80,-48.00,3.86,0.00,1.00,-48.00,-43.20,0 --24.00,-43.20,3.79,0.00,1.00,-43.20,-38.40,0 --19.20,-38.40,3.73,0.00,1.00,-38.40,-33.60,0 --19.20,-33.60,3.66,0.00,1.00,-33.60,-28.80,0 --14.40,-28.80,3.60,0.00,1.00,-33.60,-24.00,0 --14.40,-24.00,3.53,0.00,1.00,-28.80,-24.00,0 --9.60,-24.00,3.47,0.00,1.00,-24.00,-19.20,0 --9.60,-19.20,3.41,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,3.34,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,3.28,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,3.21,0.00,1.00,-4.80,0.00,0 -0.00,0.00,3.15,0.00,1.00,0.00,4.80,0 -0.00,4.80,3.08,0.00,1.00,4.80,9.60,0 -4.80,9.60,3.02,0.00,1.00,9.60,14.40,0 -4.80,14.40,2.96,0.00,1.00,14.40,19.20,0 -9.60,14.40,2.89,0.00,1.00,19.20,19.20,0 -14.40,19.20,2.83,0.00,1.00,19.20,24.00,0 -14.40,24.00,2.76,0.00,1.00,24.00,28.80,0 -19.20,28.80,2.70,0.00,1.00,28.80,33.60,0 -19.20,33.60,2.63,0.00,1.00,33.60,38.40,0 -24.00,38.40,2.57,0.00,1.00,38.40,43.20,0 -28.80,38.40,2.51,0.00,1.00,43.20,43.20,0 -33.60,43.20,2.44,0.00,1.00,48.00,48.00,0 -38.40,48.00,2.38,0.00,1.00,52.80,52.80,0 -43.20,52.80,2.31,0.00,1.00,57.60,52.80,0 -48.00,52.80,2.25,0.00,1.00,62.40,57.60,0 -57.60,57.60,2.18,0.00,1.00,72.00,57.60,0 -62.40,57.60,2.12,0.00,1.00,76.80,62.40,0 -72.00,62.40,2.06,0.00,1.00,81.60,62.40,0 -81.60,62.40,1.99,0.00,1.00,86.40,62.40,0 -91.20,62.40,1.93,0.00,1.00,91.20,62.40,0 -100.80,62.40,1.86,0.00,1.00,96.00,62.40,0 -110.40,57.60,1.80,0.00,1.00,100.80,57.60,0 -120.00,57.60,1.73,0.00,1.00,105.60,57.60,0 -129.60,57.60,1.67,0.00,1.00,115.20,52.80,0 -134.40,52.80,1.61,0.00,1.00,120.00,48.00,0 -139.20,48.00,1.54,0.00,1.00,124.80,48.00,0 -144.00,48.00,1.48,0.00,1.00,129.60,43.20,0 -148.80,43.20,1.41,0.00,1.00,134.40,38.40,0 -153.60,38.40,1.35,0.00,1.00,139.20,33.60,0 -158.40,33.60,1.29,0.00,1.00,144.00,33.60,0 -158.40,28.80,1.22,0.00,1.00,148.80,28.80,0 -163.20,28.80,1.16,0.00,1.00,153.60,24.00,0 -168.00,24.00,1.09,0.00,1.00,158.40,19.20,0 -168.00,19.20,1.03,0.00,1.00,163.20,14.40,0 -172.80,14.40,0.96,0.00,1.00,163.20,9.60,0 -172.80,9.60,0.90,0.00,1.00,168.00,4.80,0 -177.60,4.80,0.84,0.00,1.00,172.80,0.00,0 -177.60,0.00,0.77,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,0.71,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,0.64,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,0.58,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,0.51,0.00,1.00,-163.20,-19.20,0 --168.00,-19.20,0.45,0.00,1.00,-163.20,-24.00,0 --168.00,-24.00,0.39,0.00,1.00,-158.40,-28.80,0 --163.20,-28.80,0.32,0.00,1.00,-153.60,-33.60,0 --158.40,-28.80,0.26,0.00,1.00,-148.80,-33.60,0 --158.40,-33.60,0.19,0.00,1.00,-144.00,-38.40,0 --153.60,-38.40,0.13,0.00,1.00,-139.20,-43.20,0 --148.80,-43.20,0.06,0.00,1.00,-134.40,-48.00,0 --144.00,-48.00,0.00,0.00,1.00,-129.60,-48.00,0 --139.20,-48.00,0.00,0.00,1.00,-124.80,-52.80,0 --134.40,-52.80,0.16,0.00,1.00,-120.00,-57.60,0 --129.60,-57.60,0.32,0.00,1.00,-115.20,-57.60,0 --120.00,-57.60,0.48,0.00,1.00,-105.60,-62.40,0 --110.40,-57.60,0.65,0.00,1.00,-100.80,-62.40,0 --100.80,-62.40,0.81,0.00,1.00,-96.00,-62.40,0 --91.20,-62.40,0.97,0.00,1.00,-91.20,-62.40,0 --81.60,-62.40,1.13,0.00,1.00,-86.40,-62.40,0 --72.00,-62.40,1.29,0.00,1.00,-81.60,-57.60,0 --62.40,-57.60,1.45,0.00,1.00,-76.80,-57.60,0 --57.60,-57.60,1.62,0.00,1.00,-72.00,-52.80,0 --48.00,-52.80,1.78,0.00,1.00,-62.40,-52.80,0 --43.20,-52.80,1.94,0.00,1.00,-57.60,-48.00,0 --38.40,-48.00,2.10,0.00,1.00,-52.80,-43.20,0 --33.60,-43.20,2.26,0.00,1.00,-48.00,-43.20,0 --28.80,-38.40,2.42,0.00,1.00,-43.20,-38.40,0 --24.00,-38.40,2.59,0.00,1.00,-38.40,-33.60,0 --19.20,-33.60,2.75,0.00,1.00,-33.60,-28.80,0 --19.20,-28.80,2.91,0.00,1.00,-28.80,-24.00,0 --14.40,-24.00,3.07,0.00,1.00,-24.00,-19.20,0 --14.40,-19.20,3.23,0.00,1.00,-19.20,-19.20,0 --9.60,-14.40,3.39,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,3.56,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,3.72,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,3.88,0.00,1.00,-4.80,0.00,0 -0.00,0.00,4.04,0.00,1.00,0.00,4.80,0 -4.80,4.80,4.20,0.00,1.00,4.80,9.60,0 -4.80,9.60,4.36,0.00,1.00,9.60,14.40,0 -9.60,9.60,4.53,0.00,1.00,14.40,14.40,0 -9.60,14.40,4.69,0.00,1.00,14.40,19.20,0 -14.40,19.20,4.85,0.00,1.00,19.20,24.00,0 -19.20,24.00,5.01,0.00,1.00,24.00,28.80,0 -19.20,28.80,5.17,0.00,1.00,28.80,33.60,0 -24.00,28.80,5.33,0.00,1.00,33.60,33.60,0 -28.80,33.60,5.49,0.00,1.00,38.40,38.40,0 -33.60,38.40,5.66,0.00,1.00,43.20,43.20,0 -38.40,43.20,5.82,0.00,1.00,48.00,43.20,0 -43.20,43.20,5.98,0.00,1.00,52.80,48.00,0 -48.00,48.00,6.14,0.00,1.00,57.60,52.80,0 -52.80,48.00,6.30,0.00,1.00,62.40,52.80,0 -57.60,52.80,6.46,0.00,1.00,67.20,57.60,0 -67.20,52.80,6.63,0.00,1.00,72.00,57.60,0 -76.80,57.60,6.79,0.00,1.00,81.60,57.60,0 -81.60,57.60,6.95,0.00,1.00,86.40,57.60,0 -91.20,57.60,7.11,0.00,1.00,91.20,57.60,0 -100.80,57.60,7.27,0.00,1.00,96.00,57.60,0 -110.40,52.80,7.43,0.00,1.00,100.80,52.80,0 -115.20,52.80,7.60,0.00,1.00,110.40,52.80,0 -124.80,52.80,7.76,0.00,1.00,115.20,48.00,0 -129.60,48.00,7.92,0.00,1.00,120.00,48.00,0 -134.40,48.00,8.08,0.00,1.00,124.80,43.20,0 -139.20,43.20,8.24,0.00,1.00,129.60,38.40,0 -144.00,38.40,8.40,0.00,1.00,134.40,38.40,0 -148.80,38.40,8.57,0.00,1.00,139.20,33.60,0 -153.60,33.60,8.73,0.00,1.00,144.00,28.80,0 -158.40,28.80,8.89,0.00,1.00,148.80,24.00,0 -163.20,24.00,9.05,0.00,1.00,153.60,24.00,0 -163.20,24.00,9.21,0.00,1.00,158.40,19.20,0 -168.00,19.20,9.37,0.00,1.00,163.20,14.40,0 -172.80,14.40,9.54,0.00,1.00,168.00,9.60,0 -172.80,9.60,9.70,0.00,1.00,168.00,4.80,0 -177.60,4.80,9.86,0.00,1.00,172.80,0.00,0 -177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.18,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,10.34,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,10.51,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,10.67,0.00,1.00,-168.00,-19.20,0 --168.00,-19.20,10.83,0.00,1.00,-163.20,-24.00,0 --163.20,-24.00,10.99,0.00,1.00,-158.40,-24.00,0 --163.20,-24.00,11.15,0.00,1.00,-153.60,-28.80,0 --158.40,-28.80,11.31,0.00,1.00,-148.80,-33.60,0 --153.60,-33.60,11.47,0.00,1.00,-144.00,-38.40,0 --148.80,-38.40,11.64,0.00,1.00,-139.20,-38.40,0 --144.00,-38.40,11.80,0.00,1.00,-134.40,-43.20,0 --139.20,-43.20,11.96,0.00,1.00,-129.60,-48.00,0 --134.40,-48.00,12.12,0.00,1.00,-124.80,-48.00,0 --129.60,-48.00,12.28,0.00,1.00,-120.00,-52.80,0 --124.80,-52.80,12.44,0.00,1.00,-115.20,-52.80,0 --115.20,-52.80,12.61,0.00,1.00,-110.40,-57.60,0 --110.40,-52.80,12.77,0.00,1.00,-100.80,-57.60,0 --100.80,-57.60,12.93,0.00,1.00,-96.00,-57.60,0 --91.20,-57.60,13.09,0.00,1.00,-91.20,-57.60,0 --81.60,-57.60,13.25,0.00,1.00,-86.40,-57.60,0 --76.80,-57.60,13.41,0.00,1.00,-81.60,-57.60,0 --67.20,-52.80,13.58,0.00,1.00,-72.00,-52.80,0 --57.60,-52.80,13.74,0.00,1.00,-67.20,-52.80,0 --52.80,-48.00,13.90,0.00,1.00,-62.40,-48.00,0 --48.00,-48.00,14.06,0.00,1.00,-57.60,-43.20,0 --43.20,-43.20,14.22,0.00,1.00,-52.80,-43.20,0 --38.40,-43.20,14.38,0.00,1.00,-48.00,-38.40,0 --33.60,-38.40,14.55,0.00,1.00,-43.20,-33.60,0 --28.80,-33.60,14.71,0.00,1.00,-38.40,-33.60,0 --24.00,-28.80,14.87,0.00,1.00,-33.60,-28.80,0 --19.20,-28.80,15.03,0.00,1.00,-28.80,-24.00,0 --19.20,-24.00,15.19,0.00,1.00,-24.00,-19.20,0 --14.40,-19.20,15.35,0.00,1.00,-19.20,-14.40,0 --9.60,-14.40,15.52,0.00,1.00,-14.40,-14.40,0 --9.60,-9.60,15.68,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,15.84,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,16.00,0.00,1.00,-4.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,0.00,4.80,0 -4.80,4.80,15.84,0.00,1.00,4.80,9.60,0 -4.80,9.60,15.68,0.00,1.00,9.60,9.60,0 -9.60,9.60,15.52,0.00,1.00,9.60,14.40,0 -14.40,14.40,15.35,0.00,1.00,14.40,19.20,0 -14.40,19.20,15.19,0.00,1.00,19.20,24.00,0 -19.20,24.00,15.03,0.00,1.00,24.00,24.00,0 -24.00,24.00,14.87,0.00,1.00,28.80,28.80,0 -24.00,28.80,14.71,0.00,1.00,33.60,33.60,0 -28.80,33.60,14.55,0.00,1.00,38.40,38.40,0 -33.60,33.60,14.38,0.00,1.00,43.20,38.40,0 -38.40,38.40,14.22,0.00,1.00,48.00,43.20,0 -43.20,43.20,14.06,0.00,1.00,52.80,43.20,0 -48.00,43.20,13.90,0.00,1.00,57.60,48.00,0 -57.60,48.00,13.74,0.00,1.00,62.40,48.00,0 -62.40,48.00,13.58,0.00,1.00,67.20,52.80,0 -67.20,48.00,13.41,0.00,1.00,72.00,52.80,0 -76.80,52.80,13.25,0.00,1.00,81.60,52.80,0 -86.40,52.80,13.09,0.00,1.00,86.40,52.80,0 -91.20,52.80,12.93,0.00,1.00,91.20,52.80,0 -100.80,52.80,12.77,0.00,1.00,96.00,52.80,0 -105.60,48.00,12.61,0.00,1.00,105.60,48.00,0 -115.20,48.00,12.44,0.00,1.00,110.40,48.00,0 -120.00,48.00,12.28,0.00,1.00,115.20,48.00,0 -124.80,43.20,12.12,0.00,1.00,120.00,43.20,0 -134.40,43.20,11.96,0.00,1.00,124.80,43.20,0 -139.20,38.40,11.80,0.00,1.00,129.60,38.40,0 -144.00,38.40,11.64,0.00,1.00,134.40,33.60,0 -148.80,33.60,11.47,0.00,1.00,139.20,33.60,0 -153.60,28.80,11.31,0.00,1.00,144.00,28.80,0 -153.60,28.80,11.15,0.00,1.00,148.80,24.00,0 -158.40,24.00,10.99,0.00,1.00,153.60,19.20,0 -163.20,19.20,10.83,0.00,1.00,158.40,19.20,0 -168.00,14.40,10.67,0.00,1.00,163.20,14.40,0 -168.00,14.40,10.51,0.00,1.00,168.00,9.60,0 -172.80,9.60,10.34,0.00,1.00,172.80,4.80,0 -177.60,4.80,10.18,0.00,1.00,172.80,0.00,0 -177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,9.86,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,9.70,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,9.54,0.00,1.00,-172.80,-14.40,0 --168.00,-14.40,9.37,0.00,1.00,-168.00,-19.20,0 --168.00,-14.40,9.21,0.00,1.00,-163.20,-19.20,0 --163.20,-19.20,9.05,0.00,1.00,-158.40,-24.00,0 --158.40,-24.00,8.89,0.00,1.00,-153.60,-28.80,0 --153.60,-28.80,8.73,0.00,1.00,-148.80,-33.60,0 --153.60,-28.80,8.57,0.00,1.00,-144.00,-33.60,0 --148.80,-33.60,8.40,0.00,1.00,-139.20,-38.40,0 --144.00,-38.40,8.24,0.00,1.00,-134.40,-43.20,0 --139.20,-38.40,8.08,0.00,1.00,-129.60,-43.20,0 --134.40,-43.20,7.92,0.00,1.00,-124.80,-48.00,0 --124.80,-43.20,7.76,0.00,1.00,-120.00,-48.00,0 --120.00,-48.00,7.60,0.00,1.00,-115.20,-48.00,0 --115.20,-48.00,7.43,0.00,1.00,-110.40,-52.80,0 --105.60,-48.00,7.27,0.00,1.00,-105.60,-52.80,0 --100.80,-52.80,7.11,0.00,1.00,-96.00,-52.80,0 --91.20,-52.80,6.95,0.00,1.00,-91.20,-52.80,0 --86.40,-52.80,6.79,0.00,1.00,-86.40,-52.80,0 --76.80,-52.80,6.63,0.00,1.00,-81.60,-52.80,0 --67.20,-48.00,6.46,0.00,1.00,-72.00,-48.00,0 --62.40,-48.00,6.30,0.00,1.00,-67.20,-48.00,0 --57.60,-48.00,6.14,0.00,1.00,-62.40,-43.20,0 --48.00,-43.20,5.98,0.00,1.00,-57.60,-43.20,0 --43.20,-43.20,5.82,0.00,1.00,-52.80,-38.40,0 --38.40,-38.40,5.66,0.00,1.00,-48.00,-38.40,0 --33.60,-33.60,5.49,0.00,1.00,-43.20,-33.60,0 --28.80,-33.60,5.33,0.00,1.00,-38.40,-28.80,0 --24.00,-28.80,5.17,0.00,1.00,-33.60,-24.00,0 --24.00,-24.00,5.01,0.00,1.00,-28.80,-24.00,0 --19.20,-24.00,4.85,0.00,1.00,-24.00,-19.20,0 --14.40,-19.20,4.69,0.00,1.00,-19.20,-14.40,0 --14.40,-14.40,4.53,0.00,1.00,-14.40,-9.60,0 --9.60,-9.60,4.36,0.00,1.00,-9.60,-9.60,0 --4.80,-9.60,4.20,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,4.04,0.00,1.00,-4.80,0.00,0 -0.00,0.00,3.88,0.00,1.00,0.00,4.80,0 -4.80,4.80,3.72,0.00,1.00,4.80,4.80,0 -4.80,4.80,3.56,0.00,1.00,4.80,9.60,0 -9.60,9.60,3.39,0.00,1.00,9.60,14.40,0 -14.40,14.40,3.23,0.00,1.00,14.40,19.20,0 -19.20,19.20,3.07,0.00,1.00,19.20,19.20,0 -19.20,19.20,2.91,0.00,1.00,24.00,24.00,0 -24.00,24.00,2.75,0.00,1.00,24.00,28.80,0 -28.80,28.80,2.59,0.00,1.00,28.80,28.80,0 -33.60,28.80,2.42,0.00,1.00,33.60,33.60,0 -38.40,33.60,2.26,0.00,1.00,38.40,38.40,0 -43.20,33.60,2.10,0.00,1.00,43.20,38.40,0 -48.00,38.40,1.94,0.00,1.00,48.00,43.20,0 -52.80,38.40,1.78,0.00,1.00,52.80,43.20,0 -57.60,43.20,1.62,0.00,1.00,62.40,43.20,0 -62.40,43.20,1.45,0.00,1.00,67.20,48.00,0 -72.00,43.20,1.29,0.00,1.00,72.00,48.00,0 -76.80,48.00,1.13,0.00,1.00,76.80,48.00,0 -86.40,48.00,0.97,0.00,1.00,86.40,48.00,0 -91.20,48.00,0.81,0.00,1.00,91.20,48.00,0 -100.80,48.00,0.65,0.00,1.00,96.00,48.00,0 -105.60,48.00,0.48,0.00,1.00,105.60,48.00,0 -110.40,43.20,0.32,0.00,1.00,110.40,43.20,0 -120.00,43.20,0.16,0.00,1.00,115.20,43.20,0 -124.80,43.20,0.00,0.00,1.00,124.80,38.40,0 -129.60,38.40,0.00,0.00,1.00,129.60,38.40,0 -134.40,38.40,0.04,0.00,1.00,134.40,33.60,0 -139.20,33.60,0.08,0.00,1.00,139.20,33.60,0 -144.00,33.60,0.12,0.00,1.00,144.00,28.80,0 -148.80,28.80,0.16,0.00,1.00,148.80,24.00,0 -153.60,24.00,0.20,0.00,1.00,153.60,24.00,0 -158.40,24.00,0.24,0.00,1.00,158.40,19.20,0 -163.20,19.20,0.28,0.00,1.00,158.40,14.40,0 -163.20,14.40,0.32,0.00,1.00,163.20,14.40,0 -168.00,14.40,0.36,0.00,1.00,168.00,9.60,0 -172.80,9.60,0.40,0.00,1.00,172.80,4.80,0 -172.80,4.80,0.44,0.00,1.00,172.80,0.00,0 -177.60,0.00,0.48,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,0.52,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,0.56,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,0.60,0.00,1.00,-172.80,-14.40,0 --168.00,-14.40,0.64,0.00,1.00,-168.00,-14.40,0 --163.20,-14.40,0.68,0.00,1.00,-163.20,-19.20,0 --163.20,-19.20,0.72,0.00,1.00,-158.40,-24.00,0 --158.40,-24.00,0.76,0.00,1.00,-158.40,-24.00,0 --153.60,-24.00,0.80,0.00,1.00,-153.60,-28.80,0 --148.80,-28.80,0.84,0.00,1.00,-148.80,-33.60,0 --144.00,-33.60,0.88,0.00,1.00,-144.00,-33.60,0 --139.20,-33.60,0.92,0.00,1.00,-139.20,-38.40,0 --134.40,-38.40,0.96,0.00,1.00,-134.40,-38.40,0 --129.60,-38.40,1.00,0.00,1.00,-129.60,-43.20,0 --124.80,-43.20,1.04,0.00,1.00,-124.80,-43.20,0 --120.00,-43.20,1.08,0.00,1.00,-115.20,-48.00,0 --110.40,-43.20,1.12,0.00,1.00,-110.40,-48.00,0 --105.60,-48.00,1.16,0.00,1.00,-105.60,-48.00,0 --100.80,-48.00,1.20,0.00,1.00,-96.00,-48.00,0 --91.20,-48.00,1.24,0.00,1.00,-91.20,-48.00,0 --86.40,-48.00,1.28,0.00,1.00,-86.40,-48.00,0 --76.80,-48.00,1.32,0.00,1.00,-76.80,-48.00,0 --72.00,-43.20,1.36,0.00,1.00,-72.00,-43.20,0 --62.40,-43.20,1.40,0.00,1.00,-67.20,-43.20,0 --57.60,-43.20,1.44,0.00,1.00,-62.40,-43.20,0 --52.80,-38.40,1.48,0.00,1.00,-52.80,-38.40,0 --48.00,-38.40,1.52,0.00,1.00,-48.00,-38.40,0 --43.20,-33.60,1.56,0.00,1.00,-43.20,-33.60,0 --38.40,-33.60,1.60,0.00,1.00,-38.40,-28.80,0 --33.60,-28.80,1.64,0.00,1.00,-33.60,-28.80,0 --28.80,-28.80,1.68,0.00,1.00,-28.80,-24.00,0 --24.00,-24.00,1.72,0.00,1.00,-24.00,-19.20,0 --19.20,-19.20,1.76,0.00,1.00,-24.00,-19.20,0 --19.20,-19.20,1.80,0.00,1.00,-19.20,-14.40,0 --14.40,-14.40,1.84,0.00,1.00,-14.40,-9.60,0 --9.60,-9.60,1.88,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,1.92,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,1.96,0.00,1.00,-4.80,0.00,0 -0.00,0.00,2.01,0.00,1.00,0.00,4.80,0 -4.80,4.80,2.05,0.00,1.00,4.80,4.80,0 -4.80,4.80,2.09,0.00,1.00,4.80,9.60,0 -9.60,9.60,2.13,0.00,1.00,9.60,14.40,0 -14.40,14.40,2.17,0.00,1.00,14.40,14.40,0 -19.20,14.40,2.21,0.00,1.00,14.40,19.20,0 -24.00,19.20,2.25,0.00,1.00,19.20,24.00,0 -24.00,24.00,2.29,0.00,1.00,24.00,24.00,0 -28.80,24.00,2.33,0.00,1.00,28.80,28.80,0 -33.60,28.80,2.37,0.00,1.00,33.60,28.80,0 -38.40,28.80,2.41,0.00,1.00,38.40,33.60,0 -43.20,33.60,2.45,0.00,1.00,43.20,33.60,0 -48.00,33.60,2.49,0.00,1.00,48.00,38.40,0 -52.80,38.40,2.53,0.00,1.00,52.80,38.40,0 -62.40,38.40,2.57,0.00,1.00,57.60,38.40,0 -67.20,38.40,2.61,0.00,1.00,62.40,43.20,0 -72.00,38.40,2.65,0.00,1.00,72.00,43.20,0 -76.80,43.20,2.69,0.00,1.00,76.80,43.20,0 -86.40,43.20,2.73,0.00,1.00,86.40,43.20,0 -91.20,43.20,2.77,0.00,1.00,91.20,43.20,0 -96.00,43.20,2.81,0.00,1.00,100.80,43.20,0 -105.60,43.20,2.85,0.00,1.00,105.60,43.20,0 -110.40,38.40,2.89,0.00,1.00,110.40,38.40,0 -115.20,38.40,2.93,0.00,1.00,120.00,38.40,0 -120.00,38.40,2.97,0.00,1.00,124.80,38.40,0 -129.60,33.60,3.01,0.00,1.00,129.60,33.60,0 -134.40,33.60,3.05,0.00,1.00,134.40,33.60,0 -139.20,28.80,3.09,0.00,1.00,139.20,28.80,0 -144.00,28.80,3.13,0.00,1.00,144.00,28.80,0 -148.80,24.00,3.17,0.00,1.00,148.80,24.00,0 -153.60,24.00,3.21,0.00,1.00,153.60,19.20,0 -153.60,19.20,3.25,0.00,1.00,158.40,19.20,0 -158.40,19.20,3.29,0.00,1.00,163.20,14.40,0 -163.20,14.40,3.33,0.00,1.00,163.20,9.60,0 -168.00,9.60,3.37,0.00,1.00,168.00,9.60,0 -172.80,9.60,3.41,0.00,1.00,172.80,4.80,0 -172.80,4.80,3.45,0.00,1.00,172.80,0.00,0 -177.60,0.00,3.49,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,3.53,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,3.57,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,3.61,0.00,1.00,-172.80,-9.60,0 --168.00,-9.60,3.65,0.00,1.00,-168.00,-14.40,0 --163.20,-14.40,3.69,0.00,1.00,-163.20,-19.20,0 --158.40,-19.20,3.73,0.00,1.00,-163.20,-19.20,0 --153.60,-19.20,3.77,0.00,1.00,-158.40,-24.00,0 --153.60,-24.00,3.81,0.00,1.00,-153.60,-28.80,0 --148.80,-24.00,3.85,0.00,1.00,-148.80,-28.80,0 --144.00,-28.80,3.89,0.00,1.00,-144.00,-33.60,0 --139.20,-28.80,3.93,0.00,1.00,-139.20,-33.60,0 --134.40,-33.60,3.97,0.00,1.00,-134.40,-38.40,0 --129.60,-33.60,4.01,0.00,1.00,-129.60,-38.40,0 --120.00,-38.40,4.05,0.00,1.00,-124.80,-38.40,0 --115.20,-38.40,4.09,0.00,1.00,-120.00,-43.20,0 --110.40,-38.40,4.13,0.00,1.00,-110.40,-43.20,0 --105.60,-43.20,4.17,0.00,1.00,-105.60,-43.20,0 --96.00,-43.20,4.21,0.00,1.00,-100.80,-43.20,0 --91.20,-43.20,4.25,0.00,1.00,-91.20,-43.20,0 --86.40,-43.20,4.29,0.00,1.00,-86.40,-43.20,0 --76.80,-43.20,4.33,0.00,1.00,-76.80,-43.20,0 --72.00,-38.40,4.37,0.00,1.00,-72.00,-38.40,0 --67.20,-38.40,4.41,0.00,1.00,-62.40,-38.40,0 --62.40,-38.40,4.45,0.00,1.00,-57.60,-38.40,0 --52.80,-38.40,4.49,0.00,1.00,-52.80,-33.60,0 --48.00,-33.60,4.53,0.00,1.00,-48.00,-33.60,0 --43.20,-33.60,4.57,0.00,1.00,-43.20,-28.80,0 --38.40,-28.80,4.61,0.00,1.00,-38.40,-28.80,0 --33.60,-28.80,4.65,0.00,1.00,-33.60,-24.00,0 --28.80,-24.00,4.69,0.00,1.00,-28.80,-24.00,0 --24.00,-24.00,4.73,0.00,1.00,-24.00,-19.20,0 --24.00,-19.20,4.77,0.00,1.00,-19.20,-14.40,0 --19.20,-14.40,4.81,0.00,1.00,-14.40,-14.40,0 --14.40,-14.40,4.85,0.00,1.00,-14.40,-9.60,0 --9.60,-9.60,4.89,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,4.93,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,4.97,0.00,1.00,-4.80,0.00,0 -0.00,0.00,5.01,0.00,1.00,0.00,4.80,0 -4.80,4.80,5.05,0.00,1.00,4.80,4.80,0 -9.60,4.80,5.09,0.00,1.00,4.80,9.60,0 -9.60,9.60,5.13,0.00,1.00,9.60,9.60,0 -14.40,9.60,5.17,0.00,1.00,9.60,14.40,0 -19.20,14.40,5.21,0.00,1.00,14.40,19.20,0 -24.00,19.20,5.25,0.00,1.00,19.20,19.20,0 -28.80,19.20,5.29,0.00,1.00,24.00,24.00,0 -33.60,24.00,5.33,0.00,1.00,24.00,24.00,0 -38.40,24.00,5.37,0.00,1.00,28.80,28.80,0 -43.20,28.80,5.41,0.00,1.00,33.60,28.80,0 -48.00,28.80,5.45,0.00,1.00,38.40,33.60,0 -52.80,28.80,5.49,0.00,1.00,43.20,33.60,0 -57.60,33.60,5.53,0.00,1.00,48.00,33.60,0 -62.40,33.60,5.57,0.00,1.00,52.80,38.40,0 -67.20,33.60,5.61,0.00,1.00,62.40,38.40,0 -72.00,38.40,5.65,0.00,1.00,67.20,38.40,0 -81.60,38.40,5.69,0.00,1.00,76.80,38.40,0 -86.40,38.40,5.73,0.00,1.00,86.40,38.40,0 -91.20,38.40,5.77,0.00,1.00,91.20,38.40,0 -96.00,38.40,5.81,0.00,1.00,100.80,38.40,0 -105.60,38.40,5.85,0.00,1.00,105.60,38.40,0 -110.40,33.60,5.89,0.00,1.00,115.20,33.60,0 -115.20,33.60,5.93,0.00,1.00,120.00,33.60,0 -120.00,33.60,5.97,0.00,1.00,129.60,33.60,0 -124.80,33.60,6.02,0.00,1.00,134.40,28.80,0 -129.60,28.80,6.06,0.00,1.00,139.20,28.80,0 -134.40,28.80,6.10,0.00,1.00,144.00,24.00,0 -139.20,24.00,6.14,0.00,1.00,148.80,24.00,0 -144.00,24.00,6.18,0.00,1.00,153.60,19.20,0 -148.80,19.20,6.22,0.00,1.00,158.40,19.20,0 -153.60,19.20,6.26,0.00,1.00,158.40,14.40,0 -158.40,14.40,6.30,0.00,1.00,163.20,14.40,0 -163.20,14.40,6.34,0.00,1.00,168.00,9.60,0 -168.00,9.60,6.38,0.00,1.00,168.00,9.60,0 -168.00,9.60,6.42,0.00,1.00,172.80,4.80,0 -172.80,4.80,6.46,0.00,1.00,177.60,0.00,0 -177.60,0.00,6.50,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,6.54,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,6.58,0.00,1.00,-177.60,-9.60,0 --168.00,-9.60,6.62,0.00,1.00,-172.80,-9.60,0 --168.00,-9.60,6.66,0.00,1.00,-168.00,-14.40,0 --163.20,-14.40,6.70,0.00,1.00,-168.00,-14.40,0 --158.40,-14.40,6.74,0.00,1.00,-163.20,-19.20,0 --153.60,-19.20,6.78,0.00,1.00,-158.40,-19.20,0 --148.80,-19.20,6.82,0.00,1.00,-158.40,-24.00,0 --144.00,-24.00,6.86,0.00,1.00,-153.60,-24.00,0 --139.20,-24.00,6.90,0.00,1.00,-148.80,-28.80,0 --134.40,-28.80,6.94,0.00,1.00,-144.00,-28.80,0 --129.60,-28.80,6.98,0.00,1.00,-139.20,-33.60,0 --124.80,-33.60,7.02,0.00,1.00,-134.40,-33.60,0 --120.00,-33.60,7.06,0.00,1.00,-129.60,-33.60,0 --115.20,-33.60,7.10,0.00,1.00,-120.00,-38.40,0 --110.40,-33.60,7.14,0.00,1.00,-115.20,-38.40,0 --105.60,-38.40,7.18,0.00,1.00,-105.60,-38.40,0 --96.00,-38.40,7.22,0.00,1.00,-100.80,-38.40,0 --91.20,-38.40,7.26,0.00,1.00,-91.20,-38.40,0 --86.40,-38.40,7.30,0.00,1.00,-86.40,-38.40,0 --81.60,-38.40,7.34,0.00,1.00,-76.80,-38.40,0 --72.00,-38.40,7.38,0.00,1.00,-67.20,-38.40,0 --67.20,-33.60,7.42,0.00,1.00,-62.40,-33.60,0 --62.40,-33.60,7.46,0.00,1.00,-52.80,-33.60,0 --57.60,-33.60,7.50,0.00,1.00,-48.00,-33.60,0 --52.80,-28.80,7.54,0.00,1.00,-43.20,-28.80,0 --48.00,-28.80,7.58,0.00,1.00,-38.40,-28.80,0 --43.20,-28.80,7.62,0.00,1.00,-33.60,-24.00,0 --38.40,-24.00,7.66,0.00,1.00,-28.80,-24.00,0 --33.60,-24.00,7.70,0.00,1.00,-24.00,-19.20,0 --28.80,-19.20,7.74,0.00,1.00,-24.00,-19.20,0 --24.00,-19.20,7.78,0.00,1.00,-19.20,-14.40,0 --19.20,-14.40,7.82,0.00,1.00,-14.40,-9.60,0 --14.40,-9.60,7.86,0.00,1.00,-9.60,-9.60,0 --9.60,-9.60,7.90,0.00,1.00,-9.60,-4.80,0 --9.60,-4.80,7.94,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,7.98,0.00,1.00,-4.80,0.00,0 -0.00,0.00,8.02,0.00,1.00,0.00,4.80,0 -4.80,4.80,8.06,0.00,1.00,4.80,4.80,0 -9.60,4.80,8.10,0.00,1.00,4.80,9.60,0 -14.40,9.60,8.14,0.00,1.00,9.60,9.60,0 -14.40,9.60,8.18,0.00,1.00,9.60,14.40,0 -19.20,14.40,8.22,0.00,1.00,14.40,14.40,0 -24.00,14.40,8.26,0.00,1.00,14.40,19.20,0 -28.80,19.20,8.30,0.00,1.00,19.20,19.20,0 -33.60,19.20,8.34,0.00,1.00,24.00,24.00,0 -38.40,19.20,8.38,0.00,1.00,28.80,24.00,0 -43.20,24.00,8.42,0.00,1.00,28.80,24.00,0 -48.00,24.00,8.46,0.00,1.00,33.60,28.80,0 -52.80,28.80,8.50,0.00,1.00,38.40,28.80,0 -57.60,28.80,8.54,0.00,1.00,48.00,28.80,0 -62.40,28.80,8.58,0.00,1.00,52.80,33.60,0 -67.20,28.80,8.62,0.00,1.00,57.60,33.60,0 -76.80,33.60,8.66,0.00,1.00,67.20,33.60,0 -81.60,33.60,8.70,0.00,1.00,76.80,33.60,0 -86.40,33.60,8.74,0.00,1.00,81.60,33.60,0 -91.20,33.60,8.78,0.00,1.00,91.20,33.60,0 -96.00,33.60,8.82,0.00,1.00,100.80,33.60,0 -100.80,33.60,8.86,0.00,1.00,110.40,33.60,0 -110.40,28.80,8.90,0.00,1.00,115.20,33.60,0 -115.20,28.80,8.94,0.00,1.00,124.80,28.80,0 -120.00,28.80,8.98,0.00,1.00,129.60,28.80,0 -124.80,28.80,9.02,0.00,1.00,139.20,28.80,0 -129.60,24.00,9.06,0.00,1.00,144.00,24.00,0 -134.40,24.00,9.10,0.00,1.00,148.80,24.00,0 -139.20,24.00,9.14,0.00,1.00,153.60,19.20,0 -144.00,19.20,9.18,0.00,1.00,153.60,19.20,0 -148.80,19.20,9.22,0.00,1.00,158.40,14.40,0 -153.60,14.40,9.26,0.00,1.00,163.20,14.40,0 -158.40,14.40,9.30,0.00,1.00,163.20,9.60,0 -163.20,9.60,9.34,0.00,1.00,168.00,9.60,0 -168.00,9.60,9.38,0.00,1.00,172.80,4.80,0 -168.00,4.80,9.42,0.00,1.00,172.80,4.80,0 -172.80,4.80,9.46,0.00,1.00,177.60,0.00,0 -177.60,0.00,9.50,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,9.54,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,9.58,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,9.62,0.00,1.00,-172.80,-9.60,0 --168.00,-9.60,9.66,0.00,1.00,-172.80,-9.60,0 --163.20,-9.60,9.70,0.00,1.00,-168.00,-14.40,0 --158.40,-14.40,9.74,0.00,1.00,-163.20,-14.40,0 --153.60,-14.40,9.78,0.00,1.00,-163.20,-19.20,0 --148.80,-19.20,9.82,0.00,1.00,-158.40,-19.20,0 --144.00,-19.20,9.86,0.00,1.00,-153.60,-24.00,0 --139.20,-24.00,9.90,0.00,1.00,-153.60,-24.00,0 --134.40,-24.00,9.94,0.00,1.00,-148.80,-28.80,0 --129.60,-24.00,9.98,0.00,1.00,-144.00,-28.80,0 --124.80,-28.80,10.03,0.00,1.00,-139.20,-28.80,0 --120.00,-28.80,10.07,0.00,1.00,-129.60,-33.60,0 --115.20,-28.80,10.11,0.00,1.00,-124.80,-33.60,0 --110.40,-28.80,10.15,0.00,1.00,-115.20,-33.60,0 --100.80,-33.60,10.19,0.00,1.00,-110.40,-33.60,0 --96.00,-33.60,10.23,0.00,1.00,-100.80,-33.60,0 --91.20,-33.60,10.27,0.00,1.00,-91.20,-33.60,0 --86.40,-33.60,10.31,0.00,1.00,-81.60,-33.60,0 --81.60,-33.60,10.35,0.00,1.00,-76.80,-33.60,0 --76.80,-33.60,10.39,0.00,1.00,-67.20,-33.60,0 --67.20,-28.80,10.43,0.00,1.00,-57.60,-28.80,0 --62.40,-28.80,10.47,0.00,1.00,-52.80,-28.80,0 --57.60,-28.80,10.51,0.00,1.00,-48.00,-28.80,0 --52.80,-28.80,10.55,0.00,1.00,-38.40,-24.00,0 --48.00,-24.00,10.59,0.00,1.00,-33.60,-24.00,0 --43.20,-24.00,10.63,0.00,1.00,-28.80,-24.00,0 --38.40,-19.20,10.67,0.00,1.00,-28.80,-19.20,0 --33.60,-19.20,10.71,0.00,1.00,-24.00,-19.20,0 --28.80,-19.20,10.75,0.00,1.00,-19.20,-14.40,0 --24.00,-14.40,10.79,0.00,1.00,-14.40,-14.40,0 --19.20,-14.40,10.83,0.00,1.00,-14.40,-9.60,0 --14.40,-9.60,10.87,0.00,1.00,-9.60,-9.60,0 --14.40,-9.60,10.91,0.00,1.00,-9.60,-4.80,0 --9.60,-4.80,10.95,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,10.99,0.00,1.00,-4.80,0.00,0 -0.00,0.00,11.03,0.00,1.00,0.00,0.00,0 -4.80,0.00,11.07,0.00,1.00,0.00,4.80,0 -9.60,4.80,11.11,0.00,1.00,4.80,4.80,0 -14.40,4.80,11.15,0.00,1.00,4.80,9.60,0 -19.20,9.60,11.19,0.00,1.00,9.60,9.60,0 -19.20,9.60,11.23,0.00,1.00,9.60,14.40,0 -24.00,14.40,11.27,0.00,1.00,14.40,14.40,0 -28.80,14.40,11.31,0.00,1.00,19.20,19.20,0 -33.60,14.40,11.35,0.00,1.00,19.20,19.20,0 -38.40,19.20,11.39,0.00,1.00,24.00,19.20,0 -43.20,19.20,11.43,0.00,1.00,28.80,24.00,0 -48.00,24.00,11.47,0.00,1.00,33.60,24.00,0 -52.80,24.00,11.51,0.00,1.00,38.40,24.00,0 -57.60,24.00,11.55,0.00,1.00,43.20,24.00,0 -62.40,24.00,11.59,0.00,1.00,48.00,28.80,0 -72.00,24.00,11.63,0.00,1.00,52.80,28.80,0 -76.80,28.80,11.67,0.00,1.00,62.40,28.80,0 -81.60,28.80,11.71,0.00,1.00,72.00,28.80,0 -86.40,28.80,11.75,0.00,1.00,81.60,28.80,0 -91.20,28.80,11.79,0.00,1.00,91.20,28.80,0 -96.00,28.80,11.83,0.00,1.00,100.80,28.80,0 -100.80,28.80,11.87,0.00,1.00,110.40,28.80,0 -105.60,28.80,11.91,0.00,1.00,120.00,28.80,0 -110.40,24.00,11.95,0.00,1.00,129.60,24.00,0 -120.00,24.00,11.99,0.00,1.00,134.40,24.00,0 -124.80,24.00,12.03,0.00,1.00,139.20,24.00,0 -129.60,24.00,12.07,0.00,1.00,144.00,24.00,0 -134.40,19.20,12.11,0.00,1.00,148.80,19.20,0 -139.20,19.20,12.15,0.00,1.00,153.60,19.20,0 -144.00,19.20,12.19,0.00,1.00,158.40,14.40,0 -148.80,14.40,12.23,0.00,1.00,163.20,14.40,0 -153.60,14.40,12.27,0.00,1.00,163.20,14.40,0 -158.40,9.60,12.31,0.00,1.00,168.00,9.60,0 -158.40,9.60,12.35,0.00,1.00,168.00,9.60,0 -163.20,9.60,12.39,0.00,1.00,172.80,4.80,0 -168.00,4.80,12.43,0.00,1.00,172.80,4.80,0 -172.80,4.80,12.47,0.00,1.00,177.60,0.00,0 -177.60,0.00,12.51,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,12.55,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,12.59,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,12.63,0.00,1.00,-172.80,-9.60,0 --163.20,-9.60,12.67,0.00,1.00,-172.80,-9.60,0 --158.40,-9.60,12.71,0.00,1.00,-168.00,-14.40,0 --158.40,-9.60,12.75,0.00,1.00,-168.00,-14.40,0 --153.60,-14.40,12.79,0.00,1.00,-163.20,-14.40,0 --148.80,-14.40,12.83,0.00,1.00,-163.20,-19.20,0 --144.00,-19.20,12.87,0.00,1.00,-158.40,-19.20,0 --139.20,-19.20,12.91,0.00,1.00,-153.60,-24.00,0 --134.40,-19.20,12.95,0.00,1.00,-148.80,-24.00,0 --129.60,-24.00,12.99,0.00,1.00,-144.00,-24.00,0 --124.80,-24.00,13.03,0.00,1.00,-139.20,-24.00,0 --120.00,-24.00,13.07,0.00,1.00,-134.40,-28.80,0 --110.40,-24.00,13.11,0.00,1.00,-129.60,-28.80,0 --105.60,-28.80,13.15,0.00,1.00,-120.00,-28.80,0 --100.80,-28.80,13.19,0.00,1.00,-110.40,-28.80,0 --96.00,-28.80,13.23,0.00,1.00,-100.80,-28.80,0 --91.20,-28.80,13.27,0.00,1.00,-91.20,-28.80,0 --86.40,-28.80,13.31,0.00,1.00,-81.60,-28.80,0 --81.60,-28.80,13.35,0.00,1.00,-72.00,-28.80,0 --76.80,-28.80,13.39,0.00,1.00,-62.40,-28.80,0 --72.00,-24.00,13.43,0.00,1.00,-52.80,-24.00,0 --62.40,-24.00,13.47,0.00,1.00,-48.00,-24.00,0 --57.60,-24.00,13.51,0.00,1.00,-43.20,-24.00,0 --52.80,-24.00,13.55,0.00,1.00,-38.40,-24.00,0 --48.00,-24.00,13.59,0.00,1.00,-33.60,-19.20,0 --43.20,-19.20,13.63,0.00,1.00,-28.80,-19.20,0 --38.40,-19.20,13.67,0.00,1.00,-24.00,-19.20,0 --33.60,-14.40,13.71,0.00,1.00,-19.20,-14.40,0 --28.80,-14.40,13.75,0.00,1.00,-19.20,-14.40,0 --24.00,-14.40,13.79,0.00,1.00,-14.40,-9.60,0 --19.20,-9.60,13.83,0.00,1.00,-9.60,-9.60,0 --19.20,-9.60,13.87,0.00,1.00,-9.60,-4.80,0 --14.40,-4.80,13.91,0.00,1.00,-4.80,-4.80,0 --9.60,-4.80,13.95,0.00,1.00,-4.80,-0.00,0 --4.80,-0.00,13.99,0.00,1.00,-0.00,0.00,0 -0.00,0.00,14.04,0.00,1.00,0.00,0.00,0 -4.80,0.00,14.08,0.00,1.00,0.00,4.80,0 -9.60,4.80,14.12,0.00,1.00,4.80,4.80,0 -14.40,4.80,14.16,0.00,1.00,4.80,9.60,0 -19.20,9.60,14.20,0.00,1.00,9.60,9.60,0 -24.00,9.60,14.24,0.00,1.00,9.60,9.60,0 -28.80,9.60,14.28,0.00,1.00,14.40,14.40,0 -33.60,14.40,14.32,0.00,1.00,14.40,14.40,0 -38.40,14.40,14.36,0.00,1.00,19.20,14.40,0 -43.20,14.40,14.40,0.00,1.00,19.20,19.20,0 -48.00,14.40,14.44,0.00,1.00,24.00,19.20,0 -52.80,19.20,14.48,0.00,1.00,28.80,19.20,0 -57.60,19.20,14.52,0.00,1.00,33.60,19.20,0 -62.40,19.20,14.56,0.00,1.00,38.40,24.00,0 -67.20,19.20,14.60,0.00,1.00,43.20,24.00,0 -72.00,24.00,14.64,0.00,1.00,48.00,24.00,0 -76.80,24.00,14.68,0.00,1.00,57.60,24.00,0 -81.60,24.00,14.72,0.00,1.00,67.20,24.00,0 -86.40,24.00,14.76,0.00,1.00,81.60,24.00,0 -91.20,24.00,14.80,0.00,1.00,91.20,24.00,0 -96.00,24.00,14.84,0.00,1.00,105.60,24.00,0 -100.80,24.00,14.88,0.00,1.00,115.20,24.00,0 -105.60,24.00,14.92,0.00,1.00,124.80,24.00,0 -110.40,19.20,14.96,0.00,1.00,134.40,19.20,0 -115.20,19.20,15.00,0.00,1.00,139.20,19.20,0 -120.00,19.20,15.04,0.00,1.00,144.00,19.20,0 -124.80,19.20,15.08,0.00,1.00,148.80,19.20,0 -129.60,19.20,15.12,0.00,1.00,153.60,19.20,0 -134.40,14.40,15.16,0.00,1.00,158.40,14.40,0 -139.20,14.40,15.20,0.00,1.00,163.20,14.40,0 -144.00,14.40,15.24,0.00,1.00,163.20,14.40,0 -148.80,9.60,15.28,0.00,1.00,168.00,9.60,0 -153.60,9.60,15.32,0.00,1.00,168.00,9.60,0 -158.40,9.60,15.36,0.00,1.00,172.80,4.80,0 -163.20,4.80,15.40,0.00,1.00,172.80,4.80,0 -168.00,4.80,15.44,0.00,1.00,177.60,4.80,0 -172.80,4.80,15.48,0.00,1.00,177.60,0.00,0 -177.60,0.00,15.52,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,15.56,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,15.60,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,15.64,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,15.68,0.00,1.00,-172.80,-9.60,0 --158.40,-9.60,15.72,0.00,1.00,-172.80,-9.60,0 --153.60,-9.60,15.76,0.00,1.00,-168.00,-14.40,0 --148.80,-9.60,15.80,0.00,1.00,-168.00,-14.40,0 --144.00,-14.40,15.84,0.00,1.00,-163.20,-14.40,0 --139.20,-14.40,15.88,0.00,1.00,-163.20,-19.20,0 --134.40,-14.40,15.92,0.00,1.00,-158.40,-19.20,0 --129.60,-19.20,15.96,0.00,1.00,-153.60,-19.20,0 --124.80,-19.20,16.00,0.00,1.00,-148.80,-19.20,0 --120.00,-19.20,16.00,0.00,1.00,-144.00,-19.20,0 --115.20,-19.20,15.96,0.00,1.00,-139.20,-24.00,0 --110.40,-19.20,15.92,0.00,1.00,-134.40,-24.00,0 --105.60,-24.00,15.88,0.00,1.00,-124.80,-24.00,0 --100.80,-24.00,15.84,0.00,1.00,-115.20,-24.00,0 --96.00,-24.00,15.80,0.00,1.00,-105.60,-24.00,0 --91.20,-24.00,15.76,0.00,1.00,-91.20,-24.00,0 --86.40,-24.00,15.72,0.00,1.00,-81.60,-24.00,0 --81.60,-24.00,15.68,0.00,1.00,-67.20,-24.00,0 --76.80,-24.00,15.64,0.00,1.00,-57.60,-24.00,0 --72.00,-24.00,15.60,0.00,1.00,-48.00,-24.00,0 --67.20,-19.20,15.56,0.00,1.00,-43.20,-19.20,0 --62.40,-19.20,15.52,0.00,1.00,-38.40,-19.20,0 --57.60,-19.20,15.48,0.00,1.00,-33.60,-19.20,0 --52.80,-19.20,15.44,0.00,1.00,-28.80,-19.20,0 --48.00,-14.40,15.40,0.00,1.00,-24.00,-14.40,0 --43.20,-14.40,15.36,0.00,1.00,-19.20,-14.40,0 --38.40,-14.40,15.32,0.00,1.00,-19.20,-14.40,0 --33.60,-14.40,15.28,0.00,1.00,-14.40,-9.60,0 --28.80,-9.60,15.24,0.00,1.00,-14.40,-9.60,0 --24.00,-9.60,15.20,0.00,1.00,-9.60,-9.60,0 --19.20,-9.60,15.16,0.00,1.00,-9.60,-4.80,0 --14.40,-4.80,15.12,0.00,1.00,-4.80,-4.80,0 --9.60,-4.80,15.08,0.00,1.00,-4.80,-0.00,0 --4.80,-0.00,15.04,0.00,1.00,-0.00,0.00,0 -0.00,0.00,15.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,14.96,0.00,1.00,0.00,4.80,0 -9.60,4.80,14.92,0.00,1.00,4.80,4.80,0 -14.40,4.80,14.88,0.00,1.00,4.80,4.80,0 -19.20,4.80,14.84,0.00,1.00,4.80,9.60,0 -24.00,9.60,14.80,0.00,1.00,9.60,9.60,0 -28.80,9.60,14.76,0.00,1.00,9.60,9.60,0 -33.60,9.60,14.72,0.00,1.00,9.60,9.60,0 -38.40,9.60,14.68,0.00,1.00,14.40,14.40,0 -43.20,14.40,14.64,0.00,1.00,14.40,14.40,0 -48.00,14.40,14.60,0.00,1.00,19.20,14.40,0 -52.80,14.40,14.56,0.00,1.00,24.00,14.40,0 -57.60,14.40,14.52,0.00,1.00,24.00,19.20,0 -62.40,14.40,14.48,0.00,1.00,28.80,19.20,0 -67.20,14.40,14.44,0.00,1.00,38.40,19.20,0 -72.00,19.20,14.40,0.00,1.00,43.20,19.20,0 -76.80,19.20,14.36,0.00,1.00,52.80,19.20,0 -81.60,19.20,14.32,0.00,1.00,62.40,19.20,0 -86.40,19.20,14.28,0.00,1.00,76.80,19.20,0 -91.20,19.20,14.24,0.00,1.00,96.00,19.20,0 -96.00,19.20,14.20,0.00,1.00,110.40,19.20,0 -100.80,19.20,14.16,0.00,1.00,120.00,19.20,0 -105.60,19.20,14.12,0.00,1.00,134.40,19.20,0 -110.40,19.20,14.08,0.00,1.00,139.20,19.20,0 -115.20,14.40,14.04,0.00,1.00,148.80,14.40,0 -120.00,14.40,13.99,0.00,1.00,153.60,14.40,0 -124.80,14.40,13.95,0.00,1.00,158.40,14.40,0 -129.60,14.40,13.91,0.00,1.00,158.40,14.40,0 -134.40,14.40,13.87,0.00,1.00,163.20,14.40,0 -139.20,9.60,13.83,0.00,1.00,163.20,9.60,0 -144.00,9.60,13.79,0.00,1.00,168.00,9.60,0 -148.80,9.60,13.75,0.00,1.00,168.00,9.60,0 -153.60,9.60,13.71,0.00,1.00,172.80,4.80,0 -158.40,4.80,13.67,0.00,1.00,172.80,4.80,0 -163.20,4.80,13.63,0.00,1.00,172.80,4.80,0 -168.00,4.80,13.59,0.00,1.00,177.60,0.00,0 -172.80,0.00,13.55,0.00,1.00,177.60,0.00,0 -177.60,0.00,13.51,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,13.47,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,13.43,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,13.39,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,13.35,0.00,1.00,-172.80,-4.80,0 --158.40,-4.80,13.31,0.00,1.00,-172.80,-9.60,0 --153.60,-9.60,13.27,0.00,1.00,-172.80,-9.60,0 --148.80,-9.60,13.23,0.00,1.00,-168.00,-9.60,0 --144.00,-9.60,13.19,0.00,1.00,-168.00,-14.40,0 --139.20,-9.60,13.15,0.00,1.00,-163.20,-14.40,0 --134.40,-14.40,13.11,0.00,1.00,-163.20,-14.40,0 --129.60,-14.40,13.07,0.00,1.00,-158.40,-14.40,0 --124.80,-14.40,13.03,0.00,1.00,-158.40,-14.40,0 --120.00,-14.40,12.99,0.00,1.00,-153.60,-19.20,0 --115.20,-14.40,12.95,0.00,1.00,-148.80,-19.20,0 --110.40,-19.20,12.91,0.00,1.00,-139.20,-19.20,0 --105.60,-19.20,12.87,0.00,1.00,-134.40,-19.20,0 --100.80,-19.20,12.83,0.00,1.00,-120.00,-19.20,0 --96.00,-19.20,12.79,0.00,1.00,-110.40,-19.20,0 --91.20,-19.20,12.75,0.00,1.00,-96.00,-19.20,0 --86.40,-19.20,12.71,0.00,1.00,-76.80,-19.20,0 --81.60,-19.20,12.67,0.00,1.00,-62.40,-19.20,0 --76.80,-19.20,12.63,0.00,1.00,-52.80,-19.20,0 --72.00,-19.20,12.59,0.00,1.00,-43.20,-19.20,0 --67.20,-14.40,12.55,0.00,1.00,-38.40,-19.20,0 --62.40,-14.40,12.51,0.00,1.00,-28.80,-14.40,0 --57.60,-14.40,12.47,0.00,1.00,-24.00,-14.40,0 --52.80,-14.40,12.43,0.00,1.00,-24.00,-14.40,0 --48.00,-14.40,12.39,0.00,1.00,-19.20,-14.40,0 --43.20,-14.40,12.35,0.00,1.00,-14.40,-9.60,0 --38.40,-9.60,12.31,0.00,1.00,-14.40,-9.60,0 --33.60,-9.60,12.27,0.00,1.00,-9.60,-9.60,0 --28.80,-9.60,12.23,0.00,1.00,-9.60,-9.60,0 --24.00,-9.60,12.19,0.00,1.00,-9.60,-4.80,0 --19.20,-4.80,12.15,0.00,1.00,-4.80,-4.80,0 --14.40,-4.80,12.11,0.00,1.00,-4.80,-4.80,0 --9.60,-4.80,12.07,0.00,1.00,-4.80,-0.00,0 --4.80,-0.00,12.03,0.00,1.00,-0.00,0.00,0 -0.00,0.00,11.99,0.00,1.00,0.00,0.00,0 -4.80,0.00,11.95,0.00,1.00,0.00,0.00,0 -9.60,0.00,11.91,0.00,1.00,0.00,4.80,0 -14.40,4.80,11.87,0.00,1.00,4.80,4.80,0 -19.20,4.80,11.83,0.00,1.00,4.80,4.80,0 -24.00,4.80,11.79,0.00,1.00,4.80,4.80,0 -28.80,4.80,11.75,0.00,1.00,4.80,9.60,0 -33.60,9.60,11.71,0.00,1.00,9.60,9.60,0 -38.40,9.60,11.67,0.00,1.00,9.60,9.60,0 -43.20,9.60,11.63,0.00,1.00,14.40,9.60,0 -48.00,9.60,11.59,0.00,1.00,14.40,9.60,0 -52.80,9.60,11.55,0.00,1.00,14.40,14.40,0 -57.60,9.60,11.51,0.00,1.00,19.20,14.40,0 -62.40,9.60,11.47,0.00,1.00,24.00,14.40,0 -67.20,14.40,11.43,0.00,1.00,28.80,14.40,0 -72.00,14.40,11.39,0.00,1.00,33.60,14.40,0 -76.80,14.40,11.35,0.00,1.00,43.20,14.40,0 -81.60,14.40,11.31,0.00,1.00,57.60,14.40,0 -86.40,14.40,11.27,0.00,1.00,76.80,14.40,0 -91.20,14.40,11.23,0.00,1.00,96.00,14.40,0 -96.00,14.40,11.19,0.00,1.00,115.20,14.40,0 -100.80,14.40,11.15,0.00,1.00,129.60,14.40,0 -105.60,14.40,11.11,0.00,1.00,139.20,14.40,0 -110.40,14.40,11.07,0.00,1.00,148.80,14.40,0 -115.20,9.60,11.03,0.00,1.00,153.60,14.40,0 -120.00,9.60,10.99,0.00,1.00,158.40,9.60,0 -124.80,9.60,10.95,0.00,1.00,163.20,9.60,0 -129.60,9.60,10.91,0.00,1.00,163.20,9.60,0 -134.40,9.60,10.87,0.00,1.00,168.00,9.60,0 -139.20,9.60,10.83,0.00,1.00,168.00,9.60,0 -144.00,9.60,10.79,0.00,1.00,172.80,9.60,0 -148.80,4.80,10.75,0.00,1.00,172.80,4.80,0 -153.60,4.80,10.71,0.00,1.00,172.80,4.80,0 -158.40,4.80,10.67,0.00,1.00,172.80,4.80,0 -163.20,4.80,10.63,0.00,1.00,177.60,4.80,0 -168.00,4.80,10.59,0.00,1.00,177.60,0.00,0 -172.80,0.00,10.55,0.00,1.00,177.60,0.00,0 -177.60,0.00,10.51,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.47,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,10.43,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,10.39,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,10.35,0.00,1.00,-177.60,-4.80,0 --158.40,-4.80,10.31,0.00,1.00,-172.80,-4.80,0 --153.60,-4.80,10.27,0.00,1.00,-172.80,-9.60,0 --148.80,-4.80,10.23,0.00,1.00,-172.80,-9.60,0 --144.00,-9.60,10.19,0.00,1.00,-172.80,-9.60,0 --139.20,-9.60,10.15,0.00,1.00,-168.00,-9.60,0 --134.40,-9.60,10.11,0.00,1.00,-168.00,-9.60,0 --129.60,-9.60,10.07,0.00,1.00,-163.20,-9.60,0 --124.80,-9.60,10.03,0.00,1.00,-163.20,-14.40,0 --120.00,-9.60,9.98,0.00,1.00,-158.40,-14.40,0 --115.20,-9.60,9.94,0.00,1.00,-153.60,-14.40,0 --110.40,-14.40,9.90,0.00,1.00,-148.80,-14.40,0 --105.60,-14.40,9.86,0.00,1.00,-139.20,-14.40,0 --100.80,-14.40,9.82,0.00,1.00,-129.60,-14.40,0 --96.00,-14.40,9.78,0.00,1.00,-115.20,-14.40,0 --91.20,-14.40,9.74,0.00,1.00,-96.00,-14.40,0 --86.40,-14.40,9.70,0.00,1.00,-76.80,-14.40,0 --81.60,-14.40,9.66,0.00,1.00,-57.60,-14.40,0 --76.80,-14.40,9.62,0.00,1.00,-43.20,-14.40,0 --72.00,-14.40,9.58,0.00,1.00,-33.60,-14.40,0 --67.20,-14.40,9.54,0.00,1.00,-28.80,-14.40,0 --62.40,-9.60,9.50,0.00,1.00,-24.00,-14.40,0 --57.60,-9.60,9.46,0.00,1.00,-19.20,-9.60,0 --52.80,-9.60,9.42,0.00,1.00,-14.40,-9.60,0 --48.00,-9.60,9.38,0.00,1.00,-14.40,-9.60,0 --43.20,-9.60,9.34,0.00,1.00,-14.40,-9.60,0 --38.40,-9.60,9.30,0.00,1.00,-9.60,-9.60,0 --33.60,-9.60,9.26,0.00,1.00,-9.60,-4.80,0 --28.80,-4.80,9.22,0.00,1.00,-4.80,-4.80,0 --24.00,-4.80,9.18,0.00,1.00,-4.80,-4.80,0 --19.20,-4.80,9.14,0.00,1.00,-4.80,-4.80,0 --14.40,-4.80,9.10,0.00,1.00,-4.80,-0.00,0 --9.60,-0.00,9.06,0.00,1.00,-0.00,-0.00,0 --4.80,-0.00,9.02,0.00,1.00,-0.00,0.00,0 -0.00,0.00,8.98,0.00,1.00,0.00,0.00,0 -4.80,0.00,8.94,0.00,1.00,0.00,0.00,0 -9.60,0.00,8.90,0.00,1.00,0.00,0.00,0 -14.40,0.00,8.86,0.00,1.00,0.00,4.80,0 -19.20,4.80,8.82,0.00,1.00,4.80,4.80,0 -24.00,4.80,8.78,0.00,1.00,4.80,4.80,0 -28.80,4.80,8.74,0.00,1.00,4.80,4.80,0 -33.60,4.80,8.70,0.00,1.00,4.80,4.80,0 -38.40,4.80,8.66,0.00,1.00,4.80,4.80,0 -43.20,4.80,8.62,0.00,1.00,9.60,4.80,0 -48.00,4.80,8.58,0.00,1.00,9.60,9.60,0 -52.80,4.80,8.54,0.00,1.00,9.60,9.60,0 -57.60,4.80,8.50,0.00,1.00,14.40,9.60,0 -62.40,9.60,8.46,0.00,1.00,14.40,9.60,0 -67.20,9.60,8.42,0.00,1.00,19.20,9.60,0 -72.00,9.60,8.38,0.00,1.00,24.00,9.60,0 -76.80,9.60,8.34,0.00,1.00,33.60,9.60,0 -81.60,9.60,8.30,0.00,1.00,43.20,9.60,0 -86.40,9.60,8.26,0.00,1.00,67.20,9.60,0 -91.20,9.60,8.22,0.00,1.00,96.00,9.60,0 -96.00,9.60,8.18,0.00,1.00,124.80,9.60,0 -100.80,9.60,8.14,0.00,1.00,144.00,9.60,0 -105.60,9.60,8.10,0.00,1.00,153.60,9.60,0 -110.40,9.60,8.06,0.00,1.00,158.40,9.60,0 -115.20,9.60,8.02,0.00,1.00,163.20,9.60,0 -120.00,9.60,7.98,0.00,1.00,168.00,9.60,0 -124.80,4.80,7.94,0.00,1.00,168.00,9.60,0 -129.60,4.80,7.90,0.00,1.00,168.00,4.80,0 -134.40,4.80,7.86,0.00,1.00,172.80,4.80,0 -139.20,4.80,7.82,0.00,1.00,172.80,4.80,0 -144.00,4.80,7.78,0.00,1.00,172.80,4.80,0 -148.80,4.80,7.74,0.00,1.00,172.80,4.80,0 -153.60,4.80,7.70,0.00,1.00,177.60,4.80,0 -158.40,4.80,7.66,0.00,1.00,177.60,4.80,0 -163.20,4.80,7.62,0.00,1.00,177.60,0.00,0 -168.00,0.00,7.58,0.00,1.00,177.60,0.00,0 -172.80,0.00,7.54,0.00,1.00,177.60,0.00,0 -177.60,0.00,7.50,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,7.46,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,7.42,0.00,1.00,-177.60,-0.00,0 --168.00,-0.00,7.38,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,7.34,0.00,1.00,-177.60,-4.80,0 --158.40,-4.80,7.30,0.00,1.00,-177.60,-4.80,0 --153.60,-4.80,7.26,0.00,1.00,-177.60,-4.80,0 --148.80,-4.80,7.22,0.00,1.00,-172.80,-4.80,0 --144.00,-4.80,7.18,0.00,1.00,-172.80,-4.80,0 --139.20,-4.80,7.14,0.00,1.00,-172.80,-4.80,0 --134.40,-4.80,7.10,0.00,1.00,-172.80,-9.60,0 --129.60,-4.80,7.06,0.00,1.00,-168.00,-9.60,0 --124.80,-4.80,7.02,0.00,1.00,-168.00,-9.60,0 --120.00,-9.60,6.98,0.00,1.00,-168.00,-9.60,0 --115.20,-9.60,6.94,0.00,1.00,-163.20,-9.60,0 --110.40,-9.60,6.90,0.00,1.00,-158.40,-9.60,0 --105.60,-9.60,6.86,0.00,1.00,-153.60,-9.60,0 --100.80,-9.60,6.82,0.00,1.00,-144.00,-9.60,0 --96.00,-9.60,6.78,0.00,1.00,-124.80,-9.60,0 --91.20,-9.60,6.74,0.00,1.00,-96.00,-9.60,0 --86.40,-9.60,6.70,0.00,1.00,-67.20,-9.60,0 --81.60,-9.60,6.66,0.00,1.00,-43.20,-9.60,0 --76.80,-9.60,6.62,0.00,1.00,-33.60,-9.60,0 --72.00,-9.60,6.58,0.00,1.00,-24.00,-9.60,0 --67.20,-9.60,6.54,0.00,1.00,-19.20,-9.60,0 --62.40,-9.60,6.50,0.00,1.00,-14.40,-9.60,0 --57.60,-4.80,6.46,0.00,1.00,-14.40,-9.60,0 --52.80,-4.80,6.42,0.00,1.00,-9.60,-4.80,0 --48.00,-4.80,6.38,0.00,1.00,-9.60,-4.80,0 --43.20,-4.80,6.34,0.00,1.00,-9.60,-4.80,0 --38.40,-4.80,6.30,0.00,1.00,-4.80,-4.80,0 --33.60,-4.80,6.26,0.00,1.00,-4.80,-4.80,0 --28.80,-4.80,6.22,0.00,1.00,-4.80,-4.80,0 --24.00,-4.80,6.18,0.00,1.00,-4.80,-4.80,0 --19.20,-4.80,6.14,0.00,1.00,-4.80,-0.00,0 --14.40,-0.00,6.10,0.00,1.00,-0.00,-0.00,0 --9.60,-0.00,6.06,0.00,1.00,-0.00,-0.00,0 --4.80,-0.00,6.02,0.00,1.00,-0.00,0.00,0 -0.00,0.00,5.97,0.00,1.00,0.00,0.00,0 -4.80,0.00,5.93,0.00,1.00,0.00,0.00,0 -9.60,0.00,5.89,0.00,1.00,0.00,0.00,0 -14.40,0.00,5.85,0.00,1.00,0.00,0.00,0 -19.20,0.00,5.81,0.00,1.00,0.00,0.00,0 -24.00,0.00,5.77,0.00,1.00,0.00,0.00,0 -28.80,0.00,5.73,0.00,1.00,0.00,4.80,0 -33.60,0.00,5.69,0.00,1.00,0.00,4.80,0 -38.40,0.00,5.65,0.00,1.00,4.80,4.80,0 -43.20,4.80,5.61,0.00,1.00,4.80,4.80,0 -48.00,4.80,5.57,0.00,1.00,4.80,4.80,0 -52.80,4.80,5.53,0.00,1.00,4.80,4.80,0 -57.60,4.80,5.49,0.00,1.00,4.80,4.80,0 -62.40,4.80,5.45,0.00,1.00,4.80,4.80,0 -67.20,4.80,5.41,0.00,1.00,9.60,4.80,0 -72.00,4.80,5.37,0.00,1.00,9.60,4.80,0 -76.80,4.80,5.33,0.00,1.00,14.40,4.80,0 -81.60,4.80,5.29,0.00,1.00,24.00,4.80,0 -86.40,4.80,5.25,0.00,1.00,43.20,4.80,0 -91.20,4.80,5.21,0.00,1.00,110.40,4.80,0 -96.00,4.80,5.17,0.00,1.00,148.80,4.80,0 -100.80,4.80,5.13,0.00,1.00,163.20,4.80,0 -105.60,4.80,5.09,0.00,1.00,168.00,4.80,0 -110.40,4.80,5.05,0.00,1.00,172.80,4.80,0 -115.20,4.80,5.01,0.00,1.00,172.80,4.80,0 -120.00,4.80,4.97,0.00,1.00,172.80,4.80,0 -124.80,4.80,4.93,0.00,1.00,172.80,4.80,0 -129.60,4.80,4.89,0.00,1.00,177.60,4.80,0 -134.40,4.80,4.85,0.00,1.00,177.60,4.80,0 -139.20,0.00,4.81,0.00,1.00,177.60,4.80,0 -144.00,0.00,4.77,0.00,1.00,177.60,4.80,0 -148.80,0.00,4.73,0.00,1.00,177.60,0.00,0 -153.60,0.00,4.69,0.00,1.00,177.60,0.00,0 -158.40,0.00,4.65,0.00,1.00,177.60,0.00,0 -163.20,0.00,4.61,0.00,1.00,177.60,0.00,0 -168.00,0.00,4.57,0.00,1.00,177.60,0.00,0 -172.80,0.00,4.53,0.00,1.00,177.60,0.00,0 -177.60,0.00,4.49,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,4.45,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,4.41,0.00,1.00,-177.60,-0.00,0 --168.00,-0.00,4.37,0.00,1.00,-177.60,-0.00,0 --163.20,-0.00,4.33,0.00,1.00,-177.60,-0.00,0 --158.40,-0.00,4.29,0.00,1.00,-177.60,-0.00,0 --153.60,-0.00,4.25,0.00,1.00,-177.60,-4.80,0 --148.80,-0.00,4.21,0.00,1.00,-177.60,-4.80,0 --144.00,-0.00,4.17,0.00,1.00,-177.60,-4.80,0 --139.20,-0.00,4.13,0.00,1.00,-177.60,-4.80,0 --134.40,-4.80,4.09,0.00,1.00,-177.60,-4.80,0 --129.60,-4.80,4.05,0.00,1.00,-177.60,-4.80,0 --124.80,-4.80,4.01,0.00,1.00,-172.80,-4.80,0 --120.00,-4.80,3.97,0.00,1.00,-172.80,-4.80,0 --115.20,-4.80,3.93,0.00,1.00,-172.80,-4.80,0 --110.40,-4.80,3.89,0.00,1.00,-172.80,-4.80,0 --105.60,-4.80,3.85,0.00,1.00,-168.00,-4.80,0 --100.80,-4.80,3.81,0.00,1.00,-163.20,-4.80,0 --96.00,-4.80,3.77,0.00,1.00,-148.80,-4.80,0 --91.20,-4.80,3.73,0.00,1.00,-110.40,-4.80,0 --86.40,-4.80,3.69,0.00,1.00,-43.20,-4.80,0 --81.60,-4.80,3.65,0.00,1.00,-24.00,-4.80,0 --76.80,-4.80,3.61,0.00,1.00,-14.40,-4.80,0 --72.00,-4.80,3.57,0.00,1.00,-9.60,-4.80,0 --67.20,-4.80,3.53,0.00,1.00,-9.60,-4.80,0 --62.40,-4.80,3.49,0.00,1.00,-4.80,-4.80,0 --57.60,-4.80,3.45,0.00,1.00,-4.80,-4.80,0 --52.80,-4.80,3.41,0.00,1.00,-4.80,-4.80,0 --48.00,-4.80,3.37,0.00,1.00,-4.80,-4.80,0 --43.20,-4.80,3.33,0.00,1.00,-4.80,-4.80,0 --38.40,-0.00,3.29,0.00,1.00,-4.80,-4.80,0 --33.60,-0.00,3.25,0.00,1.00,-0.00,-0.00,0 --28.80,-0.00,3.21,0.00,1.00,-0.00,-0.00,0 --24.00,-0.00,3.17,0.00,1.00,-0.00,-0.00,0 --19.20,-0.00,3.13,0.00,1.00,-0.00,-0.00,0 --14.40,-0.00,3.09,0.00,1.00,-0.00,-0.00,0 --9.60,-0.00,3.05,0.00,1.00,-0.00,-0.00,0 --4.80,-0.00,3.01,0.00,1.00,-0.00,0.00,0 -0.00,0.00,2.97,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,2.93,0.00,1.00,-0.00,0.00,0 -9.60,-0.00,2.89,0.00,1.00,-0.00,0.00,0 -14.40,-0.00,2.85,0.00,1.00,-0.00,0.00,0 -19.20,-0.00,2.81,0.00,1.00,-0.00,0.00,0 -24.00,-0.00,2.77,0.00,1.00,-0.00,0.00,0 -28.80,-0.00,2.73,0.00,1.00,-0.00,0.00,0 -33.60,-0.00,2.69,0.00,1.00,-0.00,0.00,0 -38.40,-0.00,2.65,0.00,1.00,-0.00,0.00,0 -43.20,-0.00,2.61,0.00,1.00,-0.00,0.00,0 -48.00,-0.00,2.57,0.00,1.00,-0.00,0.00,0 -52.80,-0.00,2.53,0.00,1.00,-0.00,0.00,0 -57.60,-0.00,2.49,0.00,1.00,-0.00,0.00,0 -62.40,-0.00,2.45,0.00,1.00,-0.00,0.00,0 -67.20,-0.00,2.41,0.00,1.00,-4.80,0.00,0 -72.00,-0.00,2.37,0.00,1.00,-4.80,0.00,0 -76.80,-0.00,2.33,0.00,1.00,-4.80,0.00,0 -81.60,-0.00,2.29,0.00,1.00,-9.60,0.00,0 -86.40,-0.00,2.25,0.00,1.00,-19.20,0.00,0 -91.20,-0.00,2.21,0.00,1.00,-134.40,0.00,0 -96.00,-0.00,2.17,0.00,1.00,-168.00,0.00,0 -100.80,-0.00,2.13,0.00,1.00,-172.80,0.00,0 -105.60,-0.00,2.09,0.00,1.00,-177.60,0.00,0 -110.40,-0.00,2.05,0.00,1.00,-177.60,0.00,0 -115.20,-0.00,2.01,0.00,1.00,-177.60,0.00,0 -120.00,-0.00,1.96,0.00,1.00,-177.60,0.00,0 -124.80,-0.00,1.92,0.00,1.00,-177.60,0.00,0 -129.60,-0.00,1.88,0.00,1.00,-177.60,0.00,0 -134.40,-0.00,1.84,0.00,1.00,-177.60,0.00,0 -139.20,-0.00,1.80,0.00,1.00,-177.60,0.00,0 -144.00,-0.00,1.76,0.00,1.00,-177.60,0.00,0 -148.80,-0.00,1.72,0.00,1.00,-177.60,0.00,0 -153.60,-0.00,1.68,0.00,1.00,-177.60,0.00,0 -158.40,-0.00,1.64,0.00,1.00,-177.60,0.00,0 -163.20,-0.00,1.60,0.00,1.00,-177.60,0.00,0 -168.00,-0.00,1.56,0.00,1.00,-177.60,0.00,0 -172.80,-0.00,1.52,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,1.48,0.00,1.00,-177.60,0.00,0 --177.60,0.00,1.44,0.00,1.00,177.60,0.00,0 --172.80,0.00,1.40,0.00,1.00,177.60,0.00,0 --168.00,0.00,1.36,0.00,1.00,177.60,0.00,0 --163.20,0.00,1.32,0.00,1.00,177.60,0.00,0 --158.40,0.00,1.28,0.00,1.00,177.60,0.00,0 --153.60,0.00,1.24,0.00,1.00,177.60,0.00,0 --148.80,0.00,1.20,0.00,1.00,177.60,0.00,0 --144.00,0.00,1.16,0.00,1.00,177.60,0.00,0 --139.20,0.00,1.12,0.00,1.00,177.60,0.00,0 --134.40,0.00,1.08,0.00,1.00,177.60,0.00,0 --129.60,0.00,1.04,0.00,1.00,177.60,0.00,0 --124.80,0.00,1.00,0.00,1.00,177.60,0.00,0 --120.00,0.00,0.96,0.00,1.00,177.60,0.00,0 --115.20,0.00,0.92,0.00,1.00,177.60,0.00,0 --110.40,0.00,0.88,0.00,1.00,177.60,0.00,0 --105.60,0.00,0.84,0.00,1.00,177.60,0.00,0 --100.80,0.00,0.80,0.00,1.00,172.80,0.00,0 --96.00,0.00,0.76,0.00,1.00,168.00,0.00,0 --91.20,0.00,0.72,0.00,1.00,134.40,0.00,0 --86.40,0.00,0.68,0.00,1.00,19.20,0.00,0 --81.60,0.00,0.64,0.00,1.00,9.60,0.00,0 --76.80,0.00,0.60,0.00,1.00,4.80,0.00,0 --72.00,0.00,0.56,0.00,1.00,4.80,0.00,0 --67.20,0.00,0.52,0.00,1.00,4.80,0.00,0 --62.40,0.00,0.48,0.00,1.00,0.00,0.00,0 --57.60,0.00,0.44,0.00,1.00,0.00,0.00,0 --52.80,0.00,0.40,0.00,1.00,0.00,0.00,0 --48.00,0.00,0.36,0.00,1.00,0.00,0.00,0 --43.20,0.00,0.32,0.00,1.00,0.00,0.00,0 --38.40,0.00,0.28,0.00,1.00,0.00,0.00,0 --33.60,0.00,0.24,0.00,1.00,0.00,0.00,0 --28.80,0.00,0.20,0.00,1.00,0.00,0.00,0 --24.00,0.00,0.16,0.00,1.00,0.00,0.00,0 --19.20,0.00,0.12,0.00,1.00,0.00,0.00,0 --14.40,0.00,0.08,0.00,1.00,0.00,0.00,0 --9.60,0.00,0.04,0.00,1.00,0.00,0.00,0 --4.80,0.00,0.00,0.00,1.00,0.00,0.00,0 diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC32c.met b/scripts/testv/stvOMASA_4ISM_1MASA1TC32c.met deleted file mode 100644 index f2ce23bd2054140614b7d2ad88769d5d2db77990..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_1MASA1TC32c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6349efe3448d28979b80744bcdc29d57f1c025704939b42d7b913d7fc3f23ccc -size 102300 diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC32c.wav b/scripts/testv/stvOMASA_4ISM_1MASA1TC32c.wav deleted file mode 100644 index ea48beb1ef078e626ce04ef912d84424a791978b..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_1MASA1TC32c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:05c8b46d2b819cc5705bfe6c931c3147944f27cc1b0d02174d4cacce1744d9c6 -size 960080 diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC32c_ISM1.csv b/scripts/testv/stvOMASA_4ISM_1MASA1TC32c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_1MASA1TC32c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC32c_ISM2.csv b/scripts/testv/stvOMASA_4ISM_1MASA1TC32c_ISM2.csv deleted file mode 100644 index f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_1MASA1TC32c_ISM2.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,4.80,16.00,0.00,1.00,0.00,0.00,0 -0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0 -0.00,14.40,15.96,0.00,1.00,4.80,9.60,0 -0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0 -0.00,24.00,15.91,0.00,1.00,14.40,19.20,0 -0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0 -0.00,33.60,15.87,0.00,1.00,19.20,28.80,0 -0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0 -0.00,43.20,15.83,0.00,1.00,28.80,38.40,0 -0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0 -0.00,52.80,15.79,0.00,1.00,38.40,48.00,0 -0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0 -0.00,62.40,15.74,0.00,1.00,48.00,57.60,0 -4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0 -4.80,72.00,15.70,0.00,1.00,57.60,67.20,0 -4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0 -9.60,81.60,15.66,0.00,1.00,72.00,76.80,0 -19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0 -134.40,86.40,15.62,0.00,1.00,86.40,86.40,0 -168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0 -172.80,76.80,15.57,0.00,1.00,100.80,86.40,0 -177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0 -177.60,67.20,15.53,0.00,1.00,110.40,76.80,0 -177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0 -177.60,57.60,15.49,0.00,1.00,124.80,67.20,0 -177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0 -177.60,48.00,15.44,0.00,1.00,134.40,57.60,0 -177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0 -177.60,38.40,15.40,0.00,1.00,144.00,48.00,0 -177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0 -177.60,28.80,15.36,0.00,1.00,153.60,38.40,0 -177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0 -177.60,19.20,15.32,0.00,1.00,158.40,28.80,0 -177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0 -177.60,9.60,15.27,0.00,1.00,168.00,19.20,0 -177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0 -177.60,0.00,15.23,0.00,1.00,172.80,9.60,0 --177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0 --177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0 --177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0 --177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0 --177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0 --177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0 --177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0 --177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0 --177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0 --177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0 --177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0 --177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0 --177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0 --177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0 --177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0 --177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0 --172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0 --168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0 --134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0 --19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0 --9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0 --4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0 --4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0 --4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0 --0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0 --0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0 --0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0 --0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0 --0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0 --0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0 --0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0 --0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0 --0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0 --0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0 --0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0 --0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0 --0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0 --0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,14.40,0.00,1.00,0.00,0.00,0 --0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0 --0.00,14.40,14.36,0.00,1.00,9.60,9.60,0 --0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0 --0.00,24.00,14.31,0.00,1.00,14.40,19.20,0 --0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0 --0.00,33.60,14.27,0.00,1.00,24.00,28.80,0 --4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0 --4.80,43.20,14.23,0.00,1.00,28.80,38.40,0 --4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0 --4.80,52.80,14.18,0.00,1.00,38.40,48.00,0 --4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0 --4.80,62.40,14.14,0.00,1.00,48.00,57.60,0 --9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0 --9.60,72.00,14.10,0.00,1.00,62.40,67.20,0 --14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0 --24.00,81.60,14.06,0.00,1.00,72.00,76.80,0 --43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0 --110.40,86.40,14.01,0.00,1.00,86.40,86.40,0 --148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0 --163.20,76.80,13.97,0.00,1.00,96.00,81.60,0 --168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0 --172.80,67.20,13.93,0.00,1.00,110.40,72.00,0 --172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0 --172.80,57.60,13.89,0.00,1.00,120.00,62.40,0 --172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0 --177.60,48.00,13.84,0.00,1.00,134.40,52.80,0 --177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0 --177.60,38.40,13.80,0.00,1.00,144.00,43.20,0 --177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0 --177.60,28.80,13.76,0.00,1.00,148.80,33.60,0 --177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0 --177.60,19.20,13.71,0.00,1.00,158.40,24.00,0 --177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0 --177.60,9.60,13.67,0.00,1.00,168.00,14.40,0 --177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0 --177.60,0.00,13.63,0.00,1.00,172.80,4.80,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0 -177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0 -177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0 -177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0 -177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0 -177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0 -177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0 -172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0 -172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0 -172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0 -172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0 -168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0 -163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0 -148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0 -110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0 -43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0 -24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0 -14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0 -9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0 -9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0 -4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0 -4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0 -4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0 -4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0 -4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0 -0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0 -0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0 -0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0 -0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0 -0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,12.80,0.00,1.00,0.00,0.00,0 --0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0 --0.00,14.40,12.75,0.00,1.00,9.60,9.60,0 --4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0 --4.80,24.00,12.71,0.00,1.00,14.40,19.20,0 --4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0 --4.80,33.60,12.67,0.00,1.00,24.00,28.80,0 --4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0 --9.60,43.20,12.62,0.00,1.00,33.60,38.40,0 --9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0 --9.60,52.80,12.58,0.00,1.00,43.20,48.00,0 --14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0 --14.40,62.40,12.54,0.00,1.00,52.80,57.60,0 --19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0 --24.00,72.00,12.50,0.00,1.00,62.40,67.20,0 --33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0 --43.20,76.80,12.45,0.00,1.00,72.00,72.00,0 --67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0 --96.00,81.60,12.41,0.00,1.00,86.40,81.60,0 --124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0 --144.00,76.80,12.37,0.00,1.00,96.00,76.80,0 --153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0 --158.40,67.20,12.33,0.00,1.00,110.40,72.00,0 --163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0 --168.00,57.60,12.28,0.00,1.00,120.00,62.40,0 --168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0 --168.00,48.00,12.24,0.00,1.00,129.60,52.80,0 --172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0 --172.80,38.40,12.20,0.00,1.00,139.20,43.20,0 --172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0 --172.80,28.80,12.15,0.00,1.00,148.80,33.60,0 --177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0 --177.60,19.20,12.11,0.00,1.00,158.40,24.00,0 --177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0 --177.60,9.60,12.07,0.00,1.00,168.00,14.40,0 --177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0 --177.60,0.00,12.03,0.00,1.00,172.80,4.80,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0 -177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0 -172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0 -172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0 -168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0 -168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0 -168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0 -163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0 -158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0 -153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0 -144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0 -124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0 -96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0 -67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0 -43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0 -33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0 -24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0 -19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0 -14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0 -14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0 -9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0 -9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0 -9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0 -4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0 -4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0 -0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,11.19,0.00,1.00,0.00,0.00,0 --0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0 --4.80,14.40,11.15,0.00,1.00,9.60,9.60,0 --4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0 --4.80,24.00,11.11,0.00,1.00,14.40,19.20,0 --4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0 --9.60,33.60,11.07,0.00,1.00,24.00,28.80,0 --9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0 --14.40,43.20,11.02,0.00,1.00,33.60,38.40,0 --14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0 --14.40,52.80,10.98,0.00,1.00,43.20,48.00,0 --19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0 --24.00,57.60,10.94,0.00,1.00,52.80,52.80,0 --28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0 --33.60,67.20,10.89,0.00,1.00,62.40,62.40,0 --43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0 --57.60,72.00,10.85,0.00,1.00,76.80,72.00,0 --76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0 --96.00,76.80,10.81,0.00,1.00,86.40,76.80,0 --115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0 --129.60,72.00,10.77,0.00,1.00,96.00,76.80,0 --139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0 --148.80,67.20,10.72,0.00,1.00,105.60,67.20,0 --153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0 --158.40,57.60,10.68,0.00,1.00,120.00,62.40,0 --163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0 --163.20,48.00,10.64,0.00,1.00,129.60,52.80,0 --168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0 --168.00,38.40,10.60,0.00,1.00,139.20,43.20,0 --172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0 --172.80,28.80,10.55,0.00,1.00,148.80,33.60,0 --172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0 --172.80,19.20,10.51,0.00,1.00,158.40,24.00,0 --177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0 --177.60,9.60,10.47,0.00,1.00,163.20,14.40,0 --177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0 --177.60,0.00,10.42,0.00,1.00,172.80,4.80,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0 -168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0 -168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0 -163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0 -163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0 -158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0 -153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0 -148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0 -139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0 -129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0 -115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0 -96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0 -76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0 -57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0 -43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0 -33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0 -28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0 -24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0 -19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0 -14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0 -14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0 -14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0 -9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0 -9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0 -4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0 -4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0 -0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,9.59,0.00,1.00,0.00,0.00,0 --4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0 --4.80,14.40,9.55,0.00,1.00,9.60,9.60,0 --4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0 --9.60,24.00,9.51,0.00,1.00,19.20,19.20,0 --9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0 --9.60,33.60,9.46,0.00,1.00,24.00,28.80,0 --14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0 --14.40,38.40,9.42,0.00,1.00,33.60,33.60,0 --19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0 --24.00,48.00,9.38,0.00,1.00,43.20,43.20,0 --24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0 --28.80,57.60,9.34,0.00,1.00,52.80,52.80,0 --38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0 --43.20,62.40,9.29,0.00,1.00,67.20,62.40,0 --52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0 --62.40,72.00,9.25,0.00,1.00,76.80,67.20,0 --76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0 --96.00,72.00,9.21,0.00,1.00,86.40,72.00,0 --110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0 --120.00,67.20,9.16,0.00,1.00,96.00,72.00,0 --134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0 --139.20,62.40,9.12,0.00,1.00,105.60,67.20,0 --148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0 --153.60,57.60,9.08,0.00,1.00,115.20,57.60,0 --158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0 --158.40,48.00,9.04,0.00,1.00,129.60,52.80,0 --163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0 --163.20,38.40,8.99,0.00,1.00,139.20,43.20,0 --168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0 --168.00,28.80,8.95,0.00,1.00,148.80,33.60,0 --172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0 --172.80,19.20,8.91,0.00,1.00,153.60,24.00,0 --172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0 --177.60,9.60,8.87,0.00,1.00,163.20,14.40,0 --177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0 --177.60,0.00,8.82,0.00,1.00,172.80,4.80,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0 -168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0 -163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0 -163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0 -158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0 -158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0 -153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0 -148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0 -139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0 -134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0 -120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0 -110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0 -96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0 -76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0 -62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0 -52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0 -43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0 -38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0 -28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0 -24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0 -24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0 -19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0 -14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0 -14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0 -9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0 -9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0 -9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0 -0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,7.99,0.00,1.00,0.00,0.00,0 --4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0 --4.80,14.40,7.95,0.00,1.00,9.60,9.60,0 --9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0 --9.60,24.00,7.90,0.00,1.00,19.20,19.20,0 --14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0 --14.40,28.80,7.86,0.00,1.00,28.80,24.00,0 --19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0 --19.20,38.40,7.82,0.00,1.00,38.40,33.60,0 --24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0 --28.80,48.00,7.78,0.00,1.00,48.00,43.20,0 --33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0 --38.40,52.80,7.73,0.00,1.00,57.60,52.80,0 --43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0 --48.00,62.40,7.69,0.00,1.00,67.20,57.60,0 --57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0 --67.20,67.20,7.65,0.00,1.00,76.80,62.40,0 --81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0 --91.20,67.20,7.60,0.00,1.00,86.40,67.20,0 --105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0 --115.20,67.20,7.56,0.00,1.00,96.00,67.20,0 --124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0 --134.40,57.60,7.52,0.00,1.00,105.60,62.40,0 --139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0 --144.00,52.80,7.48,0.00,1.00,115.20,57.60,0 --148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0 --153.60,43.20,7.43,0.00,1.00,124.80,48.00,0 --158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0 --163.20,38.40,7.39,0.00,1.00,134.40,38.40,0 --163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0 --168.00,28.80,7.35,0.00,1.00,144.00,33.60,0 --168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0 --172.80,19.20,7.31,0.00,1.00,153.60,24.00,0 --172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0 --177.60,9.60,7.26,0.00,1.00,163.20,14.40,0 --177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0 --177.60,0.00,7.22,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0 -163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0 -158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0 -153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0 -148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0 -144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0 -139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0 -134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0 -124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0 -115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0 -105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0 -91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0 -81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0 -67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0 -57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0 -48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0 -43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0 -38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0 -33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0 -28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0 -24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0 -19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0 -19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0 -14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0 -9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0 -0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,6.39,0.00,1.00,0.00,0.00,0 --4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0 --4.80,14.40,6.34,0.00,1.00,9.60,9.60,0 --9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0 --9.60,19.20,6.30,0.00,1.00,19.20,14.40,0 --14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0 --19.20,28.80,6.26,0.00,1.00,28.80,24.00,0 --19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0 --24.00,38.40,6.22,0.00,1.00,38.40,33.60,0 --28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0 --33.60,43.20,6.17,0.00,1.00,48.00,38.40,0 --38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0 --43.20,52.80,6.13,0.00,1.00,57.60,48.00,0 --48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0 --52.80,57.60,6.09,0.00,1.00,67.20,52.80,0 --62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0 --72.00,62.40,6.05,0.00,1.00,76.80,57.60,0 --81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0 --91.20,62.40,6.00,0.00,1.00,86.40,62.40,0 --100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0 --110.40,62.40,5.96,0.00,1.00,96.00,62.40,0 --120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0 --129.60,57.60,5.92,0.00,1.00,105.60,57.60,0 --134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0 --139.20,48.00,5.87,0.00,1.00,115.20,52.80,0 --144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0 --148.80,43.20,5.83,0.00,1.00,124.80,48.00,0 --153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0 --158.40,33.60,5.79,0.00,1.00,134.40,38.40,0 --163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0 --163.20,28.80,5.75,0.00,1.00,144.00,28.80,0 --168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0 --168.00,19.20,5.70,0.00,1.00,153.60,24.00,0 --172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0 --172.80,9.60,5.66,0.00,1.00,163.20,14.40,0 --177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0 --177.60,0.00,5.62,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0 -163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0 -158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0 -148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0 -144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0 -139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0 -134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0 -129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0 -120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0 -110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0 -100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0 -91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0 -81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0 -72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0 -62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0 -52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0 -48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0 -43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0 -38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0 -33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0 -28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0 -24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0 -19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0 -19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0 -9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0 -4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0 -0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,4.79,0.00,1.00,0.00,0.00,0 --4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0 --9.60,14.40,4.74,0.00,1.00,9.60,9.60,0 --9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0 --14.40,19.20,4.70,0.00,1.00,19.20,14.40,0 --14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0 --19.20,28.80,4.66,0.00,1.00,28.80,24.00,0 --24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0 --28.80,33.60,4.61,0.00,1.00,38.40,28.80,0 --28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0 --33.60,43.20,4.57,0.00,1.00,48.00,38.40,0 --38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0 --48.00,48.00,4.53,0.00,1.00,57.60,43.20,0 --52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0 --57.60,52.80,4.49,0.00,1.00,67.20,48.00,0 --67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0 --76.80,57.60,4.44,0.00,1.00,76.80,52.80,0 --81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0 --91.20,57.60,4.40,0.00,1.00,86.40,57.60,0 --100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0 --110.40,57.60,4.36,0.00,1.00,96.00,57.60,0 --115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0 --124.80,52.80,4.32,0.00,1.00,105.60,52.80,0 --129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0 --139.20,48.00,4.27,0.00,1.00,115.20,48.00,0 --144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0 --148.80,38.40,4.23,0.00,1.00,124.80,43.20,0 --153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0 --153.60,33.60,4.19,0.00,1.00,134.40,38.40,0 --158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0 --163.20,24.00,4.14,0.00,1.00,144.00,28.80,0 --163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0 --168.00,19.20,4.10,0.00,1.00,153.60,24.00,0 --172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0 --172.80,9.60,4.06,0.00,1.00,163.20,14.40,0 --177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0 --177.60,0.00,4.02,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0 -163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0 -163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0 -158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0 -148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0 -144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0 -139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0 -129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0 -124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0 -115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0 -110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0 -100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0 -91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0 -81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0 -76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0 -67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0 -57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0 -52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0 -48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0 -38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0 -33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0 -28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0 -28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0 -24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0 -19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0 -14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0 -14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0 -9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0 -0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.18,0.00,1.00,0.00,0.00,0 --4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0 --9.60,9.60,3.14,0.00,1.00,9.60,9.60,0 --9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0 --14.40,19.20,3.10,0.00,1.00,19.20,14.40,0 --19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0 --24.00,24.00,3.05,0.00,1.00,28.80,24.00,0 --24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0 --28.80,33.60,3.01,0.00,1.00,38.40,28.80,0 --33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0 --38.40,38.40,2.97,0.00,1.00,48.00,33.60,0 --43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0 --48.00,43.20,2.93,0.00,1.00,57.60,43.20,0 --52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0 --62.40,48.00,2.88,0.00,1.00,67.20,48.00,0 --67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0 --76.80,52.80,2.84,0.00,1.00,76.80,48.00,0 --86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0 --91.20,52.80,2.80,0.00,1.00,86.40,52.80,0 --100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0 --105.60,52.80,2.76,0.00,1.00,96.00,52.80,0 --115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0 --120.00,48.00,2.71,0.00,1.00,105.60,48.00,0 --129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0 --134.40,43.20,2.67,0.00,1.00,115.20,43.20,0 --139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0 --144.00,38.40,2.63,0.00,1.00,124.80,38.40,0 --148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0 --153.60,33.60,2.58,0.00,1.00,134.40,33.60,0 --158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0 --158.40,24.00,2.54,0.00,1.00,144.00,28.80,0 --163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0 --168.00,19.20,2.50,0.00,1.00,153.60,19.20,0 --168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.46,0.00,1.00,163.20,14.40,0 --177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.41,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0 -158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0 -148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0 -144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0 -139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0 -134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0 -129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0 -120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0 -115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0 -105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0 -100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0 -91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0 -86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0 -76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0 -67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0 -62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0 -52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0 -48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0 -43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0 -38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0 -33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0 -28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0 -24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0 -24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0 -19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0 -0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.58,0.00,1.00,0.00,0.00,0 --4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.54,0.00,1.00,9.60,4.80,0 --14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0 --14.40,19.20,1.50,0.00,1.00,19.20,14.40,0 --19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0 --24.00,24.00,1.45,0.00,1.00,28.80,19.20,0 --28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0 --33.60,28.80,1.41,0.00,1.00,38.40,28.80,0 --38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0 --43.20,38.40,1.37,0.00,1.00,48.00,33.60,0 --48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0 --52.80,43.20,1.32,0.00,1.00,57.60,38.40,0 --57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0 --62.40,43.20,1.28,0.00,1.00,67.20,43.20,0 --72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0 --76.80,48.00,1.24,0.00,1.00,76.80,43.20,0 --86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0 --91.20,48.00,1.20,0.00,1.00,86.40,48.00,0 --100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0 --105.60,48.00,1.15,0.00,1.00,96.00,48.00,0 --110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0 --120.00,43.20,1.11,0.00,1.00,105.60,43.20,0 --124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0 --129.60,38.40,1.07,0.00,1.00,115.20,43.20,0 --134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0 --139.20,33.60,1.03,0.00,1.00,124.80,38.40,0 --144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0 --148.80,28.80,0.98,0.00,1.00,134.40,33.60,0 --153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0 --158.40,24.00,0.94,0.00,1.00,144.00,24.00,0 --163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0 --163.20,14.40,0.90,0.00,1.00,153.60,19.20,0 --168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.85,0.00,1.00,163.20,14.40,0 --172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.81,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0 -148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0 -144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0 -139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0 -134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0 -129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0 -124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0 -120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0 -110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0 -105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0 -100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0 -91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0 -86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0 -76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0 -72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0 -62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0 -57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0 -52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0 -48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0 -43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0 -38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0 -28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0 -19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0 -0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,0.00,0.00,1.00,0.00,0.00,0 --4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0 --9.60,9.60,0.04,0.00,1.00,9.60,4.80,0 --14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0 --19.20,14.40,0.09,0.00,1.00,19.20,14.40,0 --24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0 --24.00,24.00,0.13,0.00,1.00,28.80,19.20,0 --28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0 --33.60,28.80,0.17,0.00,1.00,38.40,24.00,0 --38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0 --43.20,33.60,0.21,0.00,1.00,48.00,28.80,0 --48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0 --52.80,38.40,0.26,0.00,1.00,57.60,33.60,0 --62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0 --67.20,38.40,0.30,0.00,1.00,67.20,38.40,0 --72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0 --76.80,43.20,0.34,0.00,1.00,76.80,38.40,0 --86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0 --91.20,43.20,0.38,0.00,1.00,86.40,43.20,0 --96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0 --105.60,43.20,0.43,0.00,1.00,96.00,43.20,0 --110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0 --115.20,38.40,0.47,0.00,1.00,105.60,38.40,0 --124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0 --129.60,38.40,0.51,0.00,1.00,115.20,38.40,0 --134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0 --139.20,33.60,0.56,0.00,1.00,124.80,33.60,0 --144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0 --148.80,28.80,0.60,0.00,1.00,134.40,28.80,0 --153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0 --158.40,19.20,0.64,0.00,1.00,144.00,24.00,0 --158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0 --163.20,14.40,0.68,0.00,1.00,153.60,19.20,0 --168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.73,0.00,1.00,163.20,9.60,0 --172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.77,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0 -158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0 -158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0 -148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0 -144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0 -139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0 -134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0 -129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0 -124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0 -115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0 -110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0 -105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0 -96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0 -91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0 -86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0 -76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0 -72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0 -67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0 -62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0 -52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0 -48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0 -43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0 -38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0 -28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0 -19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0 -0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.60,0.00,1.00,0.00,0.00,0 --9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.64,0.00,1.00,9.60,4.80,0 --14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0 --19.20,14.40,1.69,0.00,1.00,19.20,9.60,0 --24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0 --28.80,19.20,1.73,0.00,1.00,28.80,19.20,0 --33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0 --38.40,24.00,1.77,0.00,1.00,38.40,24.00,0 --43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0 --48.00,28.80,1.82,0.00,1.00,48.00,28.80,0 --52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0 --57.60,33.60,1.86,0.00,1.00,57.60,28.80,0 --62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0 --67.20,38.40,1.90,0.00,1.00,67.20,33.60,0 --72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0 --81.60,38.40,1.94,0.00,1.00,76.80,38.40,0 --86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0 --91.20,38.40,1.99,0.00,1.00,86.40,38.40,0 --96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0 --105.60,38.40,2.03,0.00,1.00,96.00,38.40,0 --110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0 --115.20,33.60,2.07,0.00,1.00,105.60,33.60,0 --120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0 --124.80,33.60,2.11,0.00,1.00,115.20,33.60,0 --129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0 --134.40,28.80,2.16,0.00,1.00,124.80,28.80,0 --139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0 --144.00,24.00,2.20,0.00,1.00,134.40,24.00,0 --148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0 --153.60,19.20,2.24,0.00,1.00,144.00,19.20,0 --158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0 --163.20,14.40,2.29,0.00,1.00,153.60,14.40,0 --168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.33,0.00,1.00,163.20,9.60,0 --172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.37,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0 -153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0 -144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0 -134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0 -124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0 -120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0 -115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0 -110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0 -105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0 -96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0 -91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0 -86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0 -81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0 -72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0 -67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0 -62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0 -57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0 -52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0 -48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0 -43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0 -38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0 -33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0 -28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0 -14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.20,0.00,1.00,0.00,0.00,0 --9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0 --14.40,9.60,3.25,0.00,1.00,9.60,4.80,0 --14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0 --19.20,14.40,3.29,0.00,1.00,19.20,9.60,0 --24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0 --28.80,19.20,3.33,0.00,1.00,28.80,14.40,0 --33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0 --38.40,24.00,3.38,0.00,1.00,38.40,19.20,0 --43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0 --48.00,24.00,3.42,0.00,1.00,48.00,24.00,0 --52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0 --57.60,28.80,3.46,0.00,1.00,57.60,28.80,0 --62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0 --67.20,33.60,3.50,0.00,1.00,67.20,28.80,0 --72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0 --81.60,33.60,3.55,0.00,1.00,76.80,33.60,0 --86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0 --91.20,33.60,3.59,0.00,1.00,86.40,33.60,0 --96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0 --100.80,33.60,3.63,0.00,1.00,96.00,33.60,0 --110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0 --115.20,33.60,3.67,0.00,1.00,105.60,28.80,0 --120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0 --124.80,28.80,3.72,0.00,1.00,115.20,28.80,0 --129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0 --134.40,24.00,3.76,0.00,1.00,124.80,24.00,0 --139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0 --144.00,19.20,3.80,0.00,1.00,134.40,24.00,0 --148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0 --153.60,14.40,3.85,0.00,1.00,144.00,19.20,0 --158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0 --163.20,9.60,3.89,0.00,1.00,153.60,14.40,0 --168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0 --168.00,4.80,3.93,0.00,1.00,163.20,9.60,0 --172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0 --177.60,0.00,3.97,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0 -124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0 -120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0 -115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0 -110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0 -100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0 -96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0 -91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0 -86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0 -81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0 -72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0 -67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0 -62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0 -57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0 -52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0 -48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0 -43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0 -38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0 -33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0 -28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0 -24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0 -14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0 -14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0 --4.80,0.00,4.81,0.00,1.00,0.00,0.00,0 --9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0 --14.40,4.80,4.85,0.00,1.00,9.60,4.80,0 --19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0 --19.20,9.60,4.89,0.00,1.00,19.20,9.60,0 --24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0 --28.80,14.40,4.93,0.00,1.00,28.80,14.40,0 --33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0 --38.40,19.20,4.98,0.00,1.00,38.40,14.40,0 --43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0 --48.00,24.00,5.02,0.00,1.00,48.00,19.20,0 --52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0 --57.60,24.00,5.06,0.00,1.00,57.60,24.00,0 --62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0 --72.00,28.80,5.11,0.00,1.00,67.20,24.00,0 --76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0 --81.60,28.80,5.15,0.00,1.00,76.80,28.80,0 --86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0 --91.20,28.80,5.19,0.00,1.00,86.40,28.80,0 --96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0 --100.80,28.80,5.23,0.00,1.00,96.00,28.80,0 --105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0 --115.20,28.80,5.28,0.00,1.00,105.60,28.80,0 --120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0 --124.80,24.00,5.32,0.00,1.00,115.20,24.00,0 --129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0 --134.40,24.00,5.36,0.00,1.00,124.80,24.00,0 --139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0 --144.00,19.20,5.40,0.00,1.00,134.40,19.20,0 --148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0 --153.60,14.40,5.45,0.00,1.00,144.00,14.40,0 --158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0 --163.20,9.60,5.49,0.00,1.00,153.60,9.60,0 --163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0 --168.00,4.80,5.53,0.00,1.00,163.20,9.60,0 --172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0 --177.60,0.00,5.58,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0 -163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0 -129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0 -124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0 -120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0 -115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0 -105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0 -100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0 -96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0 -91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0 -86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0 -81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0 -76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0 -72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0 -62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0 -57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0 -52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0 -48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0 -43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0 -38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0 -33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0 -28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0 -24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0 -19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0 -19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0 -0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,6.41,0.00,1.00,0.00,0.00,0 --9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0 --14.40,4.80,6.45,0.00,1.00,9.60,4.80,0 --19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0 --24.00,9.60,6.49,0.00,1.00,19.20,9.60,0 --28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0 --33.60,14.40,6.54,0.00,1.00,28.80,9.60,0 --33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0 --38.40,14.40,6.58,0.00,1.00,38.40,14.40,0 --43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0 --48.00,19.20,6.62,0.00,1.00,48.00,14.40,0 --57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0 --62.40,19.20,6.66,0.00,1.00,57.60,19.20,0 --67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0 --72.00,24.00,6.71,0.00,1.00,67.20,19.20,0 --76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0 --81.60,24.00,6.75,0.00,1.00,76.80,24.00,0 --86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0 --91.20,24.00,6.79,0.00,1.00,86.40,24.00,0 --96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0 --100.80,24.00,6.84,0.00,1.00,96.00,24.00,0 --105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0 --110.40,24.00,6.88,0.00,1.00,105.60,24.00,0 --115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0 --120.00,19.20,6.92,0.00,1.00,115.20,19.20,0 --129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0 --134.40,19.20,6.96,0.00,1.00,124.80,19.20,0 --139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0 --144.00,14.40,7.01,0.00,1.00,134.40,14.40,0 --148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0 --148.80,14.40,7.05,0.00,1.00,144.00,14.40,0 --153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0 --158.40,9.60,7.09,0.00,1.00,153.60,9.60,0 --163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0 --168.00,4.80,7.13,0.00,1.00,163.20,4.80,0 --172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0 --177.60,0.00,7.18,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0 -163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0 -158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0 -148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0 -144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0 -134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0 -129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0 -120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0 -115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0 -110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0 -105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0 -100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0 -96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0 -91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0 -86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0 -81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0 -76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0 -72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0 -67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0 -62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0 -57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0 -48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0 -43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0 -38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0 -33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0 -33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0 -28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0 -24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0 -19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0 -0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,8.01,0.00,1.00,0.00,0.00,0 --9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0 --14.40,4.80,8.05,0.00,1.00,9.60,4.80,0 --19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0 --24.00,9.60,8.10,0.00,1.00,19.20,4.80,0 --28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0 --33.60,9.60,8.14,0.00,1.00,24.00,9.60,0 --38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0 --43.20,14.40,8.18,0.00,1.00,33.60,9.60,0 --48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0 --52.80,14.40,8.22,0.00,1.00,43.20,14.40,0 --57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0 --62.40,19.20,8.27,0.00,1.00,52.80,14.40,0 --67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0 --72.00,19.20,8.31,0.00,1.00,62.40,14.40,0 --76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0 --81.60,19.20,8.35,0.00,1.00,76.80,19.20,0 --86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0 --91.20,19.20,8.40,0.00,1.00,86.40,19.20,0 --96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0 --100.80,19.20,8.44,0.00,1.00,96.00,19.20,0 --105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0 --110.40,19.20,8.48,0.00,1.00,105.60,19.20,0 --115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0 --120.00,14.40,8.52,0.00,1.00,120.00,14.40,0 --124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0 --129.60,14.40,8.57,0.00,1.00,129.60,14.40,0 --134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0 --139.20,14.40,8.61,0.00,1.00,139.20,14.40,0 --144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0 --148.80,9.60,8.65,0.00,1.00,148.80,9.60,0 --153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0 --158.40,4.80,8.69,0.00,1.00,158.40,9.60,0 --163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0 --168.00,4.80,8.74,0.00,1.00,163.20,4.80,0 --172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0 -148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0 -144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0 -139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0 -134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0 -129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0 -124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0 -120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0 -115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0 -110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0 -105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0 -100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0 -96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0 -91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0 -86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0 -81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0 -76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0 -72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0 -67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0 -62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0 -52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0 -48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0 -43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0 -38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0 -33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0 -28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0 -24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0 -19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0 -9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0 -0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,9.61,0.00,1.00,0.00,0.00,0 --9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0 --14.40,4.80,9.66,0.00,1.00,9.60,0.00,0 --19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0 --24.00,4.80,9.70,0.00,1.00,14.40,4.80,0 --28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0 --33.60,9.60,9.74,0.00,1.00,24.00,4.80,0 --38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0 --43.20,9.60,9.78,0.00,1.00,33.60,9.60,0 --48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0 --52.80,9.60,9.83,0.00,1.00,43.20,9.60,0 --57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0 --62.40,14.40,9.87,0.00,1.00,52.80,9.60,0 --67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0 --72.00,14.40,9.91,0.00,1.00,62.40,14.40,0 --76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0 --81.60,14.40,9.95,0.00,1.00,76.80,14.40,0 --86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0 --91.20,14.40,10.00,0.00,1.00,86.40,14.40,0 --96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0 --100.80,14.40,10.04,0.00,1.00,96.00,14.40,0 --105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0 --110.40,14.40,10.08,0.00,1.00,110.40,14.40,0 --115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0 --120.00,14.40,10.13,0.00,1.00,120.00,9.60,0 --124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0 --129.60,9.60,10.17,0.00,1.00,129.60,9.60,0 --134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0 --139.20,9.60,10.21,0.00,1.00,139.20,9.60,0 --144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0 --148.80,9.60,10.25,0.00,1.00,148.80,9.60,0 --153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0 --158.40,4.80,10.30,0.00,1.00,158.40,4.80,0 --163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0 --168.00,4.80,10.34,0.00,1.00,168.00,4.80,0 --172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0 -148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0 -144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0 -139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0 -134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0 -129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0 -124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0 -120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0 -115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0 -110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0 -105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0 -100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0 -96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0 -91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0 -86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0 -81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0 -76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0 -72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0 -67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0 -62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0 -48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0 -43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0 -38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0 -33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0 -28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0 -24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0 -19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0 -14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,11.21,0.00,1.00,0.00,0.00,0 --9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0 --14.40,0.00,11.26,0.00,1.00,9.60,0.00,0 --19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0 --24.00,4.80,11.30,0.00,1.00,14.40,4.80,0 --28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0 --33.60,4.80,11.34,0.00,1.00,24.00,4.80,0 --38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0 --43.20,4.80,11.39,0.00,1.00,33.60,4.80,0 --48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0 --52.80,9.60,11.43,0.00,1.00,43.20,4.80,0 --57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0 --62.40,9.60,11.47,0.00,1.00,52.80,4.80,0 --67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0 --72.00,9.60,11.51,0.00,1.00,62.40,9.60,0 --76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0 --81.60,9.60,11.56,0.00,1.00,72.00,9.60,0 --86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0 --91.20,9.60,11.60,0.00,1.00,86.40,9.60,0 --96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0 --100.80,9.60,11.64,0.00,1.00,96.00,9.60,0 --105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0 --110.40,9.60,11.68,0.00,1.00,110.40,9.60,0 --115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0 --120.00,9.60,11.73,0.00,1.00,120.00,9.60,0 --124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0 --129.60,9.60,11.77,0.00,1.00,129.60,4.80,0 --134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0 --139.20,4.80,11.81,0.00,1.00,139.20,4.80,0 --144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0 --148.80,4.80,11.86,0.00,1.00,148.80,4.80,0 --153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0 --158.40,4.80,11.90,0.00,1.00,158.40,4.80,0 --163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0 --168.00,0.00,11.94,0.00,1.00,168.00,4.80,0 --172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0 -158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0 -148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0 -144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0 -139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0 -134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0 -129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0 -124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0 -120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0 -115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0 -110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0 -105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0 -100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0 -96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0 -91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0 -86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0 -81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0 -76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0 -72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0 -67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0 -62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0 -57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0 -43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0 -33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0 -28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0 -24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0 -19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,12.82,0.00,1.00,0.00,0.00,0 --9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0 --14.40,0.00,12.86,0.00,1.00,9.60,0.00,0 --19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0 --24.00,0.00,12.90,0.00,1.00,14.40,0.00,0 --28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0 --33.60,4.80,12.95,0.00,1.00,24.00,0.00,0 --38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0 --43.20,4.80,12.99,0.00,1.00,28.80,0.00,0 --48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0 --52.80,4.80,13.03,0.00,1.00,38.40,4.80,0 --57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0 --62.40,4.80,13.07,0.00,1.00,48.00,4.80,0 --67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0 --72.00,4.80,13.12,0.00,1.00,62.40,4.80,0 --76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0 --81.60,4.80,13.16,0.00,1.00,72.00,4.80,0 --86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0 --91.20,4.80,13.20,0.00,1.00,86.40,4.80,0 --96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0 --100.80,4.80,13.24,0.00,1.00,96.00,4.80,0 --105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0 --110.40,4.80,13.29,0.00,1.00,110.40,4.80,0 --115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0 --120.00,4.80,13.33,0.00,1.00,120.00,4.80,0 --124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0 --129.60,4.80,13.37,0.00,1.00,134.40,4.80,0 --134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0 --139.20,4.80,13.42,0.00,1.00,144.00,4.80,0 --144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0 --148.80,4.80,13.46,0.00,1.00,153.60,0.00,0 --153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0 --158.40,0.00,13.50,0.00,1.00,158.40,0.00,0 --163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0 --168.00,0.00,13.54,0.00,1.00,168.00,0.00,0 --172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0 -163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0 -158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0 -153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0 -148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0 -144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0 -139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0 -134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0 -129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0 -124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0 -120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0 -115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0 -110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0 -105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0 -100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0 -96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0 -91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0 -86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0 -81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0 -76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0 -72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0 -67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0 -57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0 -52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0 -43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0 -33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0 -28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0 -24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0 -19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0 -14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0 -9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,14.42,0.00,1.00,0.00,0.00,0 --9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0 --14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0 --19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0 --24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0 --28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0 --33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0 --38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0 --43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0 --48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0 --52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0 --57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0 --62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0 --67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0 --72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0 --76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0 --81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0 --86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0 --91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0 --96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0 --100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0 --105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0 --110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0 --115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0 --120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0 --124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0 --129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0 --134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0 --139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0 --144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0 --148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0 --153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0 --158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0 --163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0 --168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0 --172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0 -177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0 -172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0 -168.00,0.00,15.25,0.00,1.00,4.80,0.00,0 -163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0 -158.40,0.00,15.30,0.00,1.00,9.60,0.00,0 -153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0 -148.80,0.00,15.34,0.00,1.00,19.20,0.00,0 -144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0 -139.20,0.00,15.38,0.00,1.00,28.80,0.00,0 -134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0 -129.60,0.00,15.42,0.00,1.00,33.60,0.00,0 -124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0 -120.00,0.00,15.47,0.00,1.00,43.20,0.00,0 -115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0 -110.40,0.00,15.51,0.00,1.00,57.60,0.00,0 -105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0 -100.80,0.00,15.55,0.00,1.00,67.20,0.00,0 -96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0 -91.20,0.00,15.59,0.00,1.00,81.60,0.00,0 -86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0 -81.60,0.00,15.64,0.00,1.00,96.00,0.00,0 -76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0 -72.00,0.00,15.68,0.00,1.00,110.40,0.00,0 -67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0 -62.40,0.00,15.72,0.00,1.00,120.00,0.00,0 -57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0 -52.80,0.00,15.77,0.00,1.00,134.40,0.00,0 -48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0 -43.20,0.00,15.81,0.00,1.00,144.00,0.00,0 -38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0 -33.60,0.00,15.85,0.00,1.00,153.60,0.00,0 -28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0 -24.00,0.00,15.89,0.00,1.00,158.40,0.00,0 -19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0 -14.40,0.00,15.94,0.00,1.00,168.00,0.00,0 -9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0 -4.80,0.00,15.98,0.00,1.00,172.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC32c_ISM3.csv b/scripts/testv/stvOMASA_4ISM_1MASA1TC32c_ISM3.csv deleted file mode 100644 index 14eee9b693b536fa2fd22d2813d7f588b8930b06..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_1MASA1TC32c_ISM3.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0 --177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0 -4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0 --168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0 -14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0 --163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0 -19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0 --153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0 -28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0 --148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0 -38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0 --139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0 -48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0 --124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0 -57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0 --115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0 -72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0 --100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0 -86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0 --86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0 -100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0 --76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0 -110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0 --62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0 -124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0 --52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0 -134.40,33.60,0.28,0.00,1.00,177.60,0.00,0 --38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0 -144.00,28.80,0.30,0.00,1.00,177.60,0.00,0 --33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0 -153.60,24.00,0.32,0.00,1.00,177.60,0.00,0 --24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0 -158.40,19.20,0.34,0.00,1.00,177.60,0.00,0 --14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0 -168.00,9.60,0.36,0.00,1.00,177.60,0.00,0 --9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0 -172.80,4.80,0.38,0.00,1.00,177.60,0.00,0 --0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0 --177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0 -4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0 -14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0 -19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0 --158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0 -28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0 --148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0 -33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0 --139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0 -43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0 --129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0 -57.60,38.40,15.47,0.00,1.00,177.60,0.00,0 --120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0 -67.20,43.20,15.44,0.00,1.00,177.60,0.00,0 --105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0 -81.60,43.20,15.42,0.00,1.00,177.60,0.00,0 --91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0 -96.00,43.20,15.40,0.00,1.00,0.00,0.00,0 --76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0 -110.40,43.20,15.38,0.00,1.00,0.00,0.00,0 --67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0 -120.00,38.40,15.36,0.00,1.00,0.00,0.00,0 --52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0 -129.60,38.40,15.34,0.00,1.00,0.00,0.00,0 --43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0 -144.00,33.60,15.32,0.00,1.00,0.00,0.00,0 --33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0 -148.80,24.00,15.30,0.00,1.00,0.00,0.00,0 --24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0 -158.40,19.20,15.27,0.00,1.00,0.00,0.00,0 --19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0 -168.00,14.40,15.25,0.00,1.00,0.00,0.00,0 --9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0 -172.80,4.80,15.23,0.00,1.00,0.00,0.00,0 --4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0 -0.00,0.00,15.21,0.00,1.00,0.00,0.00,0 --177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0 -9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0 -14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0 --163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0 -24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0 --153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0 -28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0 --144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0 -38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0 --134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0 -48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0 --124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0 -62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0 --115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0 -72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0 --100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0 -86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0 --86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0 -96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0 --76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0 -110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0 --62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0 -120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0 --52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0 -134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0 --43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0 -144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0 --33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0 -148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0 --24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0 -158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0 --19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0 -168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0 --9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0 -172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0 -4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0 -14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0 -19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0 --153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0 -28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0 --148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0 -38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0 --139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0 -48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0 --124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0 -57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0 --115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0 -72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0 --105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0 -81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0 --91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0 -96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0 --76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0 -105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0 --67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0 -120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0 --57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0 -129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0 --43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0 -139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0 --33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0 -148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0 --28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0 -158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0 --19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0 -163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0 --9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0 -172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0 -0.00,0.00,1.60,0.00,1.00,0.00,0.00,0 --177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0 -9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0 -14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0 --158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0 -24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0 --153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0 -33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0 --144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0 -43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0 --134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0 -52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0 --124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0 -62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0 --110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0 -72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0 --100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0 -86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0 --86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0 -96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0 --76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0 -110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0 --67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0 -120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0 --52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0 -129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0 --43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0 -139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0 --33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0 -148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0 --24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0 -158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0 --19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0 -168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0 -172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0 -4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0 -14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0 --163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0 -24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0 --153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0 -28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0 --144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0 -38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0 --134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0 -48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0 --124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0 -62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0 --115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0 -72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0 --100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0 -81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0 --91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0 -96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0 --81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0 -105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0 --67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0 -115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0 --57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0 -129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0 --48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0 -139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0 --38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0 -148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0 --28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0 -153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0 --19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0 -163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0 --9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0 -172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0 -0.00,0.00,13.61,0.00,1.00,0.00,0.00,0 --177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0 -9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0 --168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0 -24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0 --148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0 -33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0 --139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0 -43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0 --129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0 -52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0 --120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0 -62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0 --110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0 -76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0 --100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0 -86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0 --86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0 -96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0 --76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0 -105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0 --67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0 -120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0 --57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0 -129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0 --48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0 -139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0 --38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0 -148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0 -158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0 --19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0 -163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0 -172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0 -4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0 -14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0 --163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0 -24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0 --153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0 -33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0 --144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0 -43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0 --134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0 -52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0 --124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0 -62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0 --115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0 -72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0 --100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0 -81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0 --91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0 -96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0 --81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0 -105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0 --67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0 -115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0 --57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0 -124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0 --48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0 -134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0 --38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0 -144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0 --28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0 -153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0 --19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0 -163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0 --14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0 -172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0 --4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0 -0.00,0.00,3.20,0.00,1.00,0.00,0.00,0 --177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0 -9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0 -19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0 -24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0 --148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0 -33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0 --139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0 -43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0 --129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0 -52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0 --120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0 -67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0 --110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0 -76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0 --100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0 -86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0 --86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0 -96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0 --76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0 -105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0 --67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0 -115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0 --57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0 -129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0 --48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0 -139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0 --38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0 -148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0 -153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0 --19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0 -163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0 -172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0 -4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0 -14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0 -24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0 --153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0 -33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0 --144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0 -43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0 --134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0 -52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0 --124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0 -62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0 --110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0 -72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0 --100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0 -81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0 --91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0 -96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0 --81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0 -105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0 --72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0 -115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0 --57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0 -124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0 --48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0 -134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0 --38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0 -144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0 --28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0 -153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0 --24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0 -163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0 --14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0 -172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -0.00,0.00,12.01,0.00,1.00,0.00,0.00,0 --177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0 -9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0 --158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0 -28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0 --148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0 -38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0 --139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0 -48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0 --129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0 -57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0 --120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0 -67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0 --110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0 -76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0 --100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0 -86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0 --86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0 -96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0 --76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0 -105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0 --67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0 -115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0 --57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0 -124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0 --48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0 -134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0 --38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0 -144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0 --28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0 -153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0 --19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0 -163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0 -172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0 -4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0 -14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0 -24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0 --148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0 -33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0 --139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0 -43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0 --129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0 -52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0 --120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0 -62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0 --110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0 -72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0 --100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0 -81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0 --91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0 -96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0 --81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0 -105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0 --72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0 -115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0 --62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0 -124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0 --52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0 -134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0 --43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0 -144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0 --33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0 -153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0 --24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0 -163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0 -172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0 -0.00,0.00,4.81,0.00,1.00,0.00,0.00,0 --177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0 -9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0 -19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0 -28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0 --148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0 -38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0 --139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0 -48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0 --129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0 -57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0 --120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0 -67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0 --110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0 -76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0 --100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0 -86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0 --86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0 -96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0 --76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0 -105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0 --67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0 -115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0 --57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0 -124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0 --48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0 -134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0 --38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0 -144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0 --28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0 -153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0 --19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0 -163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0 --9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0 -172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0 -4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0 -14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0 -24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0 --148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0 -33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0 --139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0 -43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0 --129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0 -52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0 --120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0 -62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0 --110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0 -72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0 --100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0 -81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0 --91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0 -96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0 --81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0 -105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0 --72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0 -115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0 --62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0 -124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0 --52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0 -134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0 --43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0 -144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0 --33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0 -153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0 --24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0 -163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0 -172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -0.00,0.00,10.40,0.00,1.00,0.00,0.00,0 --177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0 -9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0 -19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0 -28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0 --148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0 -38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0 --139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0 -48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0 --129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0 -57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0 --120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0 -67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0 --110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0 -76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0 --100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0 -86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0 --86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0 -96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0 --76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0 -105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0 --67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0 -115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0 --57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0 -124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0 --48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0 -134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0 --38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0 -144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0 --28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0 -153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0 -163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0 --9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0 -172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0 -4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0 -14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0 -24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0 -33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0 --139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0 -43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0 --129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0 -52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0 --120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0 -62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0 --110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0 -72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0 --100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0 -81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0 --91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0 -96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0 --81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0 -105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0 --72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0 -115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0 --62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0 -124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0 --52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0 -134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0 --43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0 -144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0 --33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0 -153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0 --24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0 -163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0 -172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,6.41,0.00,1.00,0.00,0.00,0 --177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0 -9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0 -19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0 --158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0 -28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0 --148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0 -38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0 --139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0 -48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0 --129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0 -57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0 --120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0 -67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0 --110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0 -76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0 --100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0 -86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0 --86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0 -96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0 --76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0 -105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0 --67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0 -115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0 --57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0 -124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0 --48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0 -134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0 --38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0 -144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0 --28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0 -153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0 -163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0 -172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0 -4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0 -14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0 --158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0 -24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0 -33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0 --139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0 -43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0 --129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0 -52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0 --120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0 -62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0 --110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0 -72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0 --100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0 -81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0 --91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0 -96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0 --81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0 -105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0 --72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0 -115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0 --62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0 -124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0 --52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0 -134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0 --43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0 -144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0 --33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0 -153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0 --24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0 -163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0 --14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0 -172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.80,0.00,1.00,0.00,0.00,0 --177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0 -9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0 -19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0 --158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0 -28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0 --148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0 -38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0 --139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0 -48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0 --129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0 -57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0 --120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0 -67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0 --110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0 -76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0 --100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0 -86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0 --86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0 -96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0 --76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0 -105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0 --67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0 -115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0 --57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0 -124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0 --48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0 -134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0 --38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0 -144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0 --28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0 -153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0 --19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0 -163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0 -172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0 --0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0 -4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0 --168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0 -14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0 --158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0 -24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0 --148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0 -33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0 --139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0 -43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0 --129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0 -52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0 --120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0 -62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0 --110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0 -72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0 --100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0 -81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0 --91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0 -96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0 --81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0 -105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0 --72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0 -115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0 --62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0 -124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0 --52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0 -134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0 --43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0 -144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0 --33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0 -153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0 --24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0 -163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0 --14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0 -172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.01,0.00,1.00,0.00,0.00,0 --177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0 --168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0 -19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0 --158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0 -28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0 --148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0 -38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0 --139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0 -48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0 --129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0 -57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0 --120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0 -67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0 --110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0 -76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0 --100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0 -86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0 --86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0 -96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0 --76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0 -105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0 --67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0 -115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0 --57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0 -124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0 --48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0 -134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0 --38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0 -144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0 --28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0 -153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0 --19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0 -163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0 --9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0 -172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0 --0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0 --168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0 -14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0 --158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0 -24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0 --148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0 -33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0 --139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0 -43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0 --129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0 -52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0 --120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0 -62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0 --110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0 -72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0 --100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0 -81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0 --91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0 -96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0 --81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0 -105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0 --72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0 -115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0 --62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0 -124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0 --52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0 -134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0 --43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0 -144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0 --33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0 -153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0 --24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0 -163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0 --14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0 --4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0 -0.00,0.00,7.20,0.00,1.00,0.00,0.00,0 --177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0 --168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0 -19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0 --158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0 --148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0 -38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0 --139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0 -48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0 --129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0 -57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0 --120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0 -67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0 --110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0 -76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0 --100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0 -86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0 --86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0 -96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0 --76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0 -105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0 --67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0 -115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0 --57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0 -124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0 --48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0 -134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0 --38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0 -144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0 --28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0 --19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0 -163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0 --9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0 --0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0 --168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0 -14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0 --158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0 --148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0 -33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0 --139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0 -43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0 --129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0 -52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0 --120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0 -62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0 --110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0 -72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0 --100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0 -81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0 --91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0 -96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0 --81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0 -105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0 --72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0 -115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0 --62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0 -124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0 --52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0 -134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0 --43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0 -144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0 --33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0 -153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0 --24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0 --14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0 --4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0 -0.00,0.00,9.61,0.00,1.00,0.00,0.00,0 --177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0 --168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0 --158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0 --148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0 --139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0 -48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0 --129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0 -57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0 --120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0 -67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0 --110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0 -76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0 --100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0 -86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0 --86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0 -96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0 --76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0 -105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0 --67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0 -115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0 --57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0 -124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0 --48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0 -134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0 --38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0 --28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0 --19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0 -163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0 --9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0 --0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0 --168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0 --158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0 --148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0 -33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0 --139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0 -43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0 --129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0 -52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0 --120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0 -62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0 --110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0 -72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0 --100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0 -81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0 --91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0 -96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0 --81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0 -105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0 --72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0 -115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0 --62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0 -124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0 --52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0 -134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0 --43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0 -144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0 --33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0 -153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0 --24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0 --14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0 -172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0 --4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0 -0.00,0.00,5.60,0.00,1.00,0.00,0.00,0 --177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0 --168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0 --158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0 -28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0 --148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0 --139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0 -48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0 --129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0 -57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0 --120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0 -67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0 --110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0 -76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0 --100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0 -86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0 --86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0 -96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0 --76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0 -105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0 --67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0 -115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0 --57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0 -124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0 --48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0 -134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0 --38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0 --28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0 -153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0 --19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0 --9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0 --0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0 --168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0 --158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0 --148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0 -33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0 --139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0 -43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0 --129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0 -52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0 --120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0 -62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0 --110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0 -72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0 --100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0 -81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0 --91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0 -96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0 --81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0 -105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0 --72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0 -115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0 --62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0 -124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0 --52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0 -134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0 --43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0 -144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0 --33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0 -153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0 --24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0 --14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0 --4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0 -0.00,0.00,11.21,0.00,1.00,0.00,0.00,0 --177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0 --168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0 --158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0 -28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0 --148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0 -38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0 --139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0 -48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0 --129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0 -57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0 --120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0 -67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0 --110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0 -76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0 --100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0 -86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0 --86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0 -96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0 --76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0 -105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0 --67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0 -115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0 --57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0 -124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0 --48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0 -134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0 --38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0 -144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0 --28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0 -153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0 --19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0 --9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0 --0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0 --168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0 --158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0 --148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0 --139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0 -43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0 --129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0 -52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0 --120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0 -62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0 --110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0 -72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0 --100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0 -81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0 --91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0 -96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0 --81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0 -105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0 --72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0 -115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0 --62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0 -124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0 --52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0 -134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0 --43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0 --33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0 -153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0 --24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0 -163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0 --14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0 --4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,3.99,0.00,1.00,0.00,0.00,0 --177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0 --168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0 -19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0 --158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0 --148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0 -33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0 --139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0 -43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0 --129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0 -52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0 --120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0 -62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0 --110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0 -76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0 --100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0 -86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0 --86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0 -96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0 --76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0 -105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0 --67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0 -120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0 --57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0 --48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0 -139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0 --38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0 -148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0 --28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0 -158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0 --19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0 -163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0 --9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0 --0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0 --168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0 --158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0 --153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0 --144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0 -43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0 --134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0 --124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0 -62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0 --110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0 -72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0 --100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0 -81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0 --91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0 -96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0 --81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0 -105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0 --72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0 -115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0 --57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0 -124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0 --48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0 -134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0 --38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0 --28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0 --24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0 --14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0 --4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,12.82,0.00,1.00,0.00,0.00,0 --177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0 --168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0 --158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0 --148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0 -33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0 --139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0 --129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0 --120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0 -62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0 --110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0 -76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0 --100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0 -86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0 --86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0 -96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0 --76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0 -110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0 --67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0 -120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0 --57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0 --48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0 --38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0 --28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0 --19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0 --9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0 --0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0 --168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0 --163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0 --153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0 -33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0 --144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0 -43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0 --134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0 --124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0 -62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0 --115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0 -72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0 --100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0 -81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0 --91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0 -96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0 --81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0 -105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0 --67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0 -115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0 --57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0 -124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0 --48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0 -134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0 --38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0 -144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0 --28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0 --19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0 --14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0 --4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,2.39,0.00,1.00,0.00,0.00,0 --177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0 --168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0 --158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0 --153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0 -33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0 --144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0 --134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0 --124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0 -62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0 --110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0 -72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0 --100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0 -86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0 --86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0 -96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0 --76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0 -110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0 --67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0 -120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0 --52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0 -129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0 --43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0 --33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0 --24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0 --19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0 --9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0 --0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0 --168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0 --163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0 --153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0 -28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0 --144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0 -38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0 --134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0 -48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0 --124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0 -57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0 --115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0 -72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0 --105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0 -81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0 --91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0 -96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0 --81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0 -105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0 --67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0 -120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0 --57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0 -129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0 --48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0 -139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0 --38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0 --28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0 -158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0 --19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0 --9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0 --4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0 -0.00,0.00,14.42,0.00,1.00,0.00,0.00,0 --177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0 --168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0 --163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0 -24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0 --153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0 -28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0 --144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0 -38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0 --134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0 -48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0 --124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0 -62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0 --115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0 -72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0 --100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0 -86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0 --86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0 -96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0 --76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0 -110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0 --62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0 -120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0 --52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0 -134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0 --43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0 --33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0 --24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0 -158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0 --14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0 --9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0 --0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0 --172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0 --163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0 --153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0 --148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0 -38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0 --139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0 -48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0 --129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0 --115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0 -67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0 --105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0 -81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0 --91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0 -96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0 --76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0 -105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0 --67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0 -120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0 --52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0 -129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0 --43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0 -139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0 --33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0 --28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0 --19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0 -163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0 --9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0 --4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0 -0.00,0.00,0.79,0.00,1.00,0.00,0.00,0 --177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0 -4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0 --168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0 --163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0 -19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0 --153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0 -28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0 --148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0 -38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0 --139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0 -48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0 --124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0 -57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0 --115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0 -72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0 --100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0 -86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0 --86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0 -100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0 --76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0 -110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0 --62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0 -124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0 --48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0 -134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0 --38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0 --28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0 --24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0 -163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0 --14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0 -168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0 --9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0 --0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0 --177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0 --172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0 -9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0 --163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0 --158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0 --148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0 -33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0 --139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0 -43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0 --129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0 --120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0 -67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0 --105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0 -81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0 --91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0 -96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0 --76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0 -110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0 --67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0 -120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0 --52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0 -134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0 --43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0 -144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0 --33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0 -153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0 --24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0 --19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0 -168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0 --9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0 --4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0 diff --git a/scripts/testv/stvOMASA_4ISM_1MASA1TC32c_ISM4.csv b/scripts/testv/stvOMASA_4ISM_1MASA1TC32c_ISM4.csv deleted file mode 100644 index 8a14c3413ddd2dd47415bf6de3e19631f65f8f6c..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_1MASA1TC32c_ISM4.csv +++ /dev/null @@ -1,1500 +0,0 @@ --0.00,0.00,0.00,0.00,1.00,0.00,4.80,0 --0.00,4.80,0.06,0.00,1.00,4.80,9.60,0 --0.00,9.60,0.13,0.00,1.00,9.60,14.40,0 --0.00,14.40,0.19,0.00,1.00,14.40,19.20,0 --0.00,19.20,0.26,0.00,1.00,19.20,24.00,0 --0.00,24.00,0.32,0.00,1.00,24.00,28.80,0 --0.00,28.80,0.39,0.00,1.00,28.80,33.60,0 --0.00,33.60,0.45,0.00,1.00,33.60,38.40,0 --0.00,38.40,0.51,0.00,1.00,38.40,43.20,0 --0.00,43.20,0.58,0.00,1.00,43.20,48.00,0 --0.00,48.00,0.64,0.00,1.00,48.00,52.80,0 --0.00,52.80,0.71,0.00,1.00,52.80,57.60,0 --0.00,57.60,0.77,0.00,1.00,57.60,62.40,0 --0.00,62.40,0.84,0.00,1.00,62.40,67.20,0 --0.00,67.20,0.90,0.00,1.00,67.20,72.00,0 --0.00,72.00,0.96,0.00,1.00,72.00,76.80,0 --0.00,76.80,1.03,0.00,1.00,76.80,81.60,0 --0.00,81.60,1.09,0.00,1.00,81.60,86.40,0 --0.00,86.40,1.16,0.00,1.00,86.40,86.40,0 --177.60,89.20,1.22,0.00,1.00,91.20,81.60,0 --177.60,86.40,1.29,0.00,1.00,96.00,76.80,0 --177.60,81.60,1.35,0.00,1.00,100.80,72.00,0 --177.60,76.80,1.41,0.00,1.00,105.60,67.20,0 --177.60,72.00,1.48,0.00,1.00,110.40,62.40,0 --177.60,67.20,1.54,0.00,1.00,115.20,57.60,0 -177.60,62.40,1.61,0.00,1.00,120.00,52.80,0 -177.60,57.60,1.67,0.00,1.00,124.80,48.00,0 -177.60,52.80,1.73,0.00,1.00,129.60,43.20,0 -177.60,48.00,1.80,0.00,1.00,134.40,38.40,0 -177.60,43.20,1.86,0.00,1.00,139.20,33.60,0 -177.60,38.40,1.93,0.00,1.00,144.00,28.80,0 -177.60,33.60,1.99,0.00,1.00,148.80,24.00,0 -177.60,28.80,2.06,0.00,1.00,153.60,19.20,0 -177.60,24.00,2.12,0.00,1.00,158.40,14.40,0 -177.60,19.20,2.18,0.00,1.00,163.20,9.60,0 -177.60,14.40,2.25,0.00,1.00,168.00,4.80,0 -177.60,9.60,2.31,0.00,1.00,172.80,0.00,0 -177.60,4.80,2.38,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,2.44,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,2.51,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,2.57,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,2.63,0.00,1.00,-163.20,-19.20,0 --177.60,-19.20,2.70,0.00,1.00,-158.40,-24.00,0 --177.60,-24.00,2.76,0.00,1.00,-153.60,-28.80,0 --177.60,-28.80,2.83,0.00,1.00,-148.80,-33.60,0 --177.60,-33.60,2.89,0.00,1.00,-144.00,-38.40,0 --177.60,-38.40,2.96,0.00,1.00,-139.20,-43.20,0 --177.60,-48.00,3.02,0.00,1.00,-134.40,-48.00,0 --177.60,-48.00,3.08,0.00,1.00,-129.60,-52.80,0 --177.60,-52.80,3.15,0.00,1.00,-124.80,-57.60,0 --177.60,-57.60,3.21,0.00,1.00,-120.00,-62.40,0 -177.60,-62.40,3.28,0.00,1.00,-115.20,-67.20,0 -177.60,-67.20,3.34,0.00,1.00,-110.40,-72.00,0 -177.60,-76.80,3.41,0.00,1.00,-105.60,-76.80,0 -177.60,-76.80,3.47,0.00,1.00,-100.80,-81.60,0 -177.60,-86.40,3.53,0.00,1.00,-96.00,-86.40,0 -177.60,-89.20,3.60,0.00,1.00,-91.20,-86.40,0 -0.00,-86.40,3.66,0.00,1.00,-86.40,-81.60,0 -0.00,-81.60,3.73,0.00,1.00,-81.60,-76.80,0 -0.00,-76.80,3.79,0.00,1.00,-76.80,-72.00,0 -0.00,-72.00,3.86,0.00,1.00,-72.00,-67.20,0 -0.00,-67.20,3.92,0.00,1.00,-67.20,-62.40,0 -0.00,-62.40,3.98,0.00,1.00,-62.40,-57.60,0 -0.00,-57.60,4.05,0.00,1.00,-57.60,-52.80,0 -0.00,-52.80,4.11,0.00,1.00,-52.80,-48.00,0 -0.00,-48.00,4.18,0.00,1.00,-48.00,-43.20,0 -0.00,-43.20,4.24,0.00,1.00,-43.20,-38.40,0 -0.00,-38.40,4.31,0.00,1.00,-38.40,-33.60,0 -0.00,-33.60,4.37,0.00,1.00,-33.60,-28.80,0 -0.00,-28.80,4.43,0.00,1.00,-28.80,-24.00,0 -0.00,-24.00,4.50,0.00,1.00,-24.00,-19.20,0 -0.00,-19.20,4.56,0.00,1.00,-19.20,-14.40,0 -0.00,-14.40,4.63,0.00,1.00,-14.40,-9.60,0 -0.00,-9.60,4.69,0.00,1.00,-9.60,-4.80,0 -0.00,-4.80,4.76,0.00,1.00,-4.80,0.00,0 -0.00,0.00,4.82,0.00,1.00,0.00,4.80,0 -0.00,4.80,4.88,0.00,1.00,4.80,9.60,0 -0.00,9.60,4.95,0.00,1.00,9.60,14.40,0 -0.00,14.40,5.01,0.00,1.00,14.40,19.20,0 -0.00,19.20,5.08,0.00,1.00,19.20,24.00,0 -0.00,24.00,5.14,0.00,1.00,24.00,28.80,0 -4.80,28.80,5.20,0.00,1.00,28.80,33.60,0 -4.80,33.60,5.27,0.00,1.00,33.60,38.40,0 -4.80,38.40,5.33,0.00,1.00,38.40,43.20,0 -4.80,43.20,5.40,0.00,1.00,43.20,48.00,0 -4.80,48.00,5.46,0.00,1.00,48.00,52.80,0 -4.80,52.80,5.53,0.00,1.00,52.80,57.60,0 -9.60,57.60,5.59,0.00,1.00,57.60,62.40,0 -9.60,62.40,5.65,0.00,1.00,62.40,67.20,0 -9.60,67.20,5.72,0.00,1.00,67.20,72.00,0 -14.40,72.00,5.78,0.00,1.00,72.00,76.80,0 -19.20,76.80,5.85,0.00,1.00,76.80,81.60,0 -28.80,81.60,5.91,0.00,1.00,81.60,86.40,0 -52.80,86.40,5.98,0.00,1.00,86.40,86.40,0 -105.60,86.40,6.04,0.00,1.00,91.20,81.60,0 -139.20,81.60,6.10,0.00,1.00,96.00,76.80,0 -158.40,76.80,6.17,0.00,1.00,100.80,72.00,0 -163.20,72.00,6.23,0.00,1.00,105.60,67.20,0 -168.00,67.20,6.30,0.00,1.00,110.40,62.40,0 -168.00,62.40,6.36,0.00,1.00,115.20,57.60,0 -172.80,57.60,6.43,0.00,1.00,120.00,52.80,0 -172.80,52.80,6.49,0.00,1.00,124.80,48.00,0 -172.80,48.00,6.55,0.00,1.00,129.60,43.20,0 -172.80,43.20,6.62,0.00,1.00,134.40,38.40,0 -177.60,38.40,6.68,0.00,1.00,139.20,33.60,0 -177.60,33.60,6.75,0.00,1.00,144.00,28.80,0 -177.60,28.80,6.81,0.00,1.00,148.80,24.00,0 -177.60,24.00,6.88,0.00,1.00,153.60,19.20,0 -177.60,19.20,6.94,0.00,1.00,158.40,14.40,0 -177.60,14.40,7.00,0.00,1.00,163.20,9.60,0 -177.60,9.60,7.07,0.00,1.00,168.00,4.80,0 -177.60,4.80,7.13,0.00,1.00,172.80,0.00,0 -177.60,0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,7.26,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,7.33,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,7.39,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,7.45,0.00,1.00,-163.20,-19.20,0 --177.60,-19.20,7.52,0.00,1.00,-158.40,-24.00,0 --177.60,-24.00,7.58,0.00,1.00,-153.60,-28.80,0 --177.60,-28.80,7.65,0.00,1.00,-148.80,-33.60,0 --177.60,-33.60,7.71,0.00,1.00,-144.00,-38.40,0 --177.60,-38.40,7.78,0.00,1.00,-139.20,-43.20,0 --172.80,-43.20,7.84,0.00,1.00,-134.40,-48.00,0 --172.80,-48.00,7.90,0.00,1.00,-129.60,-52.80,0 --172.80,-52.80,7.97,0.00,1.00,-124.80,-57.60,0 --172.80,-57.60,8.03,0.00,1.00,-120.00,-62.40,0 --168.00,-62.40,8.10,0.00,1.00,-115.20,-67.20,0 --168.00,-67.20,8.16,0.00,1.00,-110.40,-72.00,0 --163.20,-72.00,8.22,0.00,1.00,-105.60,-76.80,0 --158.40,-76.80,8.29,0.00,1.00,-100.80,-81.60,0 --139.20,-81.60,8.35,0.00,1.00,-96.00,-86.40,0 --105.60,-86.40,8.42,0.00,1.00,-91.20,-86.40,0 --52.80,-86.40,8.48,0.00,1.00,-86.40,-81.60,0 --28.80,-81.60,8.55,0.00,1.00,-81.60,-76.80,0 --19.20,-76.80,8.61,0.00,1.00,-76.80,-72.00,0 --14.40,-72.00,8.67,0.00,1.00,-72.00,-67.20,0 --9.60,-67.20,8.74,0.00,1.00,-67.20,-62.40,0 --9.60,-62.40,8.80,0.00,1.00,-62.40,-57.60,0 --9.60,-57.60,8.87,0.00,1.00,-57.60,-52.80,0 --4.80,-52.80,8.93,0.00,1.00,-52.80,-48.00,0 --4.80,-48.00,9.00,0.00,1.00,-48.00,-43.20,0 --4.80,-43.20,9.06,0.00,1.00,-43.20,-38.40,0 --4.80,-38.40,9.12,0.00,1.00,-38.40,-33.60,0 --4.80,-33.60,9.19,0.00,1.00,-33.60,-28.80,0 --4.80,-28.80,9.25,0.00,1.00,-28.80,-24.00,0 --0.00,-24.00,9.32,0.00,1.00,-24.00,-19.20,0 --0.00,-19.20,9.38,0.00,1.00,-19.20,-14.40,0 --0.00,-14.40,9.45,0.00,1.00,-14.40,-9.60,0 --0.00,-9.60,9.51,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,9.57,0.00,1.00,-4.80,0.00,0 -0.00,0.00,9.64,0.00,1.00,0.00,4.80,0 -0.00,4.80,9.70,0.00,1.00,4.80,9.60,0 -0.00,9.60,9.77,0.00,1.00,9.60,14.40,0 -4.80,14.40,9.83,0.00,1.00,14.40,19.20,0 -4.80,19.20,9.90,0.00,1.00,19.20,24.00,0 -4.80,24.00,9.96,0.00,1.00,24.00,28.80,0 -4.80,28.80,10.02,0.00,1.00,28.80,33.60,0 -4.80,33.60,10.09,0.00,1.00,33.60,38.40,0 -9.60,38.40,10.15,0.00,1.00,38.40,43.20,0 -9.60,43.20,10.22,0.00,1.00,43.20,48.00,0 -9.60,48.00,10.28,0.00,1.00,48.00,52.80,0 -14.40,52.80,10.35,0.00,1.00,52.80,57.60,0 -14.40,57.60,10.41,0.00,1.00,57.60,62.40,0 -19.20,62.40,10.47,0.00,1.00,62.40,67.20,0 -24.00,67.20,10.54,0.00,1.00,67.20,72.00,0 -28.80,72.00,10.60,0.00,1.00,72.00,72.00,0 -33.60,72.00,10.67,0.00,1.00,76.80,76.80,0 -48.00,76.80,10.73,0.00,1.00,81.60,81.60,0 -67.20,81.60,10.80,0.00,1.00,86.40,81.60,0 -96.00,81.60,10.86,0.00,1.00,91.20,81.60,0 -120.00,76.80,10.92,0.00,1.00,96.00,76.80,0 -139.20,76.80,10.99,0.00,1.00,100.80,72.00,0 -148.80,72.00,11.05,0.00,1.00,105.60,67.20,0 -153.60,67.20,11.12,0.00,1.00,110.40,62.40,0 -158.40,62.40,11.18,0.00,1.00,115.20,57.60,0 -163.20,57.60,11.24,0.00,1.00,120.00,52.80,0 -168.00,52.80,11.31,0.00,1.00,124.80,48.00,0 -168.00,48.00,11.37,0.00,1.00,129.60,43.20,0 -168.00,43.20,11.44,0.00,1.00,134.40,38.40,0 -172.80,38.40,11.50,0.00,1.00,139.20,33.60,0 -172.80,33.60,11.57,0.00,1.00,144.00,28.80,0 -172.80,28.80,11.63,0.00,1.00,148.80,24.00,0 -177.60,24.00,11.69,0.00,1.00,153.60,19.20,0 -177.60,19.20,11.76,0.00,1.00,158.40,14.40,0 -177.60,14.40,11.82,0.00,1.00,163.20,9.60,0 -177.60,9.60,11.89,0.00,1.00,168.00,4.80,0 -177.60,4.80,11.95,0.00,1.00,172.80,0.00,0 -177.60,0.00,12.02,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,12.08,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,12.14,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,12.21,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,12.27,0.00,1.00,-163.20,-19.20,0 --177.60,-19.20,12.34,0.00,1.00,-158.40,-24.00,0 --177.60,-24.00,12.40,0.00,1.00,-153.60,-28.80,0 --172.80,-28.80,12.47,0.00,1.00,-148.80,-33.60,0 --172.80,-33.60,12.53,0.00,1.00,-144.00,-38.40,0 --172.80,-38.40,12.59,0.00,1.00,-139.20,-43.20,0 --168.00,-43.20,12.66,0.00,1.00,-134.40,-48.00,0 --168.00,-48.00,12.72,0.00,1.00,-129.60,-52.80,0 --168.00,-52.80,12.79,0.00,1.00,-124.80,-57.60,0 --163.20,-57.60,12.85,0.00,1.00,-120.00,-62.40,0 --158.40,-62.40,12.92,0.00,1.00,-115.20,-67.20,0 --153.60,-67.20,12.98,0.00,1.00,-110.40,-72.00,0 --148.80,-72.00,13.04,0.00,1.00,-105.60,-76.80,0 --139.20,-76.80,13.11,0.00,1.00,-100.80,-81.60,0 --120.00,-76.80,13.17,0.00,1.00,-96.00,-81.60,0 --96.00,-81.60,13.24,0.00,1.00,-91.20,-81.60,0 --67.20,-81.60,13.30,0.00,1.00,-86.40,-76.80,0 --48.00,-76.80,13.37,0.00,1.00,-81.60,-72.00,0 --33.60,-72.00,13.43,0.00,1.00,-76.80,-72.00,0 --28.80,-72.00,13.49,0.00,1.00,-72.00,-67.20,0 --24.00,-67.20,13.56,0.00,1.00,-67.20,-62.40,0 --19.20,-62.40,13.62,0.00,1.00,-62.40,-57.60,0 --14.40,-57.60,13.69,0.00,1.00,-57.60,-52.80,0 --14.40,-52.80,13.75,0.00,1.00,-52.80,-48.00,0 --9.60,-48.00,13.82,0.00,1.00,-48.00,-43.20,0 --9.60,-43.20,13.88,0.00,1.00,-43.20,-38.40,0 --9.60,-38.40,13.94,0.00,1.00,-38.40,-33.60,0 --4.80,-33.60,14.01,0.00,1.00,-33.60,-28.80,0 --4.80,-28.80,14.07,0.00,1.00,-28.80,-24.00,0 --4.80,-24.00,14.14,0.00,1.00,-24.00,-19.20,0 --4.80,-19.20,14.20,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,14.27,0.00,1.00,-14.40,-9.60,0 --0.00,-9.60,14.33,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,14.39,0.00,1.00,-4.80,0.00,0 -0.00,0.00,14.46,0.00,1.00,0.00,4.80,0 -0.00,4.80,14.52,0.00,1.00,4.80,9.60,0 -4.80,9.60,14.59,0.00,1.00,9.60,14.40,0 -4.80,14.40,14.65,0.00,1.00,14.40,19.20,0 -4.80,19.20,14.71,0.00,1.00,19.20,24.00,0 -4.80,24.00,14.78,0.00,1.00,24.00,28.80,0 -9.60,28.80,14.84,0.00,1.00,28.80,33.60,0 -9.60,33.60,14.91,0.00,1.00,33.60,38.40,0 -9.60,38.40,14.97,0.00,1.00,38.40,43.20,0 -14.40,43.20,15.04,0.00,1.00,43.20,48.00,0 -14.40,48.00,15.10,0.00,1.00,48.00,52.80,0 -19.20,52.80,15.16,0.00,1.00,52.80,57.60,0 -19.20,52.80,15.23,0.00,1.00,57.60,57.60,0 -24.00,57.60,15.29,0.00,1.00,62.40,62.40,0 -28.80,62.40,15.36,0.00,1.00,67.20,67.20,0 -38.40,67.20,15.42,0.00,1.00,72.00,72.00,0 -48.00,72.00,15.49,0.00,1.00,76.80,72.00,0 -57.60,72.00,15.55,0.00,1.00,81.60,76.80,0 -76.80,76.80,15.61,0.00,1.00,86.40,76.80,0 -96.00,76.80,15.68,0.00,1.00,91.20,76.80,0 -115.20,76.80,15.74,0.00,1.00,96.00,72.00,0 -129.60,72.00,15.81,0.00,1.00,100.80,72.00,0 -139.20,67.20,15.87,0.00,1.00,105.60,67.20,0 -144.00,67.20,15.94,0.00,1.00,110.40,62.40,0 -153.60,62.40,16.00,0.00,1.00,115.20,57.60,0 -158.40,57.60,16.00,0.00,1.00,120.00,52.80,0 -158.40,52.80,15.94,0.00,1.00,124.80,48.00,0 -163.20,48.00,15.87,0.00,1.00,129.60,43.20,0 -168.00,43.20,15.81,0.00,1.00,134.40,38.40,0 -168.00,38.40,15.74,0.00,1.00,139.20,33.60,0 -168.00,33.60,15.68,0.00,1.00,144.00,28.80,0 -172.80,28.80,15.61,0.00,1.00,148.80,24.00,0 -172.80,24.00,15.55,0.00,1.00,153.60,19.20,0 -172.80,19.20,15.49,0.00,1.00,158.40,14.40,0 -177.60,14.40,15.42,0.00,1.00,163.20,9.60,0 -177.60,9.60,15.36,0.00,1.00,168.00,4.80,0 -177.60,4.80,15.29,0.00,1.00,172.80,0.00,0 -177.60,0.00,15.23,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,15.16,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,15.10,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,15.04,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,14.97,0.00,1.00,-163.20,-19.20,0 --172.80,-19.20,14.91,0.00,1.00,-158.40,-24.00,0 --172.80,-24.00,14.84,0.00,1.00,-153.60,-28.80,0 --172.80,-28.80,14.78,0.00,1.00,-148.80,-33.60,0 --168.00,-33.60,14.71,0.00,1.00,-144.00,-38.40,0 --168.00,-38.40,14.65,0.00,1.00,-139.20,-43.20,0 --168.00,-43.20,14.59,0.00,1.00,-134.40,-48.00,0 --163.20,-48.00,14.52,0.00,1.00,-129.60,-52.80,0 --158.40,-52.80,14.46,0.00,1.00,-124.80,-57.60,0 --158.40,-57.60,14.39,0.00,1.00,-120.00,-62.40,0 --153.60,-62.40,14.33,0.00,1.00,-115.20,-67.20,0 --144.00,-67.20,14.27,0.00,1.00,-110.40,-72.00,0 --139.20,-67.20,14.20,0.00,1.00,-105.60,-72.00,0 --129.60,-72.00,14.14,0.00,1.00,-100.80,-76.80,0 --115.20,-76.80,14.07,0.00,1.00,-96.00,-76.80,0 --96.00,-76.80,14.01,0.00,1.00,-91.20,-76.80,0 --76.80,-76.80,13.94,0.00,1.00,-86.40,-72.00,0 --57.60,-72.00,13.88,0.00,1.00,-81.60,-72.00,0 --48.00,-72.00,13.82,0.00,1.00,-76.80,-67.20,0 --38.40,-67.20,13.75,0.00,1.00,-72.00,-62.40,0 --28.80,-62.40,13.69,0.00,1.00,-67.20,-57.60,0 --24.00,-57.60,13.62,0.00,1.00,-62.40,-57.60,0 --19.20,-52.80,13.56,0.00,1.00,-57.60,-52.80,0 --19.20,-52.80,13.49,0.00,1.00,-52.80,-48.00,0 --14.40,-48.00,13.43,0.00,1.00,-48.00,-43.20,0 --14.40,-43.20,13.37,0.00,1.00,-43.20,-38.40,0 --9.60,-38.40,13.30,0.00,1.00,-38.40,-33.60,0 --9.60,-33.60,13.24,0.00,1.00,-33.60,-28.80,0 --9.60,-28.80,13.17,0.00,1.00,-28.80,-24.00,0 --4.80,-24.00,13.11,0.00,1.00,-24.00,-19.20,0 --4.80,-19.20,13.04,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,12.98,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,12.92,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,12.85,0.00,1.00,-4.80,0.00,0 -0.00,0.00,12.79,0.00,1.00,0.00,4.80,0 -0.00,4.80,12.72,0.00,1.00,4.80,9.60,0 -4.80,9.60,12.66,0.00,1.00,9.60,14.40,0 -4.80,14.40,12.59,0.00,1.00,14.40,19.20,0 -4.80,19.20,12.53,0.00,1.00,19.20,24.00,0 -9.60,24.00,12.47,0.00,1.00,24.00,28.80,0 -9.60,28.80,12.40,0.00,1.00,28.80,33.60,0 -14.40,33.60,12.34,0.00,1.00,33.60,38.40,0 -14.40,33.60,12.27,0.00,1.00,38.40,38.40,0 -19.20,38.40,12.21,0.00,1.00,43.20,43.20,0 -19.20,43.20,12.14,0.00,1.00,48.00,48.00,0 -24.00,48.00,12.08,0.00,1.00,52.80,52.80,0 -28.80,52.80,12.02,0.00,1.00,57.60,57.60,0 -33.60,57.60,11.95,0.00,1.00,62.40,62.40,0 -38.40,62.40,11.89,0.00,1.00,67.20,62.40,0 -43.20,62.40,11.82,0.00,1.00,72.00,67.20,0 -52.80,67.20,11.76,0.00,1.00,76.80,72.00,0 -67.20,67.20,11.69,0.00,1.00,81.60,72.00,0 -76.80,72.00,11.63,0.00,1.00,86.40,72.00,0 -96.00,72.00,11.57,0.00,1.00,91.20,72.00,0 -105.60,72.00,11.50,0.00,1.00,96.00,67.20,0 -120.00,67.20,11.44,0.00,1.00,100.80,67.20,0 -129.60,67.20,11.37,0.00,1.00,105.60,62.40,0 -139.20,62.40,11.31,0.00,1.00,110.40,57.60,0 -144.00,57.60,11.24,0.00,1.00,115.20,57.60,0 -148.80,52.80,11.18,0.00,1.00,120.00,52.80,0 -153.60,52.80,11.12,0.00,1.00,124.80,48.00,0 -158.40,48.00,11.05,0.00,1.00,129.60,43.20,0 -163.20,43.20,10.99,0.00,1.00,134.40,38.40,0 -163.20,38.40,10.92,0.00,1.00,139.20,33.60,0 -168.00,33.60,10.86,0.00,1.00,144.00,28.80,0 -168.00,28.80,10.80,0.00,1.00,148.80,24.00,0 -172.80,24.00,10.73,0.00,1.00,153.60,19.20,0 -172.80,19.20,10.67,0.00,1.00,158.40,14.40,0 -172.80,14.40,10.60,0.00,1.00,163.20,9.60,0 -177.60,9.60,10.54,0.00,1.00,168.00,4.80,0 -177.60,4.80,10.47,0.00,1.00,172.80,0.00,0 -177.60,0.00,10.41,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.35,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,10.28,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,10.22,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,10.15,0.00,1.00,-163.20,-19.20,0 --172.80,-19.20,10.09,0.00,1.00,-158.40,-24.00,0 --172.80,-24.00,10.02,0.00,1.00,-153.60,-28.80,0 --168.00,-28.80,9.96,0.00,1.00,-148.80,-33.60,0 --168.00,-33.60,9.90,0.00,1.00,-144.00,-38.40,0 --163.20,-38.40,9.83,0.00,1.00,-139.20,-43.20,0 --163.20,-43.20,9.77,0.00,1.00,-134.40,-48.00,0 --158.40,-48.00,9.70,0.00,1.00,-129.60,-52.80,0 --153.60,-52.80,9.64,0.00,1.00,-124.80,-57.60,0 --148.80,-52.80,9.57,0.00,1.00,-120.00,-57.60,0 --144.00,-57.60,9.51,0.00,1.00,-115.20,-62.40,0 --139.20,-62.40,9.45,0.00,1.00,-110.40,-67.20,0 --129.60,-67.20,9.38,0.00,1.00,-105.60,-67.20,0 --120.00,-67.20,9.32,0.00,1.00,-100.80,-72.00,0 --105.60,-72.00,9.25,0.00,1.00,-96.00,-72.00,0 --96.00,-72.00,9.19,0.00,1.00,-91.20,-72.00,0 --76.80,-72.00,9.12,0.00,1.00,-86.40,-72.00,0 --67.20,-67.20,9.06,0.00,1.00,-81.60,-67.20,0 --52.80,-67.20,9.00,0.00,1.00,-76.80,-62.40,0 --43.20,-62.40,8.93,0.00,1.00,-72.00,-62.40,0 --38.40,-62.40,8.87,0.00,1.00,-67.20,-57.60,0 --33.60,-57.60,8.80,0.00,1.00,-62.40,-52.80,0 --28.80,-52.80,8.74,0.00,1.00,-57.60,-48.00,0 --24.00,-48.00,8.67,0.00,1.00,-52.80,-43.20,0 --19.20,-43.20,8.61,0.00,1.00,-48.00,-38.40,0 --19.20,-38.40,8.55,0.00,1.00,-43.20,-38.40,0 --14.40,-33.60,8.48,0.00,1.00,-38.40,-33.60,0 --14.40,-33.60,8.42,0.00,1.00,-33.60,-28.80,0 --9.60,-28.80,8.35,0.00,1.00,-28.80,-24.00,0 --9.60,-24.00,8.29,0.00,1.00,-24.00,-19.20,0 --4.80,-19.20,8.22,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,8.16,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,8.10,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,8.03,0.00,1.00,-4.80,0.00,0 -0.00,0.00,7.97,0.00,1.00,0.00,4.80,0 -0.00,4.80,7.90,0.00,1.00,4.80,9.60,0 -4.80,9.60,7.84,0.00,1.00,9.60,14.40,0 -4.80,14.40,7.78,0.00,1.00,14.40,19.20,0 -9.60,19.20,7.71,0.00,1.00,19.20,24.00,0 -9.60,24.00,7.65,0.00,1.00,24.00,24.00,0 -14.40,24.00,7.58,0.00,1.00,28.80,28.80,0 -14.40,28.80,7.52,0.00,1.00,33.60,33.60,0 -19.20,33.60,7.45,0.00,1.00,33.60,38.40,0 -19.20,38.40,7.39,0.00,1.00,38.40,43.20,0 -24.00,43.20,7.33,0.00,1.00,43.20,48.00,0 -28.80,48.00,7.26,0.00,1.00,48.00,52.80,0 -33.60,52.80,7.20,0.00,1.00,57.60,52.80,0 -38.40,52.80,7.13,0.00,1.00,62.40,57.60,0 -43.20,57.60,7.07,0.00,1.00,67.20,62.40,0 -52.80,62.40,7.00,0.00,1.00,72.00,62.40,0 -62.40,62.40,6.94,0.00,1.00,76.80,67.20,0 -72.00,62.40,6.88,0.00,1.00,81.60,67.20,0 -81.60,67.20,6.81,0.00,1.00,86.40,67.20,0 -91.20,67.20,6.75,0.00,1.00,91.20,67.20,0 -105.60,67.20,6.68,0.00,1.00,96.00,67.20,0 -115.20,62.40,6.62,0.00,1.00,100.80,62.40,0 -124.80,62.40,6.55,0.00,1.00,105.60,57.60,0 -134.40,57.60,6.49,0.00,1.00,110.40,57.60,0 -139.20,57.60,6.43,0.00,1.00,115.20,52.80,0 -144.00,52.80,6.36,0.00,1.00,120.00,48.00,0 -148.80,48.00,6.30,0.00,1.00,129.60,43.20,0 -153.60,43.20,6.23,0.00,1.00,134.40,43.20,0 -158.40,38.40,6.17,0.00,1.00,139.20,38.40,0 -158.40,38.40,6.10,0.00,1.00,144.00,33.60,0 -163.20,33.60,6.04,0.00,1.00,148.80,28.80,0 -168.00,28.80,5.98,0.00,1.00,148.80,24.00,0 -168.00,24.00,5.91,0.00,1.00,153.60,19.20,0 -172.80,19.20,5.85,0.00,1.00,158.40,14.40,0 -172.80,14.40,5.78,0.00,1.00,163.20,9.60,0 -172.80,9.60,5.72,0.00,1.00,168.00,4.80,0 -177.60,4.80,5.65,0.00,1.00,172.80,0.00,0 -177.60,0.00,5.59,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,5.53,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,5.46,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,5.40,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,5.33,0.00,1.00,-163.20,-19.20,0 --172.80,-19.20,5.27,0.00,1.00,-158.40,-24.00,0 --168.00,-24.00,5.20,0.00,1.00,-153.60,-28.80,0 --168.00,-28.80,5.14,0.00,1.00,-148.80,-33.60,0 --163.20,-33.60,5.08,0.00,1.00,-148.80,-38.40,0 --158.40,-38.40,5.01,0.00,1.00,-144.00,-43.20,0 --158.40,-38.40,4.95,0.00,1.00,-139.20,-43.20,0 --153.60,-43.20,4.88,0.00,1.00,-134.40,-48.00,0 --148.80,-48.00,4.82,0.00,1.00,-129.60,-52.80,0 --144.00,-52.80,4.76,0.00,1.00,-120.00,-57.60,0 --139.20,-57.60,4.69,0.00,1.00,-115.20,-57.60,0 --134.40,-57.60,4.63,0.00,1.00,-110.40,-62.40,0 --124.80,-62.40,4.56,0.00,1.00,-105.60,-67.20,0 --115.20,-62.40,4.50,0.00,1.00,-100.80,-67.20,0 --105.60,-67.20,4.43,0.00,1.00,-96.00,-67.20,0 --91.20,-67.20,4.37,0.00,1.00,-91.20,-67.20,0 --81.60,-67.20,4.31,0.00,1.00,-86.40,-67.20,0 --72.00,-62.40,4.24,0.00,1.00,-81.60,-62.40,0 --62.40,-62.40,4.18,0.00,1.00,-76.80,-62.40,0 --52.80,-62.40,4.11,0.00,1.00,-72.00,-57.60,0 --43.20,-57.60,4.05,0.00,1.00,-67.20,-52.80,0 --38.40,-52.80,3.98,0.00,1.00,-62.40,-52.80,0 --33.60,-52.80,3.92,0.00,1.00,-57.60,-48.00,0 --28.80,-48.00,3.86,0.00,1.00,-48.00,-43.20,0 --24.00,-43.20,3.79,0.00,1.00,-43.20,-38.40,0 --19.20,-38.40,3.73,0.00,1.00,-38.40,-33.60,0 --19.20,-33.60,3.66,0.00,1.00,-33.60,-28.80,0 --14.40,-28.80,3.60,0.00,1.00,-33.60,-24.00,0 --14.40,-24.00,3.53,0.00,1.00,-28.80,-24.00,0 --9.60,-24.00,3.47,0.00,1.00,-24.00,-19.20,0 --9.60,-19.20,3.41,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,3.34,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,3.28,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,3.21,0.00,1.00,-4.80,0.00,0 -0.00,0.00,3.15,0.00,1.00,0.00,4.80,0 -0.00,4.80,3.08,0.00,1.00,4.80,9.60,0 -4.80,9.60,3.02,0.00,1.00,9.60,14.40,0 -4.80,14.40,2.96,0.00,1.00,14.40,19.20,0 -9.60,14.40,2.89,0.00,1.00,19.20,19.20,0 -14.40,19.20,2.83,0.00,1.00,19.20,24.00,0 -14.40,24.00,2.76,0.00,1.00,24.00,28.80,0 -19.20,28.80,2.70,0.00,1.00,28.80,33.60,0 -19.20,33.60,2.63,0.00,1.00,33.60,38.40,0 -24.00,38.40,2.57,0.00,1.00,38.40,43.20,0 -28.80,38.40,2.51,0.00,1.00,43.20,43.20,0 -33.60,43.20,2.44,0.00,1.00,48.00,48.00,0 -38.40,48.00,2.38,0.00,1.00,52.80,52.80,0 -43.20,52.80,2.31,0.00,1.00,57.60,52.80,0 -48.00,52.80,2.25,0.00,1.00,62.40,57.60,0 -57.60,57.60,2.18,0.00,1.00,72.00,57.60,0 -62.40,57.60,2.12,0.00,1.00,76.80,62.40,0 -72.00,62.40,2.06,0.00,1.00,81.60,62.40,0 -81.60,62.40,1.99,0.00,1.00,86.40,62.40,0 -91.20,62.40,1.93,0.00,1.00,91.20,62.40,0 -100.80,62.40,1.86,0.00,1.00,96.00,62.40,0 -110.40,57.60,1.80,0.00,1.00,100.80,57.60,0 -120.00,57.60,1.73,0.00,1.00,105.60,57.60,0 -129.60,57.60,1.67,0.00,1.00,115.20,52.80,0 -134.40,52.80,1.61,0.00,1.00,120.00,48.00,0 -139.20,48.00,1.54,0.00,1.00,124.80,48.00,0 -144.00,48.00,1.48,0.00,1.00,129.60,43.20,0 -148.80,43.20,1.41,0.00,1.00,134.40,38.40,0 -153.60,38.40,1.35,0.00,1.00,139.20,33.60,0 -158.40,33.60,1.29,0.00,1.00,144.00,33.60,0 -158.40,28.80,1.22,0.00,1.00,148.80,28.80,0 -163.20,28.80,1.16,0.00,1.00,153.60,24.00,0 -168.00,24.00,1.09,0.00,1.00,158.40,19.20,0 -168.00,19.20,1.03,0.00,1.00,163.20,14.40,0 -172.80,14.40,0.96,0.00,1.00,163.20,9.60,0 -172.80,9.60,0.90,0.00,1.00,168.00,4.80,0 -177.60,4.80,0.84,0.00,1.00,172.80,0.00,0 -177.60,0.00,0.77,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,0.71,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,0.64,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,0.58,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,0.51,0.00,1.00,-163.20,-19.20,0 --168.00,-19.20,0.45,0.00,1.00,-163.20,-24.00,0 --168.00,-24.00,0.39,0.00,1.00,-158.40,-28.80,0 --163.20,-28.80,0.32,0.00,1.00,-153.60,-33.60,0 --158.40,-28.80,0.26,0.00,1.00,-148.80,-33.60,0 --158.40,-33.60,0.19,0.00,1.00,-144.00,-38.40,0 --153.60,-38.40,0.13,0.00,1.00,-139.20,-43.20,0 --148.80,-43.20,0.06,0.00,1.00,-134.40,-48.00,0 --144.00,-48.00,0.00,0.00,1.00,-129.60,-48.00,0 --139.20,-48.00,0.00,0.00,1.00,-124.80,-52.80,0 --134.40,-52.80,0.16,0.00,1.00,-120.00,-57.60,0 --129.60,-57.60,0.32,0.00,1.00,-115.20,-57.60,0 --120.00,-57.60,0.48,0.00,1.00,-105.60,-62.40,0 --110.40,-57.60,0.65,0.00,1.00,-100.80,-62.40,0 --100.80,-62.40,0.81,0.00,1.00,-96.00,-62.40,0 --91.20,-62.40,0.97,0.00,1.00,-91.20,-62.40,0 --81.60,-62.40,1.13,0.00,1.00,-86.40,-62.40,0 --72.00,-62.40,1.29,0.00,1.00,-81.60,-57.60,0 --62.40,-57.60,1.45,0.00,1.00,-76.80,-57.60,0 --57.60,-57.60,1.62,0.00,1.00,-72.00,-52.80,0 --48.00,-52.80,1.78,0.00,1.00,-62.40,-52.80,0 --43.20,-52.80,1.94,0.00,1.00,-57.60,-48.00,0 --38.40,-48.00,2.10,0.00,1.00,-52.80,-43.20,0 --33.60,-43.20,2.26,0.00,1.00,-48.00,-43.20,0 --28.80,-38.40,2.42,0.00,1.00,-43.20,-38.40,0 --24.00,-38.40,2.59,0.00,1.00,-38.40,-33.60,0 --19.20,-33.60,2.75,0.00,1.00,-33.60,-28.80,0 --19.20,-28.80,2.91,0.00,1.00,-28.80,-24.00,0 --14.40,-24.00,3.07,0.00,1.00,-24.00,-19.20,0 --14.40,-19.20,3.23,0.00,1.00,-19.20,-19.20,0 --9.60,-14.40,3.39,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,3.56,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,3.72,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,3.88,0.00,1.00,-4.80,0.00,0 -0.00,0.00,4.04,0.00,1.00,0.00,4.80,0 -4.80,4.80,4.20,0.00,1.00,4.80,9.60,0 -4.80,9.60,4.36,0.00,1.00,9.60,14.40,0 -9.60,9.60,4.53,0.00,1.00,14.40,14.40,0 -9.60,14.40,4.69,0.00,1.00,14.40,19.20,0 -14.40,19.20,4.85,0.00,1.00,19.20,24.00,0 -19.20,24.00,5.01,0.00,1.00,24.00,28.80,0 -19.20,28.80,5.17,0.00,1.00,28.80,33.60,0 -24.00,28.80,5.33,0.00,1.00,33.60,33.60,0 -28.80,33.60,5.49,0.00,1.00,38.40,38.40,0 -33.60,38.40,5.66,0.00,1.00,43.20,43.20,0 -38.40,43.20,5.82,0.00,1.00,48.00,43.20,0 -43.20,43.20,5.98,0.00,1.00,52.80,48.00,0 -48.00,48.00,6.14,0.00,1.00,57.60,52.80,0 -52.80,48.00,6.30,0.00,1.00,62.40,52.80,0 -57.60,52.80,6.46,0.00,1.00,67.20,57.60,0 -67.20,52.80,6.63,0.00,1.00,72.00,57.60,0 -76.80,57.60,6.79,0.00,1.00,81.60,57.60,0 -81.60,57.60,6.95,0.00,1.00,86.40,57.60,0 -91.20,57.60,7.11,0.00,1.00,91.20,57.60,0 -100.80,57.60,7.27,0.00,1.00,96.00,57.60,0 -110.40,52.80,7.43,0.00,1.00,100.80,52.80,0 -115.20,52.80,7.60,0.00,1.00,110.40,52.80,0 -124.80,52.80,7.76,0.00,1.00,115.20,48.00,0 -129.60,48.00,7.92,0.00,1.00,120.00,48.00,0 -134.40,48.00,8.08,0.00,1.00,124.80,43.20,0 -139.20,43.20,8.24,0.00,1.00,129.60,38.40,0 -144.00,38.40,8.40,0.00,1.00,134.40,38.40,0 -148.80,38.40,8.57,0.00,1.00,139.20,33.60,0 -153.60,33.60,8.73,0.00,1.00,144.00,28.80,0 -158.40,28.80,8.89,0.00,1.00,148.80,24.00,0 -163.20,24.00,9.05,0.00,1.00,153.60,24.00,0 -163.20,24.00,9.21,0.00,1.00,158.40,19.20,0 -168.00,19.20,9.37,0.00,1.00,163.20,14.40,0 -172.80,14.40,9.54,0.00,1.00,168.00,9.60,0 -172.80,9.60,9.70,0.00,1.00,168.00,4.80,0 -177.60,4.80,9.86,0.00,1.00,172.80,0.00,0 -177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.18,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,10.34,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,10.51,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,10.67,0.00,1.00,-168.00,-19.20,0 --168.00,-19.20,10.83,0.00,1.00,-163.20,-24.00,0 --163.20,-24.00,10.99,0.00,1.00,-158.40,-24.00,0 --163.20,-24.00,11.15,0.00,1.00,-153.60,-28.80,0 --158.40,-28.80,11.31,0.00,1.00,-148.80,-33.60,0 --153.60,-33.60,11.47,0.00,1.00,-144.00,-38.40,0 --148.80,-38.40,11.64,0.00,1.00,-139.20,-38.40,0 --144.00,-38.40,11.80,0.00,1.00,-134.40,-43.20,0 --139.20,-43.20,11.96,0.00,1.00,-129.60,-48.00,0 --134.40,-48.00,12.12,0.00,1.00,-124.80,-48.00,0 --129.60,-48.00,12.28,0.00,1.00,-120.00,-52.80,0 --124.80,-52.80,12.44,0.00,1.00,-115.20,-52.80,0 --115.20,-52.80,12.61,0.00,1.00,-110.40,-57.60,0 --110.40,-52.80,12.77,0.00,1.00,-100.80,-57.60,0 --100.80,-57.60,12.93,0.00,1.00,-96.00,-57.60,0 --91.20,-57.60,13.09,0.00,1.00,-91.20,-57.60,0 --81.60,-57.60,13.25,0.00,1.00,-86.40,-57.60,0 --76.80,-57.60,13.41,0.00,1.00,-81.60,-57.60,0 --67.20,-52.80,13.58,0.00,1.00,-72.00,-52.80,0 --57.60,-52.80,13.74,0.00,1.00,-67.20,-52.80,0 --52.80,-48.00,13.90,0.00,1.00,-62.40,-48.00,0 --48.00,-48.00,14.06,0.00,1.00,-57.60,-43.20,0 --43.20,-43.20,14.22,0.00,1.00,-52.80,-43.20,0 --38.40,-43.20,14.38,0.00,1.00,-48.00,-38.40,0 --33.60,-38.40,14.55,0.00,1.00,-43.20,-33.60,0 --28.80,-33.60,14.71,0.00,1.00,-38.40,-33.60,0 --24.00,-28.80,14.87,0.00,1.00,-33.60,-28.80,0 --19.20,-28.80,15.03,0.00,1.00,-28.80,-24.00,0 --19.20,-24.00,15.19,0.00,1.00,-24.00,-19.20,0 --14.40,-19.20,15.35,0.00,1.00,-19.20,-14.40,0 --9.60,-14.40,15.52,0.00,1.00,-14.40,-14.40,0 --9.60,-9.60,15.68,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,15.84,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,16.00,0.00,1.00,-4.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,0.00,4.80,0 -4.80,4.80,15.84,0.00,1.00,4.80,9.60,0 -4.80,9.60,15.68,0.00,1.00,9.60,9.60,0 -9.60,9.60,15.52,0.00,1.00,9.60,14.40,0 -14.40,14.40,15.35,0.00,1.00,14.40,19.20,0 -14.40,19.20,15.19,0.00,1.00,19.20,24.00,0 -19.20,24.00,15.03,0.00,1.00,24.00,24.00,0 -24.00,24.00,14.87,0.00,1.00,28.80,28.80,0 -24.00,28.80,14.71,0.00,1.00,33.60,33.60,0 -28.80,33.60,14.55,0.00,1.00,38.40,38.40,0 -33.60,33.60,14.38,0.00,1.00,43.20,38.40,0 -38.40,38.40,14.22,0.00,1.00,48.00,43.20,0 -43.20,43.20,14.06,0.00,1.00,52.80,43.20,0 -48.00,43.20,13.90,0.00,1.00,57.60,48.00,0 -57.60,48.00,13.74,0.00,1.00,62.40,48.00,0 -62.40,48.00,13.58,0.00,1.00,67.20,52.80,0 -67.20,48.00,13.41,0.00,1.00,72.00,52.80,0 -76.80,52.80,13.25,0.00,1.00,81.60,52.80,0 -86.40,52.80,13.09,0.00,1.00,86.40,52.80,0 -91.20,52.80,12.93,0.00,1.00,91.20,52.80,0 -100.80,52.80,12.77,0.00,1.00,96.00,52.80,0 -105.60,48.00,12.61,0.00,1.00,105.60,48.00,0 -115.20,48.00,12.44,0.00,1.00,110.40,48.00,0 -120.00,48.00,12.28,0.00,1.00,115.20,48.00,0 -124.80,43.20,12.12,0.00,1.00,120.00,43.20,0 -134.40,43.20,11.96,0.00,1.00,124.80,43.20,0 -139.20,38.40,11.80,0.00,1.00,129.60,38.40,0 -144.00,38.40,11.64,0.00,1.00,134.40,33.60,0 -148.80,33.60,11.47,0.00,1.00,139.20,33.60,0 -153.60,28.80,11.31,0.00,1.00,144.00,28.80,0 -153.60,28.80,11.15,0.00,1.00,148.80,24.00,0 -158.40,24.00,10.99,0.00,1.00,153.60,19.20,0 -163.20,19.20,10.83,0.00,1.00,158.40,19.20,0 -168.00,14.40,10.67,0.00,1.00,163.20,14.40,0 -168.00,14.40,10.51,0.00,1.00,168.00,9.60,0 -172.80,9.60,10.34,0.00,1.00,172.80,4.80,0 -177.60,4.80,10.18,0.00,1.00,172.80,0.00,0 -177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,9.86,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,9.70,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,9.54,0.00,1.00,-172.80,-14.40,0 --168.00,-14.40,9.37,0.00,1.00,-168.00,-19.20,0 --168.00,-14.40,9.21,0.00,1.00,-163.20,-19.20,0 --163.20,-19.20,9.05,0.00,1.00,-158.40,-24.00,0 --158.40,-24.00,8.89,0.00,1.00,-153.60,-28.80,0 --153.60,-28.80,8.73,0.00,1.00,-148.80,-33.60,0 --153.60,-28.80,8.57,0.00,1.00,-144.00,-33.60,0 --148.80,-33.60,8.40,0.00,1.00,-139.20,-38.40,0 --144.00,-38.40,8.24,0.00,1.00,-134.40,-43.20,0 --139.20,-38.40,8.08,0.00,1.00,-129.60,-43.20,0 --134.40,-43.20,7.92,0.00,1.00,-124.80,-48.00,0 --124.80,-43.20,7.76,0.00,1.00,-120.00,-48.00,0 --120.00,-48.00,7.60,0.00,1.00,-115.20,-48.00,0 --115.20,-48.00,7.43,0.00,1.00,-110.40,-52.80,0 --105.60,-48.00,7.27,0.00,1.00,-105.60,-52.80,0 --100.80,-52.80,7.11,0.00,1.00,-96.00,-52.80,0 --91.20,-52.80,6.95,0.00,1.00,-91.20,-52.80,0 --86.40,-52.80,6.79,0.00,1.00,-86.40,-52.80,0 --76.80,-52.80,6.63,0.00,1.00,-81.60,-52.80,0 --67.20,-48.00,6.46,0.00,1.00,-72.00,-48.00,0 --62.40,-48.00,6.30,0.00,1.00,-67.20,-48.00,0 --57.60,-48.00,6.14,0.00,1.00,-62.40,-43.20,0 --48.00,-43.20,5.98,0.00,1.00,-57.60,-43.20,0 --43.20,-43.20,5.82,0.00,1.00,-52.80,-38.40,0 --38.40,-38.40,5.66,0.00,1.00,-48.00,-38.40,0 --33.60,-33.60,5.49,0.00,1.00,-43.20,-33.60,0 --28.80,-33.60,5.33,0.00,1.00,-38.40,-28.80,0 --24.00,-28.80,5.17,0.00,1.00,-33.60,-24.00,0 --24.00,-24.00,5.01,0.00,1.00,-28.80,-24.00,0 --19.20,-24.00,4.85,0.00,1.00,-24.00,-19.20,0 --14.40,-19.20,4.69,0.00,1.00,-19.20,-14.40,0 --14.40,-14.40,4.53,0.00,1.00,-14.40,-9.60,0 --9.60,-9.60,4.36,0.00,1.00,-9.60,-9.60,0 --4.80,-9.60,4.20,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,4.04,0.00,1.00,-4.80,0.00,0 -0.00,0.00,3.88,0.00,1.00,0.00,4.80,0 -4.80,4.80,3.72,0.00,1.00,4.80,4.80,0 -4.80,4.80,3.56,0.00,1.00,4.80,9.60,0 -9.60,9.60,3.39,0.00,1.00,9.60,14.40,0 -14.40,14.40,3.23,0.00,1.00,14.40,19.20,0 -19.20,19.20,3.07,0.00,1.00,19.20,19.20,0 -19.20,19.20,2.91,0.00,1.00,24.00,24.00,0 -24.00,24.00,2.75,0.00,1.00,24.00,28.80,0 -28.80,28.80,2.59,0.00,1.00,28.80,28.80,0 -33.60,28.80,2.42,0.00,1.00,33.60,33.60,0 -38.40,33.60,2.26,0.00,1.00,38.40,38.40,0 -43.20,33.60,2.10,0.00,1.00,43.20,38.40,0 -48.00,38.40,1.94,0.00,1.00,48.00,43.20,0 -52.80,38.40,1.78,0.00,1.00,52.80,43.20,0 -57.60,43.20,1.62,0.00,1.00,62.40,43.20,0 -62.40,43.20,1.45,0.00,1.00,67.20,48.00,0 -72.00,43.20,1.29,0.00,1.00,72.00,48.00,0 -76.80,48.00,1.13,0.00,1.00,76.80,48.00,0 -86.40,48.00,0.97,0.00,1.00,86.40,48.00,0 -91.20,48.00,0.81,0.00,1.00,91.20,48.00,0 -100.80,48.00,0.65,0.00,1.00,96.00,48.00,0 -105.60,48.00,0.48,0.00,1.00,105.60,48.00,0 -110.40,43.20,0.32,0.00,1.00,110.40,43.20,0 -120.00,43.20,0.16,0.00,1.00,115.20,43.20,0 -124.80,43.20,0.00,0.00,1.00,124.80,38.40,0 -129.60,38.40,0.00,0.00,1.00,129.60,38.40,0 -134.40,38.40,0.04,0.00,1.00,134.40,33.60,0 -139.20,33.60,0.08,0.00,1.00,139.20,33.60,0 -144.00,33.60,0.12,0.00,1.00,144.00,28.80,0 -148.80,28.80,0.16,0.00,1.00,148.80,24.00,0 -153.60,24.00,0.20,0.00,1.00,153.60,24.00,0 -158.40,24.00,0.24,0.00,1.00,158.40,19.20,0 -163.20,19.20,0.28,0.00,1.00,158.40,14.40,0 -163.20,14.40,0.32,0.00,1.00,163.20,14.40,0 -168.00,14.40,0.36,0.00,1.00,168.00,9.60,0 -172.80,9.60,0.40,0.00,1.00,172.80,4.80,0 -172.80,4.80,0.44,0.00,1.00,172.80,0.00,0 -177.60,0.00,0.48,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,0.52,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,0.56,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,0.60,0.00,1.00,-172.80,-14.40,0 --168.00,-14.40,0.64,0.00,1.00,-168.00,-14.40,0 --163.20,-14.40,0.68,0.00,1.00,-163.20,-19.20,0 --163.20,-19.20,0.72,0.00,1.00,-158.40,-24.00,0 --158.40,-24.00,0.76,0.00,1.00,-158.40,-24.00,0 --153.60,-24.00,0.80,0.00,1.00,-153.60,-28.80,0 --148.80,-28.80,0.84,0.00,1.00,-148.80,-33.60,0 --144.00,-33.60,0.88,0.00,1.00,-144.00,-33.60,0 --139.20,-33.60,0.92,0.00,1.00,-139.20,-38.40,0 --134.40,-38.40,0.96,0.00,1.00,-134.40,-38.40,0 --129.60,-38.40,1.00,0.00,1.00,-129.60,-43.20,0 --124.80,-43.20,1.04,0.00,1.00,-124.80,-43.20,0 --120.00,-43.20,1.08,0.00,1.00,-115.20,-48.00,0 --110.40,-43.20,1.12,0.00,1.00,-110.40,-48.00,0 --105.60,-48.00,1.16,0.00,1.00,-105.60,-48.00,0 --100.80,-48.00,1.20,0.00,1.00,-96.00,-48.00,0 --91.20,-48.00,1.24,0.00,1.00,-91.20,-48.00,0 --86.40,-48.00,1.28,0.00,1.00,-86.40,-48.00,0 --76.80,-48.00,1.32,0.00,1.00,-76.80,-48.00,0 --72.00,-43.20,1.36,0.00,1.00,-72.00,-43.20,0 --62.40,-43.20,1.40,0.00,1.00,-67.20,-43.20,0 --57.60,-43.20,1.44,0.00,1.00,-62.40,-43.20,0 --52.80,-38.40,1.48,0.00,1.00,-52.80,-38.40,0 --48.00,-38.40,1.52,0.00,1.00,-48.00,-38.40,0 --43.20,-33.60,1.56,0.00,1.00,-43.20,-33.60,0 --38.40,-33.60,1.60,0.00,1.00,-38.40,-28.80,0 --33.60,-28.80,1.64,0.00,1.00,-33.60,-28.80,0 --28.80,-28.80,1.68,0.00,1.00,-28.80,-24.00,0 --24.00,-24.00,1.72,0.00,1.00,-24.00,-19.20,0 --19.20,-19.20,1.76,0.00,1.00,-24.00,-19.20,0 --19.20,-19.20,1.80,0.00,1.00,-19.20,-14.40,0 --14.40,-14.40,1.84,0.00,1.00,-14.40,-9.60,0 --9.60,-9.60,1.88,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,1.92,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,1.96,0.00,1.00,-4.80,0.00,0 -0.00,0.00,2.01,0.00,1.00,0.00,4.80,0 -4.80,4.80,2.05,0.00,1.00,4.80,4.80,0 -4.80,4.80,2.09,0.00,1.00,4.80,9.60,0 -9.60,9.60,2.13,0.00,1.00,9.60,14.40,0 -14.40,14.40,2.17,0.00,1.00,14.40,14.40,0 -19.20,14.40,2.21,0.00,1.00,14.40,19.20,0 -24.00,19.20,2.25,0.00,1.00,19.20,24.00,0 -24.00,24.00,2.29,0.00,1.00,24.00,24.00,0 -28.80,24.00,2.33,0.00,1.00,28.80,28.80,0 -33.60,28.80,2.37,0.00,1.00,33.60,28.80,0 -38.40,28.80,2.41,0.00,1.00,38.40,33.60,0 -43.20,33.60,2.45,0.00,1.00,43.20,33.60,0 -48.00,33.60,2.49,0.00,1.00,48.00,38.40,0 -52.80,38.40,2.53,0.00,1.00,52.80,38.40,0 -62.40,38.40,2.57,0.00,1.00,57.60,38.40,0 -67.20,38.40,2.61,0.00,1.00,62.40,43.20,0 -72.00,38.40,2.65,0.00,1.00,72.00,43.20,0 -76.80,43.20,2.69,0.00,1.00,76.80,43.20,0 -86.40,43.20,2.73,0.00,1.00,86.40,43.20,0 -91.20,43.20,2.77,0.00,1.00,91.20,43.20,0 -96.00,43.20,2.81,0.00,1.00,100.80,43.20,0 -105.60,43.20,2.85,0.00,1.00,105.60,43.20,0 -110.40,38.40,2.89,0.00,1.00,110.40,38.40,0 -115.20,38.40,2.93,0.00,1.00,120.00,38.40,0 -120.00,38.40,2.97,0.00,1.00,124.80,38.40,0 -129.60,33.60,3.01,0.00,1.00,129.60,33.60,0 -134.40,33.60,3.05,0.00,1.00,134.40,33.60,0 -139.20,28.80,3.09,0.00,1.00,139.20,28.80,0 -144.00,28.80,3.13,0.00,1.00,144.00,28.80,0 -148.80,24.00,3.17,0.00,1.00,148.80,24.00,0 -153.60,24.00,3.21,0.00,1.00,153.60,19.20,0 -153.60,19.20,3.25,0.00,1.00,158.40,19.20,0 -158.40,19.20,3.29,0.00,1.00,163.20,14.40,0 -163.20,14.40,3.33,0.00,1.00,163.20,9.60,0 -168.00,9.60,3.37,0.00,1.00,168.00,9.60,0 -172.80,9.60,3.41,0.00,1.00,172.80,4.80,0 -172.80,4.80,3.45,0.00,1.00,172.80,0.00,0 -177.60,0.00,3.49,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,3.53,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,3.57,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,3.61,0.00,1.00,-172.80,-9.60,0 --168.00,-9.60,3.65,0.00,1.00,-168.00,-14.40,0 --163.20,-14.40,3.69,0.00,1.00,-163.20,-19.20,0 --158.40,-19.20,3.73,0.00,1.00,-163.20,-19.20,0 --153.60,-19.20,3.77,0.00,1.00,-158.40,-24.00,0 --153.60,-24.00,3.81,0.00,1.00,-153.60,-28.80,0 --148.80,-24.00,3.85,0.00,1.00,-148.80,-28.80,0 --144.00,-28.80,3.89,0.00,1.00,-144.00,-33.60,0 --139.20,-28.80,3.93,0.00,1.00,-139.20,-33.60,0 --134.40,-33.60,3.97,0.00,1.00,-134.40,-38.40,0 --129.60,-33.60,4.01,0.00,1.00,-129.60,-38.40,0 --120.00,-38.40,4.05,0.00,1.00,-124.80,-38.40,0 --115.20,-38.40,4.09,0.00,1.00,-120.00,-43.20,0 --110.40,-38.40,4.13,0.00,1.00,-110.40,-43.20,0 --105.60,-43.20,4.17,0.00,1.00,-105.60,-43.20,0 --96.00,-43.20,4.21,0.00,1.00,-100.80,-43.20,0 --91.20,-43.20,4.25,0.00,1.00,-91.20,-43.20,0 --86.40,-43.20,4.29,0.00,1.00,-86.40,-43.20,0 --76.80,-43.20,4.33,0.00,1.00,-76.80,-43.20,0 --72.00,-38.40,4.37,0.00,1.00,-72.00,-38.40,0 --67.20,-38.40,4.41,0.00,1.00,-62.40,-38.40,0 --62.40,-38.40,4.45,0.00,1.00,-57.60,-38.40,0 --52.80,-38.40,4.49,0.00,1.00,-52.80,-33.60,0 --48.00,-33.60,4.53,0.00,1.00,-48.00,-33.60,0 --43.20,-33.60,4.57,0.00,1.00,-43.20,-28.80,0 --38.40,-28.80,4.61,0.00,1.00,-38.40,-28.80,0 --33.60,-28.80,4.65,0.00,1.00,-33.60,-24.00,0 --28.80,-24.00,4.69,0.00,1.00,-28.80,-24.00,0 --24.00,-24.00,4.73,0.00,1.00,-24.00,-19.20,0 --24.00,-19.20,4.77,0.00,1.00,-19.20,-14.40,0 --19.20,-14.40,4.81,0.00,1.00,-14.40,-14.40,0 --14.40,-14.40,4.85,0.00,1.00,-14.40,-9.60,0 --9.60,-9.60,4.89,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,4.93,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,4.97,0.00,1.00,-4.80,0.00,0 -0.00,0.00,5.01,0.00,1.00,0.00,4.80,0 -4.80,4.80,5.05,0.00,1.00,4.80,4.80,0 -9.60,4.80,5.09,0.00,1.00,4.80,9.60,0 -9.60,9.60,5.13,0.00,1.00,9.60,9.60,0 -14.40,9.60,5.17,0.00,1.00,9.60,14.40,0 -19.20,14.40,5.21,0.00,1.00,14.40,19.20,0 -24.00,19.20,5.25,0.00,1.00,19.20,19.20,0 -28.80,19.20,5.29,0.00,1.00,24.00,24.00,0 -33.60,24.00,5.33,0.00,1.00,24.00,24.00,0 -38.40,24.00,5.37,0.00,1.00,28.80,28.80,0 -43.20,28.80,5.41,0.00,1.00,33.60,28.80,0 -48.00,28.80,5.45,0.00,1.00,38.40,33.60,0 -52.80,28.80,5.49,0.00,1.00,43.20,33.60,0 -57.60,33.60,5.53,0.00,1.00,48.00,33.60,0 -62.40,33.60,5.57,0.00,1.00,52.80,38.40,0 -67.20,33.60,5.61,0.00,1.00,62.40,38.40,0 -72.00,38.40,5.65,0.00,1.00,67.20,38.40,0 -81.60,38.40,5.69,0.00,1.00,76.80,38.40,0 -86.40,38.40,5.73,0.00,1.00,86.40,38.40,0 -91.20,38.40,5.77,0.00,1.00,91.20,38.40,0 -96.00,38.40,5.81,0.00,1.00,100.80,38.40,0 -105.60,38.40,5.85,0.00,1.00,105.60,38.40,0 -110.40,33.60,5.89,0.00,1.00,115.20,33.60,0 -115.20,33.60,5.93,0.00,1.00,120.00,33.60,0 -120.00,33.60,5.97,0.00,1.00,129.60,33.60,0 -124.80,33.60,6.02,0.00,1.00,134.40,28.80,0 -129.60,28.80,6.06,0.00,1.00,139.20,28.80,0 -134.40,28.80,6.10,0.00,1.00,144.00,24.00,0 -139.20,24.00,6.14,0.00,1.00,148.80,24.00,0 -144.00,24.00,6.18,0.00,1.00,153.60,19.20,0 -148.80,19.20,6.22,0.00,1.00,158.40,19.20,0 -153.60,19.20,6.26,0.00,1.00,158.40,14.40,0 -158.40,14.40,6.30,0.00,1.00,163.20,14.40,0 -163.20,14.40,6.34,0.00,1.00,168.00,9.60,0 -168.00,9.60,6.38,0.00,1.00,168.00,9.60,0 -168.00,9.60,6.42,0.00,1.00,172.80,4.80,0 -172.80,4.80,6.46,0.00,1.00,177.60,0.00,0 -177.60,0.00,6.50,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,6.54,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,6.58,0.00,1.00,-177.60,-9.60,0 --168.00,-9.60,6.62,0.00,1.00,-172.80,-9.60,0 --168.00,-9.60,6.66,0.00,1.00,-168.00,-14.40,0 --163.20,-14.40,6.70,0.00,1.00,-168.00,-14.40,0 --158.40,-14.40,6.74,0.00,1.00,-163.20,-19.20,0 --153.60,-19.20,6.78,0.00,1.00,-158.40,-19.20,0 --148.80,-19.20,6.82,0.00,1.00,-158.40,-24.00,0 --144.00,-24.00,6.86,0.00,1.00,-153.60,-24.00,0 --139.20,-24.00,6.90,0.00,1.00,-148.80,-28.80,0 --134.40,-28.80,6.94,0.00,1.00,-144.00,-28.80,0 --129.60,-28.80,6.98,0.00,1.00,-139.20,-33.60,0 --124.80,-33.60,7.02,0.00,1.00,-134.40,-33.60,0 --120.00,-33.60,7.06,0.00,1.00,-129.60,-33.60,0 --115.20,-33.60,7.10,0.00,1.00,-120.00,-38.40,0 --110.40,-33.60,7.14,0.00,1.00,-115.20,-38.40,0 --105.60,-38.40,7.18,0.00,1.00,-105.60,-38.40,0 --96.00,-38.40,7.22,0.00,1.00,-100.80,-38.40,0 --91.20,-38.40,7.26,0.00,1.00,-91.20,-38.40,0 --86.40,-38.40,7.30,0.00,1.00,-86.40,-38.40,0 --81.60,-38.40,7.34,0.00,1.00,-76.80,-38.40,0 --72.00,-38.40,7.38,0.00,1.00,-67.20,-38.40,0 --67.20,-33.60,7.42,0.00,1.00,-62.40,-33.60,0 --62.40,-33.60,7.46,0.00,1.00,-52.80,-33.60,0 --57.60,-33.60,7.50,0.00,1.00,-48.00,-33.60,0 --52.80,-28.80,7.54,0.00,1.00,-43.20,-28.80,0 --48.00,-28.80,7.58,0.00,1.00,-38.40,-28.80,0 --43.20,-28.80,7.62,0.00,1.00,-33.60,-24.00,0 --38.40,-24.00,7.66,0.00,1.00,-28.80,-24.00,0 --33.60,-24.00,7.70,0.00,1.00,-24.00,-19.20,0 --28.80,-19.20,7.74,0.00,1.00,-24.00,-19.20,0 --24.00,-19.20,7.78,0.00,1.00,-19.20,-14.40,0 --19.20,-14.40,7.82,0.00,1.00,-14.40,-9.60,0 --14.40,-9.60,7.86,0.00,1.00,-9.60,-9.60,0 --9.60,-9.60,7.90,0.00,1.00,-9.60,-4.80,0 --9.60,-4.80,7.94,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,7.98,0.00,1.00,-4.80,0.00,0 -0.00,0.00,8.02,0.00,1.00,0.00,4.80,0 -4.80,4.80,8.06,0.00,1.00,4.80,4.80,0 -9.60,4.80,8.10,0.00,1.00,4.80,9.60,0 -14.40,9.60,8.14,0.00,1.00,9.60,9.60,0 -14.40,9.60,8.18,0.00,1.00,9.60,14.40,0 -19.20,14.40,8.22,0.00,1.00,14.40,14.40,0 -24.00,14.40,8.26,0.00,1.00,14.40,19.20,0 -28.80,19.20,8.30,0.00,1.00,19.20,19.20,0 -33.60,19.20,8.34,0.00,1.00,24.00,24.00,0 -38.40,19.20,8.38,0.00,1.00,28.80,24.00,0 -43.20,24.00,8.42,0.00,1.00,28.80,24.00,0 -48.00,24.00,8.46,0.00,1.00,33.60,28.80,0 -52.80,28.80,8.50,0.00,1.00,38.40,28.80,0 -57.60,28.80,8.54,0.00,1.00,48.00,28.80,0 -62.40,28.80,8.58,0.00,1.00,52.80,33.60,0 -67.20,28.80,8.62,0.00,1.00,57.60,33.60,0 -76.80,33.60,8.66,0.00,1.00,67.20,33.60,0 -81.60,33.60,8.70,0.00,1.00,76.80,33.60,0 -86.40,33.60,8.74,0.00,1.00,81.60,33.60,0 -91.20,33.60,8.78,0.00,1.00,91.20,33.60,0 -96.00,33.60,8.82,0.00,1.00,100.80,33.60,0 -100.80,33.60,8.86,0.00,1.00,110.40,33.60,0 -110.40,28.80,8.90,0.00,1.00,115.20,33.60,0 -115.20,28.80,8.94,0.00,1.00,124.80,28.80,0 -120.00,28.80,8.98,0.00,1.00,129.60,28.80,0 -124.80,28.80,9.02,0.00,1.00,139.20,28.80,0 -129.60,24.00,9.06,0.00,1.00,144.00,24.00,0 -134.40,24.00,9.10,0.00,1.00,148.80,24.00,0 -139.20,24.00,9.14,0.00,1.00,153.60,19.20,0 -144.00,19.20,9.18,0.00,1.00,153.60,19.20,0 -148.80,19.20,9.22,0.00,1.00,158.40,14.40,0 -153.60,14.40,9.26,0.00,1.00,163.20,14.40,0 -158.40,14.40,9.30,0.00,1.00,163.20,9.60,0 -163.20,9.60,9.34,0.00,1.00,168.00,9.60,0 -168.00,9.60,9.38,0.00,1.00,172.80,4.80,0 -168.00,4.80,9.42,0.00,1.00,172.80,4.80,0 -172.80,4.80,9.46,0.00,1.00,177.60,0.00,0 -177.60,0.00,9.50,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,9.54,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,9.58,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,9.62,0.00,1.00,-172.80,-9.60,0 --168.00,-9.60,9.66,0.00,1.00,-172.80,-9.60,0 --163.20,-9.60,9.70,0.00,1.00,-168.00,-14.40,0 --158.40,-14.40,9.74,0.00,1.00,-163.20,-14.40,0 --153.60,-14.40,9.78,0.00,1.00,-163.20,-19.20,0 --148.80,-19.20,9.82,0.00,1.00,-158.40,-19.20,0 --144.00,-19.20,9.86,0.00,1.00,-153.60,-24.00,0 --139.20,-24.00,9.90,0.00,1.00,-153.60,-24.00,0 --134.40,-24.00,9.94,0.00,1.00,-148.80,-28.80,0 --129.60,-24.00,9.98,0.00,1.00,-144.00,-28.80,0 --124.80,-28.80,10.03,0.00,1.00,-139.20,-28.80,0 --120.00,-28.80,10.07,0.00,1.00,-129.60,-33.60,0 --115.20,-28.80,10.11,0.00,1.00,-124.80,-33.60,0 --110.40,-28.80,10.15,0.00,1.00,-115.20,-33.60,0 --100.80,-33.60,10.19,0.00,1.00,-110.40,-33.60,0 --96.00,-33.60,10.23,0.00,1.00,-100.80,-33.60,0 --91.20,-33.60,10.27,0.00,1.00,-91.20,-33.60,0 --86.40,-33.60,10.31,0.00,1.00,-81.60,-33.60,0 --81.60,-33.60,10.35,0.00,1.00,-76.80,-33.60,0 --76.80,-33.60,10.39,0.00,1.00,-67.20,-33.60,0 --67.20,-28.80,10.43,0.00,1.00,-57.60,-28.80,0 --62.40,-28.80,10.47,0.00,1.00,-52.80,-28.80,0 --57.60,-28.80,10.51,0.00,1.00,-48.00,-28.80,0 --52.80,-28.80,10.55,0.00,1.00,-38.40,-24.00,0 --48.00,-24.00,10.59,0.00,1.00,-33.60,-24.00,0 --43.20,-24.00,10.63,0.00,1.00,-28.80,-24.00,0 --38.40,-19.20,10.67,0.00,1.00,-28.80,-19.20,0 --33.60,-19.20,10.71,0.00,1.00,-24.00,-19.20,0 --28.80,-19.20,10.75,0.00,1.00,-19.20,-14.40,0 --24.00,-14.40,10.79,0.00,1.00,-14.40,-14.40,0 --19.20,-14.40,10.83,0.00,1.00,-14.40,-9.60,0 --14.40,-9.60,10.87,0.00,1.00,-9.60,-9.60,0 --14.40,-9.60,10.91,0.00,1.00,-9.60,-4.80,0 --9.60,-4.80,10.95,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,10.99,0.00,1.00,-4.80,0.00,0 -0.00,0.00,11.03,0.00,1.00,0.00,0.00,0 -4.80,0.00,11.07,0.00,1.00,0.00,4.80,0 -9.60,4.80,11.11,0.00,1.00,4.80,4.80,0 -14.40,4.80,11.15,0.00,1.00,4.80,9.60,0 -19.20,9.60,11.19,0.00,1.00,9.60,9.60,0 -19.20,9.60,11.23,0.00,1.00,9.60,14.40,0 -24.00,14.40,11.27,0.00,1.00,14.40,14.40,0 -28.80,14.40,11.31,0.00,1.00,19.20,19.20,0 -33.60,14.40,11.35,0.00,1.00,19.20,19.20,0 -38.40,19.20,11.39,0.00,1.00,24.00,19.20,0 -43.20,19.20,11.43,0.00,1.00,28.80,24.00,0 -48.00,24.00,11.47,0.00,1.00,33.60,24.00,0 -52.80,24.00,11.51,0.00,1.00,38.40,24.00,0 -57.60,24.00,11.55,0.00,1.00,43.20,24.00,0 -62.40,24.00,11.59,0.00,1.00,48.00,28.80,0 -72.00,24.00,11.63,0.00,1.00,52.80,28.80,0 -76.80,28.80,11.67,0.00,1.00,62.40,28.80,0 -81.60,28.80,11.71,0.00,1.00,72.00,28.80,0 -86.40,28.80,11.75,0.00,1.00,81.60,28.80,0 -91.20,28.80,11.79,0.00,1.00,91.20,28.80,0 -96.00,28.80,11.83,0.00,1.00,100.80,28.80,0 -100.80,28.80,11.87,0.00,1.00,110.40,28.80,0 -105.60,28.80,11.91,0.00,1.00,120.00,28.80,0 -110.40,24.00,11.95,0.00,1.00,129.60,24.00,0 -120.00,24.00,11.99,0.00,1.00,134.40,24.00,0 -124.80,24.00,12.03,0.00,1.00,139.20,24.00,0 -129.60,24.00,12.07,0.00,1.00,144.00,24.00,0 -134.40,19.20,12.11,0.00,1.00,148.80,19.20,0 -139.20,19.20,12.15,0.00,1.00,153.60,19.20,0 -144.00,19.20,12.19,0.00,1.00,158.40,14.40,0 -148.80,14.40,12.23,0.00,1.00,163.20,14.40,0 -153.60,14.40,12.27,0.00,1.00,163.20,14.40,0 -158.40,9.60,12.31,0.00,1.00,168.00,9.60,0 -158.40,9.60,12.35,0.00,1.00,168.00,9.60,0 -163.20,9.60,12.39,0.00,1.00,172.80,4.80,0 -168.00,4.80,12.43,0.00,1.00,172.80,4.80,0 -172.80,4.80,12.47,0.00,1.00,177.60,0.00,0 -177.60,0.00,12.51,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,12.55,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,12.59,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,12.63,0.00,1.00,-172.80,-9.60,0 --163.20,-9.60,12.67,0.00,1.00,-172.80,-9.60,0 --158.40,-9.60,12.71,0.00,1.00,-168.00,-14.40,0 --158.40,-9.60,12.75,0.00,1.00,-168.00,-14.40,0 --153.60,-14.40,12.79,0.00,1.00,-163.20,-14.40,0 --148.80,-14.40,12.83,0.00,1.00,-163.20,-19.20,0 --144.00,-19.20,12.87,0.00,1.00,-158.40,-19.20,0 --139.20,-19.20,12.91,0.00,1.00,-153.60,-24.00,0 --134.40,-19.20,12.95,0.00,1.00,-148.80,-24.00,0 --129.60,-24.00,12.99,0.00,1.00,-144.00,-24.00,0 --124.80,-24.00,13.03,0.00,1.00,-139.20,-24.00,0 --120.00,-24.00,13.07,0.00,1.00,-134.40,-28.80,0 --110.40,-24.00,13.11,0.00,1.00,-129.60,-28.80,0 --105.60,-28.80,13.15,0.00,1.00,-120.00,-28.80,0 --100.80,-28.80,13.19,0.00,1.00,-110.40,-28.80,0 --96.00,-28.80,13.23,0.00,1.00,-100.80,-28.80,0 --91.20,-28.80,13.27,0.00,1.00,-91.20,-28.80,0 --86.40,-28.80,13.31,0.00,1.00,-81.60,-28.80,0 --81.60,-28.80,13.35,0.00,1.00,-72.00,-28.80,0 --76.80,-28.80,13.39,0.00,1.00,-62.40,-28.80,0 --72.00,-24.00,13.43,0.00,1.00,-52.80,-24.00,0 --62.40,-24.00,13.47,0.00,1.00,-48.00,-24.00,0 --57.60,-24.00,13.51,0.00,1.00,-43.20,-24.00,0 --52.80,-24.00,13.55,0.00,1.00,-38.40,-24.00,0 --48.00,-24.00,13.59,0.00,1.00,-33.60,-19.20,0 --43.20,-19.20,13.63,0.00,1.00,-28.80,-19.20,0 --38.40,-19.20,13.67,0.00,1.00,-24.00,-19.20,0 --33.60,-14.40,13.71,0.00,1.00,-19.20,-14.40,0 --28.80,-14.40,13.75,0.00,1.00,-19.20,-14.40,0 --24.00,-14.40,13.79,0.00,1.00,-14.40,-9.60,0 --19.20,-9.60,13.83,0.00,1.00,-9.60,-9.60,0 --19.20,-9.60,13.87,0.00,1.00,-9.60,-4.80,0 --14.40,-4.80,13.91,0.00,1.00,-4.80,-4.80,0 --9.60,-4.80,13.95,0.00,1.00,-4.80,-0.00,0 --4.80,-0.00,13.99,0.00,1.00,-0.00,0.00,0 -0.00,0.00,14.04,0.00,1.00,0.00,0.00,0 -4.80,0.00,14.08,0.00,1.00,0.00,4.80,0 -9.60,4.80,14.12,0.00,1.00,4.80,4.80,0 -14.40,4.80,14.16,0.00,1.00,4.80,9.60,0 -19.20,9.60,14.20,0.00,1.00,9.60,9.60,0 -24.00,9.60,14.24,0.00,1.00,9.60,9.60,0 -28.80,9.60,14.28,0.00,1.00,14.40,14.40,0 -33.60,14.40,14.32,0.00,1.00,14.40,14.40,0 -38.40,14.40,14.36,0.00,1.00,19.20,14.40,0 -43.20,14.40,14.40,0.00,1.00,19.20,19.20,0 -48.00,14.40,14.44,0.00,1.00,24.00,19.20,0 -52.80,19.20,14.48,0.00,1.00,28.80,19.20,0 -57.60,19.20,14.52,0.00,1.00,33.60,19.20,0 -62.40,19.20,14.56,0.00,1.00,38.40,24.00,0 -67.20,19.20,14.60,0.00,1.00,43.20,24.00,0 -72.00,24.00,14.64,0.00,1.00,48.00,24.00,0 -76.80,24.00,14.68,0.00,1.00,57.60,24.00,0 -81.60,24.00,14.72,0.00,1.00,67.20,24.00,0 -86.40,24.00,14.76,0.00,1.00,81.60,24.00,0 -91.20,24.00,14.80,0.00,1.00,91.20,24.00,0 -96.00,24.00,14.84,0.00,1.00,105.60,24.00,0 -100.80,24.00,14.88,0.00,1.00,115.20,24.00,0 -105.60,24.00,14.92,0.00,1.00,124.80,24.00,0 -110.40,19.20,14.96,0.00,1.00,134.40,19.20,0 -115.20,19.20,15.00,0.00,1.00,139.20,19.20,0 -120.00,19.20,15.04,0.00,1.00,144.00,19.20,0 -124.80,19.20,15.08,0.00,1.00,148.80,19.20,0 -129.60,19.20,15.12,0.00,1.00,153.60,19.20,0 -134.40,14.40,15.16,0.00,1.00,158.40,14.40,0 -139.20,14.40,15.20,0.00,1.00,163.20,14.40,0 -144.00,14.40,15.24,0.00,1.00,163.20,14.40,0 -148.80,9.60,15.28,0.00,1.00,168.00,9.60,0 -153.60,9.60,15.32,0.00,1.00,168.00,9.60,0 -158.40,9.60,15.36,0.00,1.00,172.80,4.80,0 -163.20,4.80,15.40,0.00,1.00,172.80,4.80,0 -168.00,4.80,15.44,0.00,1.00,177.60,4.80,0 -172.80,4.80,15.48,0.00,1.00,177.60,0.00,0 -177.60,0.00,15.52,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,15.56,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,15.60,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,15.64,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,15.68,0.00,1.00,-172.80,-9.60,0 --158.40,-9.60,15.72,0.00,1.00,-172.80,-9.60,0 --153.60,-9.60,15.76,0.00,1.00,-168.00,-14.40,0 --148.80,-9.60,15.80,0.00,1.00,-168.00,-14.40,0 --144.00,-14.40,15.84,0.00,1.00,-163.20,-14.40,0 --139.20,-14.40,15.88,0.00,1.00,-163.20,-19.20,0 --134.40,-14.40,15.92,0.00,1.00,-158.40,-19.20,0 --129.60,-19.20,15.96,0.00,1.00,-153.60,-19.20,0 --124.80,-19.20,16.00,0.00,1.00,-148.80,-19.20,0 --120.00,-19.20,16.00,0.00,1.00,-144.00,-19.20,0 --115.20,-19.20,15.96,0.00,1.00,-139.20,-24.00,0 --110.40,-19.20,15.92,0.00,1.00,-134.40,-24.00,0 --105.60,-24.00,15.88,0.00,1.00,-124.80,-24.00,0 --100.80,-24.00,15.84,0.00,1.00,-115.20,-24.00,0 --96.00,-24.00,15.80,0.00,1.00,-105.60,-24.00,0 --91.20,-24.00,15.76,0.00,1.00,-91.20,-24.00,0 --86.40,-24.00,15.72,0.00,1.00,-81.60,-24.00,0 --81.60,-24.00,15.68,0.00,1.00,-67.20,-24.00,0 --76.80,-24.00,15.64,0.00,1.00,-57.60,-24.00,0 --72.00,-24.00,15.60,0.00,1.00,-48.00,-24.00,0 --67.20,-19.20,15.56,0.00,1.00,-43.20,-19.20,0 --62.40,-19.20,15.52,0.00,1.00,-38.40,-19.20,0 --57.60,-19.20,15.48,0.00,1.00,-33.60,-19.20,0 --52.80,-19.20,15.44,0.00,1.00,-28.80,-19.20,0 --48.00,-14.40,15.40,0.00,1.00,-24.00,-14.40,0 --43.20,-14.40,15.36,0.00,1.00,-19.20,-14.40,0 --38.40,-14.40,15.32,0.00,1.00,-19.20,-14.40,0 --33.60,-14.40,15.28,0.00,1.00,-14.40,-9.60,0 --28.80,-9.60,15.24,0.00,1.00,-14.40,-9.60,0 --24.00,-9.60,15.20,0.00,1.00,-9.60,-9.60,0 --19.20,-9.60,15.16,0.00,1.00,-9.60,-4.80,0 --14.40,-4.80,15.12,0.00,1.00,-4.80,-4.80,0 --9.60,-4.80,15.08,0.00,1.00,-4.80,-0.00,0 --4.80,-0.00,15.04,0.00,1.00,-0.00,0.00,0 -0.00,0.00,15.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,14.96,0.00,1.00,0.00,4.80,0 -9.60,4.80,14.92,0.00,1.00,4.80,4.80,0 -14.40,4.80,14.88,0.00,1.00,4.80,4.80,0 -19.20,4.80,14.84,0.00,1.00,4.80,9.60,0 -24.00,9.60,14.80,0.00,1.00,9.60,9.60,0 -28.80,9.60,14.76,0.00,1.00,9.60,9.60,0 -33.60,9.60,14.72,0.00,1.00,9.60,9.60,0 -38.40,9.60,14.68,0.00,1.00,14.40,14.40,0 -43.20,14.40,14.64,0.00,1.00,14.40,14.40,0 -48.00,14.40,14.60,0.00,1.00,19.20,14.40,0 -52.80,14.40,14.56,0.00,1.00,24.00,14.40,0 -57.60,14.40,14.52,0.00,1.00,24.00,19.20,0 -62.40,14.40,14.48,0.00,1.00,28.80,19.20,0 -67.20,14.40,14.44,0.00,1.00,38.40,19.20,0 -72.00,19.20,14.40,0.00,1.00,43.20,19.20,0 -76.80,19.20,14.36,0.00,1.00,52.80,19.20,0 -81.60,19.20,14.32,0.00,1.00,62.40,19.20,0 -86.40,19.20,14.28,0.00,1.00,76.80,19.20,0 -91.20,19.20,14.24,0.00,1.00,96.00,19.20,0 -96.00,19.20,14.20,0.00,1.00,110.40,19.20,0 -100.80,19.20,14.16,0.00,1.00,120.00,19.20,0 -105.60,19.20,14.12,0.00,1.00,134.40,19.20,0 -110.40,19.20,14.08,0.00,1.00,139.20,19.20,0 -115.20,14.40,14.04,0.00,1.00,148.80,14.40,0 -120.00,14.40,13.99,0.00,1.00,153.60,14.40,0 -124.80,14.40,13.95,0.00,1.00,158.40,14.40,0 -129.60,14.40,13.91,0.00,1.00,158.40,14.40,0 -134.40,14.40,13.87,0.00,1.00,163.20,14.40,0 -139.20,9.60,13.83,0.00,1.00,163.20,9.60,0 -144.00,9.60,13.79,0.00,1.00,168.00,9.60,0 -148.80,9.60,13.75,0.00,1.00,168.00,9.60,0 -153.60,9.60,13.71,0.00,1.00,172.80,4.80,0 -158.40,4.80,13.67,0.00,1.00,172.80,4.80,0 -163.20,4.80,13.63,0.00,1.00,172.80,4.80,0 -168.00,4.80,13.59,0.00,1.00,177.60,0.00,0 -172.80,0.00,13.55,0.00,1.00,177.60,0.00,0 -177.60,0.00,13.51,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,13.47,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,13.43,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,13.39,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,13.35,0.00,1.00,-172.80,-4.80,0 --158.40,-4.80,13.31,0.00,1.00,-172.80,-9.60,0 --153.60,-9.60,13.27,0.00,1.00,-172.80,-9.60,0 --148.80,-9.60,13.23,0.00,1.00,-168.00,-9.60,0 --144.00,-9.60,13.19,0.00,1.00,-168.00,-14.40,0 --139.20,-9.60,13.15,0.00,1.00,-163.20,-14.40,0 --134.40,-14.40,13.11,0.00,1.00,-163.20,-14.40,0 --129.60,-14.40,13.07,0.00,1.00,-158.40,-14.40,0 --124.80,-14.40,13.03,0.00,1.00,-158.40,-14.40,0 --120.00,-14.40,12.99,0.00,1.00,-153.60,-19.20,0 --115.20,-14.40,12.95,0.00,1.00,-148.80,-19.20,0 --110.40,-19.20,12.91,0.00,1.00,-139.20,-19.20,0 --105.60,-19.20,12.87,0.00,1.00,-134.40,-19.20,0 --100.80,-19.20,12.83,0.00,1.00,-120.00,-19.20,0 --96.00,-19.20,12.79,0.00,1.00,-110.40,-19.20,0 --91.20,-19.20,12.75,0.00,1.00,-96.00,-19.20,0 --86.40,-19.20,12.71,0.00,1.00,-76.80,-19.20,0 --81.60,-19.20,12.67,0.00,1.00,-62.40,-19.20,0 --76.80,-19.20,12.63,0.00,1.00,-52.80,-19.20,0 --72.00,-19.20,12.59,0.00,1.00,-43.20,-19.20,0 --67.20,-14.40,12.55,0.00,1.00,-38.40,-19.20,0 --62.40,-14.40,12.51,0.00,1.00,-28.80,-14.40,0 --57.60,-14.40,12.47,0.00,1.00,-24.00,-14.40,0 --52.80,-14.40,12.43,0.00,1.00,-24.00,-14.40,0 --48.00,-14.40,12.39,0.00,1.00,-19.20,-14.40,0 --43.20,-14.40,12.35,0.00,1.00,-14.40,-9.60,0 --38.40,-9.60,12.31,0.00,1.00,-14.40,-9.60,0 --33.60,-9.60,12.27,0.00,1.00,-9.60,-9.60,0 --28.80,-9.60,12.23,0.00,1.00,-9.60,-9.60,0 --24.00,-9.60,12.19,0.00,1.00,-9.60,-4.80,0 --19.20,-4.80,12.15,0.00,1.00,-4.80,-4.80,0 --14.40,-4.80,12.11,0.00,1.00,-4.80,-4.80,0 --9.60,-4.80,12.07,0.00,1.00,-4.80,-0.00,0 --4.80,-0.00,12.03,0.00,1.00,-0.00,0.00,0 -0.00,0.00,11.99,0.00,1.00,0.00,0.00,0 -4.80,0.00,11.95,0.00,1.00,0.00,0.00,0 -9.60,0.00,11.91,0.00,1.00,0.00,4.80,0 -14.40,4.80,11.87,0.00,1.00,4.80,4.80,0 -19.20,4.80,11.83,0.00,1.00,4.80,4.80,0 -24.00,4.80,11.79,0.00,1.00,4.80,4.80,0 -28.80,4.80,11.75,0.00,1.00,4.80,9.60,0 -33.60,9.60,11.71,0.00,1.00,9.60,9.60,0 -38.40,9.60,11.67,0.00,1.00,9.60,9.60,0 -43.20,9.60,11.63,0.00,1.00,14.40,9.60,0 -48.00,9.60,11.59,0.00,1.00,14.40,9.60,0 -52.80,9.60,11.55,0.00,1.00,14.40,14.40,0 -57.60,9.60,11.51,0.00,1.00,19.20,14.40,0 -62.40,9.60,11.47,0.00,1.00,24.00,14.40,0 -67.20,14.40,11.43,0.00,1.00,28.80,14.40,0 -72.00,14.40,11.39,0.00,1.00,33.60,14.40,0 -76.80,14.40,11.35,0.00,1.00,43.20,14.40,0 -81.60,14.40,11.31,0.00,1.00,57.60,14.40,0 -86.40,14.40,11.27,0.00,1.00,76.80,14.40,0 -91.20,14.40,11.23,0.00,1.00,96.00,14.40,0 -96.00,14.40,11.19,0.00,1.00,115.20,14.40,0 -100.80,14.40,11.15,0.00,1.00,129.60,14.40,0 -105.60,14.40,11.11,0.00,1.00,139.20,14.40,0 -110.40,14.40,11.07,0.00,1.00,148.80,14.40,0 -115.20,9.60,11.03,0.00,1.00,153.60,14.40,0 -120.00,9.60,10.99,0.00,1.00,158.40,9.60,0 -124.80,9.60,10.95,0.00,1.00,163.20,9.60,0 -129.60,9.60,10.91,0.00,1.00,163.20,9.60,0 -134.40,9.60,10.87,0.00,1.00,168.00,9.60,0 -139.20,9.60,10.83,0.00,1.00,168.00,9.60,0 -144.00,9.60,10.79,0.00,1.00,172.80,9.60,0 -148.80,4.80,10.75,0.00,1.00,172.80,4.80,0 -153.60,4.80,10.71,0.00,1.00,172.80,4.80,0 -158.40,4.80,10.67,0.00,1.00,172.80,4.80,0 -163.20,4.80,10.63,0.00,1.00,177.60,4.80,0 -168.00,4.80,10.59,0.00,1.00,177.60,0.00,0 -172.80,0.00,10.55,0.00,1.00,177.60,0.00,0 -177.60,0.00,10.51,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.47,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,10.43,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,10.39,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,10.35,0.00,1.00,-177.60,-4.80,0 --158.40,-4.80,10.31,0.00,1.00,-172.80,-4.80,0 --153.60,-4.80,10.27,0.00,1.00,-172.80,-9.60,0 --148.80,-4.80,10.23,0.00,1.00,-172.80,-9.60,0 --144.00,-9.60,10.19,0.00,1.00,-172.80,-9.60,0 --139.20,-9.60,10.15,0.00,1.00,-168.00,-9.60,0 --134.40,-9.60,10.11,0.00,1.00,-168.00,-9.60,0 --129.60,-9.60,10.07,0.00,1.00,-163.20,-9.60,0 --124.80,-9.60,10.03,0.00,1.00,-163.20,-14.40,0 --120.00,-9.60,9.98,0.00,1.00,-158.40,-14.40,0 --115.20,-9.60,9.94,0.00,1.00,-153.60,-14.40,0 --110.40,-14.40,9.90,0.00,1.00,-148.80,-14.40,0 --105.60,-14.40,9.86,0.00,1.00,-139.20,-14.40,0 --100.80,-14.40,9.82,0.00,1.00,-129.60,-14.40,0 --96.00,-14.40,9.78,0.00,1.00,-115.20,-14.40,0 --91.20,-14.40,9.74,0.00,1.00,-96.00,-14.40,0 --86.40,-14.40,9.70,0.00,1.00,-76.80,-14.40,0 --81.60,-14.40,9.66,0.00,1.00,-57.60,-14.40,0 --76.80,-14.40,9.62,0.00,1.00,-43.20,-14.40,0 --72.00,-14.40,9.58,0.00,1.00,-33.60,-14.40,0 --67.20,-14.40,9.54,0.00,1.00,-28.80,-14.40,0 --62.40,-9.60,9.50,0.00,1.00,-24.00,-14.40,0 --57.60,-9.60,9.46,0.00,1.00,-19.20,-9.60,0 --52.80,-9.60,9.42,0.00,1.00,-14.40,-9.60,0 --48.00,-9.60,9.38,0.00,1.00,-14.40,-9.60,0 --43.20,-9.60,9.34,0.00,1.00,-14.40,-9.60,0 --38.40,-9.60,9.30,0.00,1.00,-9.60,-9.60,0 --33.60,-9.60,9.26,0.00,1.00,-9.60,-4.80,0 --28.80,-4.80,9.22,0.00,1.00,-4.80,-4.80,0 --24.00,-4.80,9.18,0.00,1.00,-4.80,-4.80,0 --19.20,-4.80,9.14,0.00,1.00,-4.80,-4.80,0 --14.40,-4.80,9.10,0.00,1.00,-4.80,-0.00,0 --9.60,-0.00,9.06,0.00,1.00,-0.00,-0.00,0 --4.80,-0.00,9.02,0.00,1.00,-0.00,0.00,0 -0.00,0.00,8.98,0.00,1.00,0.00,0.00,0 -4.80,0.00,8.94,0.00,1.00,0.00,0.00,0 -9.60,0.00,8.90,0.00,1.00,0.00,0.00,0 -14.40,0.00,8.86,0.00,1.00,0.00,4.80,0 -19.20,4.80,8.82,0.00,1.00,4.80,4.80,0 -24.00,4.80,8.78,0.00,1.00,4.80,4.80,0 -28.80,4.80,8.74,0.00,1.00,4.80,4.80,0 -33.60,4.80,8.70,0.00,1.00,4.80,4.80,0 -38.40,4.80,8.66,0.00,1.00,4.80,4.80,0 -43.20,4.80,8.62,0.00,1.00,9.60,4.80,0 -48.00,4.80,8.58,0.00,1.00,9.60,9.60,0 -52.80,4.80,8.54,0.00,1.00,9.60,9.60,0 -57.60,4.80,8.50,0.00,1.00,14.40,9.60,0 -62.40,9.60,8.46,0.00,1.00,14.40,9.60,0 -67.20,9.60,8.42,0.00,1.00,19.20,9.60,0 -72.00,9.60,8.38,0.00,1.00,24.00,9.60,0 -76.80,9.60,8.34,0.00,1.00,33.60,9.60,0 -81.60,9.60,8.30,0.00,1.00,43.20,9.60,0 -86.40,9.60,8.26,0.00,1.00,67.20,9.60,0 -91.20,9.60,8.22,0.00,1.00,96.00,9.60,0 -96.00,9.60,8.18,0.00,1.00,124.80,9.60,0 -100.80,9.60,8.14,0.00,1.00,144.00,9.60,0 -105.60,9.60,8.10,0.00,1.00,153.60,9.60,0 -110.40,9.60,8.06,0.00,1.00,158.40,9.60,0 -115.20,9.60,8.02,0.00,1.00,163.20,9.60,0 -120.00,9.60,7.98,0.00,1.00,168.00,9.60,0 -124.80,4.80,7.94,0.00,1.00,168.00,9.60,0 -129.60,4.80,7.90,0.00,1.00,168.00,4.80,0 -134.40,4.80,7.86,0.00,1.00,172.80,4.80,0 -139.20,4.80,7.82,0.00,1.00,172.80,4.80,0 -144.00,4.80,7.78,0.00,1.00,172.80,4.80,0 -148.80,4.80,7.74,0.00,1.00,172.80,4.80,0 -153.60,4.80,7.70,0.00,1.00,177.60,4.80,0 -158.40,4.80,7.66,0.00,1.00,177.60,4.80,0 -163.20,4.80,7.62,0.00,1.00,177.60,0.00,0 -168.00,0.00,7.58,0.00,1.00,177.60,0.00,0 -172.80,0.00,7.54,0.00,1.00,177.60,0.00,0 -177.60,0.00,7.50,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,7.46,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,7.42,0.00,1.00,-177.60,-0.00,0 --168.00,-0.00,7.38,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,7.34,0.00,1.00,-177.60,-4.80,0 --158.40,-4.80,7.30,0.00,1.00,-177.60,-4.80,0 --153.60,-4.80,7.26,0.00,1.00,-177.60,-4.80,0 --148.80,-4.80,7.22,0.00,1.00,-172.80,-4.80,0 --144.00,-4.80,7.18,0.00,1.00,-172.80,-4.80,0 --139.20,-4.80,7.14,0.00,1.00,-172.80,-4.80,0 --134.40,-4.80,7.10,0.00,1.00,-172.80,-9.60,0 --129.60,-4.80,7.06,0.00,1.00,-168.00,-9.60,0 --124.80,-4.80,7.02,0.00,1.00,-168.00,-9.60,0 --120.00,-9.60,6.98,0.00,1.00,-168.00,-9.60,0 --115.20,-9.60,6.94,0.00,1.00,-163.20,-9.60,0 --110.40,-9.60,6.90,0.00,1.00,-158.40,-9.60,0 --105.60,-9.60,6.86,0.00,1.00,-153.60,-9.60,0 --100.80,-9.60,6.82,0.00,1.00,-144.00,-9.60,0 --96.00,-9.60,6.78,0.00,1.00,-124.80,-9.60,0 --91.20,-9.60,6.74,0.00,1.00,-96.00,-9.60,0 --86.40,-9.60,6.70,0.00,1.00,-67.20,-9.60,0 --81.60,-9.60,6.66,0.00,1.00,-43.20,-9.60,0 --76.80,-9.60,6.62,0.00,1.00,-33.60,-9.60,0 --72.00,-9.60,6.58,0.00,1.00,-24.00,-9.60,0 --67.20,-9.60,6.54,0.00,1.00,-19.20,-9.60,0 --62.40,-9.60,6.50,0.00,1.00,-14.40,-9.60,0 --57.60,-4.80,6.46,0.00,1.00,-14.40,-9.60,0 --52.80,-4.80,6.42,0.00,1.00,-9.60,-4.80,0 --48.00,-4.80,6.38,0.00,1.00,-9.60,-4.80,0 --43.20,-4.80,6.34,0.00,1.00,-9.60,-4.80,0 --38.40,-4.80,6.30,0.00,1.00,-4.80,-4.80,0 --33.60,-4.80,6.26,0.00,1.00,-4.80,-4.80,0 --28.80,-4.80,6.22,0.00,1.00,-4.80,-4.80,0 --24.00,-4.80,6.18,0.00,1.00,-4.80,-4.80,0 --19.20,-4.80,6.14,0.00,1.00,-4.80,-0.00,0 --14.40,-0.00,6.10,0.00,1.00,-0.00,-0.00,0 --9.60,-0.00,6.06,0.00,1.00,-0.00,-0.00,0 --4.80,-0.00,6.02,0.00,1.00,-0.00,0.00,0 -0.00,0.00,5.97,0.00,1.00,0.00,0.00,0 -4.80,0.00,5.93,0.00,1.00,0.00,0.00,0 -9.60,0.00,5.89,0.00,1.00,0.00,0.00,0 -14.40,0.00,5.85,0.00,1.00,0.00,0.00,0 -19.20,0.00,5.81,0.00,1.00,0.00,0.00,0 -24.00,0.00,5.77,0.00,1.00,0.00,0.00,0 -28.80,0.00,5.73,0.00,1.00,0.00,4.80,0 -33.60,0.00,5.69,0.00,1.00,0.00,4.80,0 -38.40,0.00,5.65,0.00,1.00,4.80,4.80,0 -43.20,4.80,5.61,0.00,1.00,4.80,4.80,0 -48.00,4.80,5.57,0.00,1.00,4.80,4.80,0 -52.80,4.80,5.53,0.00,1.00,4.80,4.80,0 -57.60,4.80,5.49,0.00,1.00,4.80,4.80,0 -62.40,4.80,5.45,0.00,1.00,4.80,4.80,0 -67.20,4.80,5.41,0.00,1.00,9.60,4.80,0 -72.00,4.80,5.37,0.00,1.00,9.60,4.80,0 -76.80,4.80,5.33,0.00,1.00,14.40,4.80,0 -81.60,4.80,5.29,0.00,1.00,24.00,4.80,0 -86.40,4.80,5.25,0.00,1.00,43.20,4.80,0 -91.20,4.80,5.21,0.00,1.00,110.40,4.80,0 -96.00,4.80,5.17,0.00,1.00,148.80,4.80,0 -100.80,4.80,5.13,0.00,1.00,163.20,4.80,0 -105.60,4.80,5.09,0.00,1.00,168.00,4.80,0 -110.40,4.80,5.05,0.00,1.00,172.80,4.80,0 -115.20,4.80,5.01,0.00,1.00,172.80,4.80,0 -120.00,4.80,4.97,0.00,1.00,172.80,4.80,0 -124.80,4.80,4.93,0.00,1.00,172.80,4.80,0 -129.60,4.80,4.89,0.00,1.00,177.60,4.80,0 -134.40,4.80,4.85,0.00,1.00,177.60,4.80,0 -139.20,0.00,4.81,0.00,1.00,177.60,4.80,0 -144.00,0.00,4.77,0.00,1.00,177.60,4.80,0 -148.80,0.00,4.73,0.00,1.00,177.60,0.00,0 -153.60,0.00,4.69,0.00,1.00,177.60,0.00,0 -158.40,0.00,4.65,0.00,1.00,177.60,0.00,0 -163.20,0.00,4.61,0.00,1.00,177.60,0.00,0 -168.00,0.00,4.57,0.00,1.00,177.60,0.00,0 -172.80,0.00,4.53,0.00,1.00,177.60,0.00,0 -177.60,0.00,4.49,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,4.45,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,4.41,0.00,1.00,-177.60,-0.00,0 --168.00,-0.00,4.37,0.00,1.00,-177.60,-0.00,0 --163.20,-0.00,4.33,0.00,1.00,-177.60,-0.00,0 --158.40,-0.00,4.29,0.00,1.00,-177.60,-0.00,0 --153.60,-0.00,4.25,0.00,1.00,-177.60,-4.80,0 --148.80,-0.00,4.21,0.00,1.00,-177.60,-4.80,0 --144.00,-0.00,4.17,0.00,1.00,-177.60,-4.80,0 --139.20,-0.00,4.13,0.00,1.00,-177.60,-4.80,0 --134.40,-4.80,4.09,0.00,1.00,-177.60,-4.80,0 --129.60,-4.80,4.05,0.00,1.00,-177.60,-4.80,0 --124.80,-4.80,4.01,0.00,1.00,-172.80,-4.80,0 --120.00,-4.80,3.97,0.00,1.00,-172.80,-4.80,0 --115.20,-4.80,3.93,0.00,1.00,-172.80,-4.80,0 --110.40,-4.80,3.89,0.00,1.00,-172.80,-4.80,0 --105.60,-4.80,3.85,0.00,1.00,-168.00,-4.80,0 --100.80,-4.80,3.81,0.00,1.00,-163.20,-4.80,0 --96.00,-4.80,3.77,0.00,1.00,-148.80,-4.80,0 --91.20,-4.80,3.73,0.00,1.00,-110.40,-4.80,0 --86.40,-4.80,3.69,0.00,1.00,-43.20,-4.80,0 --81.60,-4.80,3.65,0.00,1.00,-24.00,-4.80,0 --76.80,-4.80,3.61,0.00,1.00,-14.40,-4.80,0 --72.00,-4.80,3.57,0.00,1.00,-9.60,-4.80,0 --67.20,-4.80,3.53,0.00,1.00,-9.60,-4.80,0 --62.40,-4.80,3.49,0.00,1.00,-4.80,-4.80,0 --57.60,-4.80,3.45,0.00,1.00,-4.80,-4.80,0 --52.80,-4.80,3.41,0.00,1.00,-4.80,-4.80,0 --48.00,-4.80,3.37,0.00,1.00,-4.80,-4.80,0 --43.20,-4.80,3.33,0.00,1.00,-4.80,-4.80,0 --38.40,-0.00,3.29,0.00,1.00,-4.80,-4.80,0 --33.60,-0.00,3.25,0.00,1.00,-0.00,-0.00,0 --28.80,-0.00,3.21,0.00,1.00,-0.00,-0.00,0 --24.00,-0.00,3.17,0.00,1.00,-0.00,-0.00,0 --19.20,-0.00,3.13,0.00,1.00,-0.00,-0.00,0 --14.40,-0.00,3.09,0.00,1.00,-0.00,-0.00,0 --9.60,-0.00,3.05,0.00,1.00,-0.00,-0.00,0 --4.80,-0.00,3.01,0.00,1.00,-0.00,0.00,0 -0.00,0.00,2.97,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,2.93,0.00,1.00,-0.00,0.00,0 -9.60,-0.00,2.89,0.00,1.00,-0.00,0.00,0 -14.40,-0.00,2.85,0.00,1.00,-0.00,0.00,0 -19.20,-0.00,2.81,0.00,1.00,-0.00,0.00,0 -24.00,-0.00,2.77,0.00,1.00,-0.00,0.00,0 -28.80,-0.00,2.73,0.00,1.00,-0.00,0.00,0 -33.60,-0.00,2.69,0.00,1.00,-0.00,0.00,0 -38.40,-0.00,2.65,0.00,1.00,-0.00,0.00,0 -43.20,-0.00,2.61,0.00,1.00,-0.00,0.00,0 -48.00,-0.00,2.57,0.00,1.00,-0.00,0.00,0 -52.80,-0.00,2.53,0.00,1.00,-0.00,0.00,0 -57.60,-0.00,2.49,0.00,1.00,-0.00,0.00,0 -62.40,-0.00,2.45,0.00,1.00,-0.00,0.00,0 -67.20,-0.00,2.41,0.00,1.00,-4.80,0.00,0 -72.00,-0.00,2.37,0.00,1.00,-4.80,0.00,0 -76.80,-0.00,2.33,0.00,1.00,-4.80,0.00,0 -81.60,-0.00,2.29,0.00,1.00,-9.60,0.00,0 -86.40,-0.00,2.25,0.00,1.00,-19.20,0.00,0 -91.20,-0.00,2.21,0.00,1.00,-134.40,0.00,0 -96.00,-0.00,2.17,0.00,1.00,-168.00,0.00,0 -100.80,-0.00,2.13,0.00,1.00,-172.80,0.00,0 -105.60,-0.00,2.09,0.00,1.00,-177.60,0.00,0 -110.40,-0.00,2.05,0.00,1.00,-177.60,0.00,0 -115.20,-0.00,2.01,0.00,1.00,-177.60,0.00,0 -120.00,-0.00,1.96,0.00,1.00,-177.60,0.00,0 -124.80,-0.00,1.92,0.00,1.00,-177.60,0.00,0 -129.60,-0.00,1.88,0.00,1.00,-177.60,0.00,0 -134.40,-0.00,1.84,0.00,1.00,-177.60,0.00,0 -139.20,-0.00,1.80,0.00,1.00,-177.60,0.00,0 -144.00,-0.00,1.76,0.00,1.00,-177.60,0.00,0 -148.80,-0.00,1.72,0.00,1.00,-177.60,0.00,0 -153.60,-0.00,1.68,0.00,1.00,-177.60,0.00,0 -158.40,-0.00,1.64,0.00,1.00,-177.60,0.00,0 -163.20,-0.00,1.60,0.00,1.00,-177.60,0.00,0 -168.00,-0.00,1.56,0.00,1.00,-177.60,0.00,0 -172.80,-0.00,1.52,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,1.48,0.00,1.00,-177.60,0.00,0 --177.60,0.00,1.44,0.00,1.00,177.60,0.00,0 --172.80,0.00,1.40,0.00,1.00,177.60,0.00,0 --168.00,0.00,1.36,0.00,1.00,177.60,0.00,0 --163.20,0.00,1.32,0.00,1.00,177.60,0.00,0 --158.40,0.00,1.28,0.00,1.00,177.60,0.00,0 --153.60,0.00,1.24,0.00,1.00,177.60,0.00,0 --148.80,0.00,1.20,0.00,1.00,177.60,0.00,0 --144.00,0.00,1.16,0.00,1.00,177.60,0.00,0 --139.20,0.00,1.12,0.00,1.00,177.60,0.00,0 --134.40,0.00,1.08,0.00,1.00,177.60,0.00,0 --129.60,0.00,1.04,0.00,1.00,177.60,0.00,0 --124.80,0.00,1.00,0.00,1.00,177.60,0.00,0 --120.00,0.00,0.96,0.00,1.00,177.60,0.00,0 --115.20,0.00,0.92,0.00,1.00,177.60,0.00,0 --110.40,0.00,0.88,0.00,1.00,177.60,0.00,0 --105.60,0.00,0.84,0.00,1.00,177.60,0.00,0 --100.80,0.00,0.80,0.00,1.00,172.80,0.00,0 --96.00,0.00,0.76,0.00,1.00,168.00,0.00,0 --91.20,0.00,0.72,0.00,1.00,134.40,0.00,0 --86.40,0.00,0.68,0.00,1.00,19.20,0.00,0 --81.60,0.00,0.64,0.00,1.00,9.60,0.00,0 --76.80,0.00,0.60,0.00,1.00,4.80,0.00,0 --72.00,0.00,0.56,0.00,1.00,4.80,0.00,0 --67.20,0.00,0.52,0.00,1.00,4.80,0.00,0 --62.40,0.00,0.48,0.00,1.00,0.00,0.00,0 --57.60,0.00,0.44,0.00,1.00,0.00,0.00,0 --52.80,0.00,0.40,0.00,1.00,0.00,0.00,0 --48.00,0.00,0.36,0.00,1.00,0.00,0.00,0 --43.20,0.00,0.32,0.00,1.00,0.00,0.00,0 --38.40,0.00,0.28,0.00,1.00,0.00,0.00,0 --33.60,0.00,0.24,0.00,1.00,0.00,0.00,0 --28.80,0.00,0.20,0.00,1.00,0.00,0.00,0 --24.00,0.00,0.16,0.00,1.00,0.00,0.00,0 --19.20,0.00,0.12,0.00,1.00,0.00,0.00,0 --14.40,0.00,0.08,0.00,1.00,0.00,0.00,0 --9.60,0.00,0.04,0.00,1.00,0.00,0.00,0 --4.80,0.00,0.00,0.00,1.00,0.00,0.00,0 diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC16c.met b/scripts/testv/stvOMASA_4ISM_1MASA2TC16c.met deleted file mode 100644 index 00acdae5394c5d40e9193d7dd9cd1fee6d182c24..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_1MASA2TC16c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5a1f87bfe360dbd221a94583aa68a58ef050e968a63351730d643f2dc2cac4e1 -size 204600 diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC16c.wav b/scripts/testv/stvOMASA_4ISM_1MASA2TC16c.wav deleted file mode 100644 index 7e1ae284212db8a7a97645a08ac9b8ff3e5fdf0f..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_1MASA2TC16c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:414d1438fb905bb7abc589fcf09c82a6e71c754d0c8c0d583347ec6fa2b5940b -size 1152080 diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC16c_ISM1.csv b/scripts/testv/stvOMASA_4ISM_1MASA2TC16c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_1MASA2TC16c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC16c_ISM2.csv b/scripts/testv/stvOMASA_4ISM_1MASA2TC16c_ISM2.csv deleted file mode 100644 index f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_1MASA2TC16c_ISM2.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,4.80,16.00,0.00,1.00,0.00,0.00,0 -0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0 -0.00,14.40,15.96,0.00,1.00,4.80,9.60,0 -0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0 -0.00,24.00,15.91,0.00,1.00,14.40,19.20,0 -0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0 -0.00,33.60,15.87,0.00,1.00,19.20,28.80,0 -0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0 -0.00,43.20,15.83,0.00,1.00,28.80,38.40,0 -0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0 -0.00,52.80,15.79,0.00,1.00,38.40,48.00,0 -0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0 -0.00,62.40,15.74,0.00,1.00,48.00,57.60,0 -4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0 -4.80,72.00,15.70,0.00,1.00,57.60,67.20,0 -4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0 -9.60,81.60,15.66,0.00,1.00,72.00,76.80,0 -19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0 -134.40,86.40,15.62,0.00,1.00,86.40,86.40,0 -168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0 -172.80,76.80,15.57,0.00,1.00,100.80,86.40,0 -177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0 -177.60,67.20,15.53,0.00,1.00,110.40,76.80,0 -177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0 -177.60,57.60,15.49,0.00,1.00,124.80,67.20,0 -177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0 -177.60,48.00,15.44,0.00,1.00,134.40,57.60,0 -177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0 -177.60,38.40,15.40,0.00,1.00,144.00,48.00,0 -177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0 -177.60,28.80,15.36,0.00,1.00,153.60,38.40,0 -177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0 -177.60,19.20,15.32,0.00,1.00,158.40,28.80,0 -177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0 -177.60,9.60,15.27,0.00,1.00,168.00,19.20,0 -177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0 -177.60,0.00,15.23,0.00,1.00,172.80,9.60,0 --177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0 --177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0 --177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0 --177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0 --177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0 --177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0 --177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0 --177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0 --177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0 --177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0 --177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0 --177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0 --177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0 --177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0 --177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0 --177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0 --172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0 --168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0 --134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0 --19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0 --9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0 --4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0 --4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0 --4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0 --0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0 --0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0 --0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0 --0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0 --0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0 --0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0 --0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0 --0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0 --0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0 --0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0 --0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0 --0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0 --0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0 --0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,14.40,0.00,1.00,0.00,0.00,0 --0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0 --0.00,14.40,14.36,0.00,1.00,9.60,9.60,0 --0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0 --0.00,24.00,14.31,0.00,1.00,14.40,19.20,0 --0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0 --0.00,33.60,14.27,0.00,1.00,24.00,28.80,0 --4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0 --4.80,43.20,14.23,0.00,1.00,28.80,38.40,0 --4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0 --4.80,52.80,14.18,0.00,1.00,38.40,48.00,0 --4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0 --4.80,62.40,14.14,0.00,1.00,48.00,57.60,0 --9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0 --9.60,72.00,14.10,0.00,1.00,62.40,67.20,0 --14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0 --24.00,81.60,14.06,0.00,1.00,72.00,76.80,0 --43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0 --110.40,86.40,14.01,0.00,1.00,86.40,86.40,0 --148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0 --163.20,76.80,13.97,0.00,1.00,96.00,81.60,0 --168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0 --172.80,67.20,13.93,0.00,1.00,110.40,72.00,0 --172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0 --172.80,57.60,13.89,0.00,1.00,120.00,62.40,0 --172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0 --177.60,48.00,13.84,0.00,1.00,134.40,52.80,0 --177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0 --177.60,38.40,13.80,0.00,1.00,144.00,43.20,0 --177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0 --177.60,28.80,13.76,0.00,1.00,148.80,33.60,0 --177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0 --177.60,19.20,13.71,0.00,1.00,158.40,24.00,0 --177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0 --177.60,9.60,13.67,0.00,1.00,168.00,14.40,0 --177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0 --177.60,0.00,13.63,0.00,1.00,172.80,4.80,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0 -177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0 -177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0 -177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0 -177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0 -177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0 -177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0 -172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0 -172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0 -172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0 -172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0 -168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0 -163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0 -148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0 -110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0 -43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0 -24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0 -14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0 -9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0 -9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0 -4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0 -4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0 -4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0 -4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0 -4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0 -0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0 -0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0 -0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0 -0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0 -0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,12.80,0.00,1.00,0.00,0.00,0 --0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0 --0.00,14.40,12.75,0.00,1.00,9.60,9.60,0 --4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0 --4.80,24.00,12.71,0.00,1.00,14.40,19.20,0 --4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0 --4.80,33.60,12.67,0.00,1.00,24.00,28.80,0 --4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0 --9.60,43.20,12.62,0.00,1.00,33.60,38.40,0 --9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0 --9.60,52.80,12.58,0.00,1.00,43.20,48.00,0 --14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0 --14.40,62.40,12.54,0.00,1.00,52.80,57.60,0 --19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0 --24.00,72.00,12.50,0.00,1.00,62.40,67.20,0 --33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0 --43.20,76.80,12.45,0.00,1.00,72.00,72.00,0 --67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0 --96.00,81.60,12.41,0.00,1.00,86.40,81.60,0 --124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0 --144.00,76.80,12.37,0.00,1.00,96.00,76.80,0 --153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0 --158.40,67.20,12.33,0.00,1.00,110.40,72.00,0 --163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0 --168.00,57.60,12.28,0.00,1.00,120.00,62.40,0 --168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0 --168.00,48.00,12.24,0.00,1.00,129.60,52.80,0 --172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0 --172.80,38.40,12.20,0.00,1.00,139.20,43.20,0 --172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0 --172.80,28.80,12.15,0.00,1.00,148.80,33.60,0 --177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0 --177.60,19.20,12.11,0.00,1.00,158.40,24.00,0 --177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0 --177.60,9.60,12.07,0.00,1.00,168.00,14.40,0 --177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0 --177.60,0.00,12.03,0.00,1.00,172.80,4.80,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0 -177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0 -172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0 -172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0 -168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0 -168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0 -168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0 -163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0 -158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0 -153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0 -144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0 -124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0 -96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0 -67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0 -43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0 -33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0 -24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0 -19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0 -14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0 -14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0 -9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0 -9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0 -9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0 -4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0 -4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0 -0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,11.19,0.00,1.00,0.00,0.00,0 --0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0 --4.80,14.40,11.15,0.00,1.00,9.60,9.60,0 --4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0 --4.80,24.00,11.11,0.00,1.00,14.40,19.20,0 --4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0 --9.60,33.60,11.07,0.00,1.00,24.00,28.80,0 --9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0 --14.40,43.20,11.02,0.00,1.00,33.60,38.40,0 --14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0 --14.40,52.80,10.98,0.00,1.00,43.20,48.00,0 --19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0 --24.00,57.60,10.94,0.00,1.00,52.80,52.80,0 --28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0 --33.60,67.20,10.89,0.00,1.00,62.40,62.40,0 --43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0 --57.60,72.00,10.85,0.00,1.00,76.80,72.00,0 --76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0 --96.00,76.80,10.81,0.00,1.00,86.40,76.80,0 --115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0 --129.60,72.00,10.77,0.00,1.00,96.00,76.80,0 --139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0 --148.80,67.20,10.72,0.00,1.00,105.60,67.20,0 --153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0 --158.40,57.60,10.68,0.00,1.00,120.00,62.40,0 --163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0 --163.20,48.00,10.64,0.00,1.00,129.60,52.80,0 --168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0 --168.00,38.40,10.60,0.00,1.00,139.20,43.20,0 --172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0 --172.80,28.80,10.55,0.00,1.00,148.80,33.60,0 --172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0 --172.80,19.20,10.51,0.00,1.00,158.40,24.00,0 --177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0 --177.60,9.60,10.47,0.00,1.00,163.20,14.40,0 --177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0 --177.60,0.00,10.42,0.00,1.00,172.80,4.80,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0 -168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0 -168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0 -163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0 -163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0 -158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0 -153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0 -148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0 -139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0 -129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0 -115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0 -96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0 -76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0 -57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0 -43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0 -33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0 -28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0 -24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0 -19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0 -14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0 -14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0 -14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0 -9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0 -9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0 -4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0 -4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0 -0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,9.59,0.00,1.00,0.00,0.00,0 --4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0 --4.80,14.40,9.55,0.00,1.00,9.60,9.60,0 --4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0 --9.60,24.00,9.51,0.00,1.00,19.20,19.20,0 --9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0 --9.60,33.60,9.46,0.00,1.00,24.00,28.80,0 --14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0 --14.40,38.40,9.42,0.00,1.00,33.60,33.60,0 --19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0 --24.00,48.00,9.38,0.00,1.00,43.20,43.20,0 --24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0 --28.80,57.60,9.34,0.00,1.00,52.80,52.80,0 --38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0 --43.20,62.40,9.29,0.00,1.00,67.20,62.40,0 --52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0 --62.40,72.00,9.25,0.00,1.00,76.80,67.20,0 --76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0 --96.00,72.00,9.21,0.00,1.00,86.40,72.00,0 --110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0 --120.00,67.20,9.16,0.00,1.00,96.00,72.00,0 --134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0 --139.20,62.40,9.12,0.00,1.00,105.60,67.20,0 --148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0 --153.60,57.60,9.08,0.00,1.00,115.20,57.60,0 --158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0 --158.40,48.00,9.04,0.00,1.00,129.60,52.80,0 --163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0 --163.20,38.40,8.99,0.00,1.00,139.20,43.20,0 --168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0 --168.00,28.80,8.95,0.00,1.00,148.80,33.60,0 --172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0 --172.80,19.20,8.91,0.00,1.00,153.60,24.00,0 --172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0 --177.60,9.60,8.87,0.00,1.00,163.20,14.40,0 --177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0 --177.60,0.00,8.82,0.00,1.00,172.80,4.80,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0 -168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0 -163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0 -163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0 -158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0 -158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0 -153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0 -148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0 -139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0 -134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0 -120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0 -110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0 -96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0 -76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0 -62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0 -52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0 -43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0 -38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0 -28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0 -24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0 -24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0 -19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0 -14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0 -14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0 -9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0 -9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0 -9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0 -0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,7.99,0.00,1.00,0.00,0.00,0 --4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0 --4.80,14.40,7.95,0.00,1.00,9.60,9.60,0 --9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0 --9.60,24.00,7.90,0.00,1.00,19.20,19.20,0 --14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0 --14.40,28.80,7.86,0.00,1.00,28.80,24.00,0 --19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0 --19.20,38.40,7.82,0.00,1.00,38.40,33.60,0 --24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0 --28.80,48.00,7.78,0.00,1.00,48.00,43.20,0 --33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0 --38.40,52.80,7.73,0.00,1.00,57.60,52.80,0 --43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0 --48.00,62.40,7.69,0.00,1.00,67.20,57.60,0 --57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0 --67.20,67.20,7.65,0.00,1.00,76.80,62.40,0 --81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0 --91.20,67.20,7.60,0.00,1.00,86.40,67.20,0 --105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0 --115.20,67.20,7.56,0.00,1.00,96.00,67.20,0 --124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0 --134.40,57.60,7.52,0.00,1.00,105.60,62.40,0 --139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0 --144.00,52.80,7.48,0.00,1.00,115.20,57.60,0 --148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0 --153.60,43.20,7.43,0.00,1.00,124.80,48.00,0 --158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0 --163.20,38.40,7.39,0.00,1.00,134.40,38.40,0 --163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0 --168.00,28.80,7.35,0.00,1.00,144.00,33.60,0 --168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0 --172.80,19.20,7.31,0.00,1.00,153.60,24.00,0 --172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0 --177.60,9.60,7.26,0.00,1.00,163.20,14.40,0 --177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0 --177.60,0.00,7.22,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0 -163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0 -158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0 -153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0 -148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0 -144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0 -139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0 -134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0 -124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0 -115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0 -105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0 -91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0 -81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0 -67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0 -57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0 -48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0 -43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0 -38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0 -33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0 -28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0 -24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0 -19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0 -19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0 -14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0 -9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0 -0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,6.39,0.00,1.00,0.00,0.00,0 --4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0 --4.80,14.40,6.34,0.00,1.00,9.60,9.60,0 --9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0 --9.60,19.20,6.30,0.00,1.00,19.20,14.40,0 --14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0 --19.20,28.80,6.26,0.00,1.00,28.80,24.00,0 --19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0 --24.00,38.40,6.22,0.00,1.00,38.40,33.60,0 --28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0 --33.60,43.20,6.17,0.00,1.00,48.00,38.40,0 --38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0 --43.20,52.80,6.13,0.00,1.00,57.60,48.00,0 --48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0 --52.80,57.60,6.09,0.00,1.00,67.20,52.80,0 --62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0 --72.00,62.40,6.05,0.00,1.00,76.80,57.60,0 --81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0 --91.20,62.40,6.00,0.00,1.00,86.40,62.40,0 --100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0 --110.40,62.40,5.96,0.00,1.00,96.00,62.40,0 --120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0 --129.60,57.60,5.92,0.00,1.00,105.60,57.60,0 --134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0 --139.20,48.00,5.87,0.00,1.00,115.20,52.80,0 --144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0 --148.80,43.20,5.83,0.00,1.00,124.80,48.00,0 --153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0 --158.40,33.60,5.79,0.00,1.00,134.40,38.40,0 --163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0 --163.20,28.80,5.75,0.00,1.00,144.00,28.80,0 --168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0 --168.00,19.20,5.70,0.00,1.00,153.60,24.00,0 --172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0 --172.80,9.60,5.66,0.00,1.00,163.20,14.40,0 --177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0 --177.60,0.00,5.62,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0 -163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0 -158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0 -148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0 -144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0 -139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0 -134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0 -129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0 -120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0 -110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0 -100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0 -91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0 -81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0 -72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0 -62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0 -52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0 -48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0 -43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0 -38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0 -33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0 -28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0 -24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0 -19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0 -19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0 -9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0 -4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0 -0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,4.79,0.00,1.00,0.00,0.00,0 --4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0 --9.60,14.40,4.74,0.00,1.00,9.60,9.60,0 --9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0 --14.40,19.20,4.70,0.00,1.00,19.20,14.40,0 --14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0 --19.20,28.80,4.66,0.00,1.00,28.80,24.00,0 --24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0 --28.80,33.60,4.61,0.00,1.00,38.40,28.80,0 --28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0 --33.60,43.20,4.57,0.00,1.00,48.00,38.40,0 --38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0 --48.00,48.00,4.53,0.00,1.00,57.60,43.20,0 --52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0 --57.60,52.80,4.49,0.00,1.00,67.20,48.00,0 --67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0 --76.80,57.60,4.44,0.00,1.00,76.80,52.80,0 --81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0 --91.20,57.60,4.40,0.00,1.00,86.40,57.60,0 --100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0 --110.40,57.60,4.36,0.00,1.00,96.00,57.60,0 --115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0 --124.80,52.80,4.32,0.00,1.00,105.60,52.80,0 --129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0 --139.20,48.00,4.27,0.00,1.00,115.20,48.00,0 --144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0 --148.80,38.40,4.23,0.00,1.00,124.80,43.20,0 --153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0 --153.60,33.60,4.19,0.00,1.00,134.40,38.40,0 --158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0 --163.20,24.00,4.14,0.00,1.00,144.00,28.80,0 --163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0 --168.00,19.20,4.10,0.00,1.00,153.60,24.00,0 --172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0 --172.80,9.60,4.06,0.00,1.00,163.20,14.40,0 --177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0 --177.60,0.00,4.02,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0 -163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0 -163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0 -158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0 -148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0 -144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0 -139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0 -129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0 -124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0 -115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0 -110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0 -100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0 -91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0 -81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0 -76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0 -67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0 -57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0 -52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0 -48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0 -38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0 -33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0 -28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0 -28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0 -24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0 -19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0 -14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0 -14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0 -9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0 -0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.18,0.00,1.00,0.00,0.00,0 --4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0 --9.60,9.60,3.14,0.00,1.00,9.60,9.60,0 --9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0 --14.40,19.20,3.10,0.00,1.00,19.20,14.40,0 --19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0 --24.00,24.00,3.05,0.00,1.00,28.80,24.00,0 --24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0 --28.80,33.60,3.01,0.00,1.00,38.40,28.80,0 --33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0 --38.40,38.40,2.97,0.00,1.00,48.00,33.60,0 --43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0 --48.00,43.20,2.93,0.00,1.00,57.60,43.20,0 --52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0 --62.40,48.00,2.88,0.00,1.00,67.20,48.00,0 --67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0 --76.80,52.80,2.84,0.00,1.00,76.80,48.00,0 --86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0 --91.20,52.80,2.80,0.00,1.00,86.40,52.80,0 --100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0 --105.60,52.80,2.76,0.00,1.00,96.00,52.80,0 --115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0 --120.00,48.00,2.71,0.00,1.00,105.60,48.00,0 --129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0 --134.40,43.20,2.67,0.00,1.00,115.20,43.20,0 --139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0 --144.00,38.40,2.63,0.00,1.00,124.80,38.40,0 --148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0 --153.60,33.60,2.58,0.00,1.00,134.40,33.60,0 --158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0 --158.40,24.00,2.54,0.00,1.00,144.00,28.80,0 --163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0 --168.00,19.20,2.50,0.00,1.00,153.60,19.20,0 --168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.46,0.00,1.00,163.20,14.40,0 --177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.41,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0 -158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0 -148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0 -144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0 -139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0 -134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0 -129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0 -120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0 -115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0 -105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0 -100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0 -91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0 -86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0 -76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0 -67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0 -62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0 -52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0 -48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0 -43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0 -38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0 -33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0 -28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0 -24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0 -24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0 -19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0 -0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.58,0.00,1.00,0.00,0.00,0 --4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.54,0.00,1.00,9.60,4.80,0 --14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0 --14.40,19.20,1.50,0.00,1.00,19.20,14.40,0 --19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0 --24.00,24.00,1.45,0.00,1.00,28.80,19.20,0 --28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0 --33.60,28.80,1.41,0.00,1.00,38.40,28.80,0 --38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0 --43.20,38.40,1.37,0.00,1.00,48.00,33.60,0 --48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0 --52.80,43.20,1.32,0.00,1.00,57.60,38.40,0 --57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0 --62.40,43.20,1.28,0.00,1.00,67.20,43.20,0 --72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0 --76.80,48.00,1.24,0.00,1.00,76.80,43.20,0 --86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0 --91.20,48.00,1.20,0.00,1.00,86.40,48.00,0 --100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0 --105.60,48.00,1.15,0.00,1.00,96.00,48.00,0 --110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0 --120.00,43.20,1.11,0.00,1.00,105.60,43.20,0 --124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0 --129.60,38.40,1.07,0.00,1.00,115.20,43.20,0 --134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0 --139.20,33.60,1.03,0.00,1.00,124.80,38.40,0 --144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0 --148.80,28.80,0.98,0.00,1.00,134.40,33.60,0 --153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0 --158.40,24.00,0.94,0.00,1.00,144.00,24.00,0 --163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0 --163.20,14.40,0.90,0.00,1.00,153.60,19.20,0 --168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.85,0.00,1.00,163.20,14.40,0 --172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.81,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0 -148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0 -144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0 -139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0 -134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0 -129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0 -124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0 -120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0 -110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0 -105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0 -100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0 -91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0 -86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0 -76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0 -72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0 -62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0 -57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0 -52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0 -48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0 -43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0 -38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0 -28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0 -19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0 -0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,0.00,0.00,1.00,0.00,0.00,0 --4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0 --9.60,9.60,0.04,0.00,1.00,9.60,4.80,0 --14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0 --19.20,14.40,0.09,0.00,1.00,19.20,14.40,0 --24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0 --24.00,24.00,0.13,0.00,1.00,28.80,19.20,0 --28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0 --33.60,28.80,0.17,0.00,1.00,38.40,24.00,0 --38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0 --43.20,33.60,0.21,0.00,1.00,48.00,28.80,0 --48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0 --52.80,38.40,0.26,0.00,1.00,57.60,33.60,0 --62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0 --67.20,38.40,0.30,0.00,1.00,67.20,38.40,0 --72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0 --76.80,43.20,0.34,0.00,1.00,76.80,38.40,0 --86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0 --91.20,43.20,0.38,0.00,1.00,86.40,43.20,0 --96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0 --105.60,43.20,0.43,0.00,1.00,96.00,43.20,0 --110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0 --115.20,38.40,0.47,0.00,1.00,105.60,38.40,0 --124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0 --129.60,38.40,0.51,0.00,1.00,115.20,38.40,0 --134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0 --139.20,33.60,0.56,0.00,1.00,124.80,33.60,0 --144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0 --148.80,28.80,0.60,0.00,1.00,134.40,28.80,0 --153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0 --158.40,19.20,0.64,0.00,1.00,144.00,24.00,0 --158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0 --163.20,14.40,0.68,0.00,1.00,153.60,19.20,0 --168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.73,0.00,1.00,163.20,9.60,0 --172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.77,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0 -158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0 -158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0 -148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0 -144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0 -139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0 -134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0 -129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0 -124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0 -115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0 -110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0 -105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0 -96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0 -91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0 -86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0 -76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0 -72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0 -67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0 -62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0 -52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0 -48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0 -43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0 -38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0 -28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0 -19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0 -0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.60,0.00,1.00,0.00,0.00,0 --9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.64,0.00,1.00,9.60,4.80,0 --14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0 --19.20,14.40,1.69,0.00,1.00,19.20,9.60,0 --24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0 --28.80,19.20,1.73,0.00,1.00,28.80,19.20,0 --33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0 --38.40,24.00,1.77,0.00,1.00,38.40,24.00,0 --43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0 --48.00,28.80,1.82,0.00,1.00,48.00,28.80,0 --52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0 --57.60,33.60,1.86,0.00,1.00,57.60,28.80,0 --62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0 --67.20,38.40,1.90,0.00,1.00,67.20,33.60,0 --72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0 --81.60,38.40,1.94,0.00,1.00,76.80,38.40,0 --86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0 --91.20,38.40,1.99,0.00,1.00,86.40,38.40,0 --96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0 --105.60,38.40,2.03,0.00,1.00,96.00,38.40,0 --110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0 --115.20,33.60,2.07,0.00,1.00,105.60,33.60,0 --120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0 --124.80,33.60,2.11,0.00,1.00,115.20,33.60,0 --129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0 --134.40,28.80,2.16,0.00,1.00,124.80,28.80,0 --139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0 --144.00,24.00,2.20,0.00,1.00,134.40,24.00,0 --148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0 --153.60,19.20,2.24,0.00,1.00,144.00,19.20,0 --158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0 --163.20,14.40,2.29,0.00,1.00,153.60,14.40,0 --168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.33,0.00,1.00,163.20,9.60,0 --172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.37,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0 -153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0 -144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0 -134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0 -124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0 -120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0 -115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0 -110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0 -105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0 -96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0 -91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0 -86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0 -81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0 -72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0 -67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0 -62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0 -57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0 -52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0 -48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0 -43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0 -38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0 -33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0 -28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0 -14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.20,0.00,1.00,0.00,0.00,0 --9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0 --14.40,9.60,3.25,0.00,1.00,9.60,4.80,0 --14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0 --19.20,14.40,3.29,0.00,1.00,19.20,9.60,0 --24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0 --28.80,19.20,3.33,0.00,1.00,28.80,14.40,0 --33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0 --38.40,24.00,3.38,0.00,1.00,38.40,19.20,0 --43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0 --48.00,24.00,3.42,0.00,1.00,48.00,24.00,0 --52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0 --57.60,28.80,3.46,0.00,1.00,57.60,28.80,0 --62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0 --67.20,33.60,3.50,0.00,1.00,67.20,28.80,0 --72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0 --81.60,33.60,3.55,0.00,1.00,76.80,33.60,0 --86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0 --91.20,33.60,3.59,0.00,1.00,86.40,33.60,0 --96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0 --100.80,33.60,3.63,0.00,1.00,96.00,33.60,0 --110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0 --115.20,33.60,3.67,0.00,1.00,105.60,28.80,0 --120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0 --124.80,28.80,3.72,0.00,1.00,115.20,28.80,0 --129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0 --134.40,24.00,3.76,0.00,1.00,124.80,24.00,0 --139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0 --144.00,19.20,3.80,0.00,1.00,134.40,24.00,0 --148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0 --153.60,14.40,3.85,0.00,1.00,144.00,19.20,0 --158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0 --163.20,9.60,3.89,0.00,1.00,153.60,14.40,0 --168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0 --168.00,4.80,3.93,0.00,1.00,163.20,9.60,0 --172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0 --177.60,0.00,3.97,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0 -124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0 -120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0 -115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0 -110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0 -100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0 -96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0 -91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0 -86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0 -81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0 -72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0 -67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0 -62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0 -57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0 -52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0 -48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0 -43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0 -38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0 -33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0 -28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0 -24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0 -14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0 -14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0 --4.80,0.00,4.81,0.00,1.00,0.00,0.00,0 --9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0 --14.40,4.80,4.85,0.00,1.00,9.60,4.80,0 --19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0 --19.20,9.60,4.89,0.00,1.00,19.20,9.60,0 --24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0 --28.80,14.40,4.93,0.00,1.00,28.80,14.40,0 --33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0 --38.40,19.20,4.98,0.00,1.00,38.40,14.40,0 --43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0 --48.00,24.00,5.02,0.00,1.00,48.00,19.20,0 --52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0 --57.60,24.00,5.06,0.00,1.00,57.60,24.00,0 --62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0 --72.00,28.80,5.11,0.00,1.00,67.20,24.00,0 --76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0 --81.60,28.80,5.15,0.00,1.00,76.80,28.80,0 --86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0 --91.20,28.80,5.19,0.00,1.00,86.40,28.80,0 --96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0 --100.80,28.80,5.23,0.00,1.00,96.00,28.80,0 --105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0 --115.20,28.80,5.28,0.00,1.00,105.60,28.80,0 --120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0 --124.80,24.00,5.32,0.00,1.00,115.20,24.00,0 --129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0 --134.40,24.00,5.36,0.00,1.00,124.80,24.00,0 --139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0 --144.00,19.20,5.40,0.00,1.00,134.40,19.20,0 --148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0 --153.60,14.40,5.45,0.00,1.00,144.00,14.40,0 --158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0 --163.20,9.60,5.49,0.00,1.00,153.60,9.60,0 --163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0 --168.00,4.80,5.53,0.00,1.00,163.20,9.60,0 --172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0 --177.60,0.00,5.58,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0 -163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0 -129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0 -124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0 -120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0 -115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0 -105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0 -100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0 -96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0 -91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0 -86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0 -81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0 -76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0 -72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0 -62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0 -57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0 -52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0 -48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0 -43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0 -38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0 -33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0 -28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0 -24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0 -19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0 -19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0 -0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,6.41,0.00,1.00,0.00,0.00,0 --9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0 --14.40,4.80,6.45,0.00,1.00,9.60,4.80,0 --19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0 --24.00,9.60,6.49,0.00,1.00,19.20,9.60,0 --28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0 --33.60,14.40,6.54,0.00,1.00,28.80,9.60,0 --33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0 --38.40,14.40,6.58,0.00,1.00,38.40,14.40,0 --43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0 --48.00,19.20,6.62,0.00,1.00,48.00,14.40,0 --57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0 --62.40,19.20,6.66,0.00,1.00,57.60,19.20,0 --67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0 --72.00,24.00,6.71,0.00,1.00,67.20,19.20,0 --76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0 --81.60,24.00,6.75,0.00,1.00,76.80,24.00,0 --86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0 --91.20,24.00,6.79,0.00,1.00,86.40,24.00,0 --96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0 --100.80,24.00,6.84,0.00,1.00,96.00,24.00,0 --105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0 --110.40,24.00,6.88,0.00,1.00,105.60,24.00,0 --115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0 --120.00,19.20,6.92,0.00,1.00,115.20,19.20,0 --129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0 --134.40,19.20,6.96,0.00,1.00,124.80,19.20,0 --139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0 --144.00,14.40,7.01,0.00,1.00,134.40,14.40,0 --148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0 --148.80,14.40,7.05,0.00,1.00,144.00,14.40,0 --153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0 --158.40,9.60,7.09,0.00,1.00,153.60,9.60,0 --163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0 --168.00,4.80,7.13,0.00,1.00,163.20,4.80,0 --172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0 --177.60,0.00,7.18,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0 -163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0 -158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0 -148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0 -144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0 -134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0 -129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0 -120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0 -115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0 -110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0 -105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0 -100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0 -96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0 -91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0 -86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0 -81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0 -76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0 -72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0 -67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0 -62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0 -57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0 -48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0 -43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0 -38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0 -33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0 -33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0 -28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0 -24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0 -19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0 -0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,8.01,0.00,1.00,0.00,0.00,0 --9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0 --14.40,4.80,8.05,0.00,1.00,9.60,4.80,0 --19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0 --24.00,9.60,8.10,0.00,1.00,19.20,4.80,0 --28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0 --33.60,9.60,8.14,0.00,1.00,24.00,9.60,0 --38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0 --43.20,14.40,8.18,0.00,1.00,33.60,9.60,0 --48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0 --52.80,14.40,8.22,0.00,1.00,43.20,14.40,0 --57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0 --62.40,19.20,8.27,0.00,1.00,52.80,14.40,0 --67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0 --72.00,19.20,8.31,0.00,1.00,62.40,14.40,0 --76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0 --81.60,19.20,8.35,0.00,1.00,76.80,19.20,0 --86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0 --91.20,19.20,8.40,0.00,1.00,86.40,19.20,0 --96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0 --100.80,19.20,8.44,0.00,1.00,96.00,19.20,0 --105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0 --110.40,19.20,8.48,0.00,1.00,105.60,19.20,0 --115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0 --120.00,14.40,8.52,0.00,1.00,120.00,14.40,0 --124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0 --129.60,14.40,8.57,0.00,1.00,129.60,14.40,0 --134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0 --139.20,14.40,8.61,0.00,1.00,139.20,14.40,0 --144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0 --148.80,9.60,8.65,0.00,1.00,148.80,9.60,0 --153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0 --158.40,4.80,8.69,0.00,1.00,158.40,9.60,0 --163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0 --168.00,4.80,8.74,0.00,1.00,163.20,4.80,0 --172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0 -148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0 -144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0 -139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0 -134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0 -129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0 -124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0 -120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0 -115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0 -110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0 -105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0 -100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0 -96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0 -91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0 -86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0 -81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0 -76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0 -72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0 -67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0 -62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0 -52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0 -48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0 -43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0 -38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0 -33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0 -28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0 -24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0 -19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0 -9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0 -0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,9.61,0.00,1.00,0.00,0.00,0 --9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0 --14.40,4.80,9.66,0.00,1.00,9.60,0.00,0 --19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0 --24.00,4.80,9.70,0.00,1.00,14.40,4.80,0 --28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0 --33.60,9.60,9.74,0.00,1.00,24.00,4.80,0 --38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0 --43.20,9.60,9.78,0.00,1.00,33.60,9.60,0 --48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0 --52.80,9.60,9.83,0.00,1.00,43.20,9.60,0 --57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0 --62.40,14.40,9.87,0.00,1.00,52.80,9.60,0 --67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0 --72.00,14.40,9.91,0.00,1.00,62.40,14.40,0 --76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0 --81.60,14.40,9.95,0.00,1.00,76.80,14.40,0 --86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0 --91.20,14.40,10.00,0.00,1.00,86.40,14.40,0 --96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0 --100.80,14.40,10.04,0.00,1.00,96.00,14.40,0 --105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0 --110.40,14.40,10.08,0.00,1.00,110.40,14.40,0 --115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0 --120.00,14.40,10.13,0.00,1.00,120.00,9.60,0 --124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0 --129.60,9.60,10.17,0.00,1.00,129.60,9.60,0 --134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0 --139.20,9.60,10.21,0.00,1.00,139.20,9.60,0 --144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0 --148.80,9.60,10.25,0.00,1.00,148.80,9.60,0 --153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0 --158.40,4.80,10.30,0.00,1.00,158.40,4.80,0 --163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0 --168.00,4.80,10.34,0.00,1.00,168.00,4.80,0 --172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0 -148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0 -144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0 -139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0 -134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0 -129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0 -124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0 -120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0 -115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0 -110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0 -105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0 -100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0 -96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0 -91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0 -86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0 -81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0 -76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0 -72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0 -67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0 -62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0 -48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0 -43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0 -38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0 -33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0 -28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0 -24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0 -19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0 -14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,11.21,0.00,1.00,0.00,0.00,0 --9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0 --14.40,0.00,11.26,0.00,1.00,9.60,0.00,0 --19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0 --24.00,4.80,11.30,0.00,1.00,14.40,4.80,0 --28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0 --33.60,4.80,11.34,0.00,1.00,24.00,4.80,0 --38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0 --43.20,4.80,11.39,0.00,1.00,33.60,4.80,0 --48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0 --52.80,9.60,11.43,0.00,1.00,43.20,4.80,0 --57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0 --62.40,9.60,11.47,0.00,1.00,52.80,4.80,0 --67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0 --72.00,9.60,11.51,0.00,1.00,62.40,9.60,0 --76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0 --81.60,9.60,11.56,0.00,1.00,72.00,9.60,0 --86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0 --91.20,9.60,11.60,0.00,1.00,86.40,9.60,0 --96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0 --100.80,9.60,11.64,0.00,1.00,96.00,9.60,0 --105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0 --110.40,9.60,11.68,0.00,1.00,110.40,9.60,0 --115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0 --120.00,9.60,11.73,0.00,1.00,120.00,9.60,0 --124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0 --129.60,9.60,11.77,0.00,1.00,129.60,4.80,0 --134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0 --139.20,4.80,11.81,0.00,1.00,139.20,4.80,0 --144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0 --148.80,4.80,11.86,0.00,1.00,148.80,4.80,0 --153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0 --158.40,4.80,11.90,0.00,1.00,158.40,4.80,0 --163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0 --168.00,0.00,11.94,0.00,1.00,168.00,4.80,0 --172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0 -158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0 -148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0 -144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0 -139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0 -134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0 -129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0 -124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0 -120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0 -115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0 -110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0 -105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0 -100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0 -96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0 -91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0 -86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0 -81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0 -76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0 -72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0 -67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0 -62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0 -57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0 -43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0 -33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0 -28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0 -24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0 -19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,12.82,0.00,1.00,0.00,0.00,0 --9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0 --14.40,0.00,12.86,0.00,1.00,9.60,0.00,0 --19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0 --24.00,0.00,12.90,0.00,1.00,14.40,0.00,0 --28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0 --33.60,4.80,12.95,0.00,1.00,24.00,0.00,0 --38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0 --43.20,4.80,12.99,0.00,1.00,28.80,0.00,0 --48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0 --52.80,4.80,13.03,0.00,1.00,38.40,4.80,0 --57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0 --62.40,4.80,13.07,0.00,1.00,48.00,4.80,0 --67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0 --72.00,4.80,13.12,0.00,1.00,62.40,4.80,0 --76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0 --81.60,4.80,13.16,0.00,1.00,72.00,4.80,0 --86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0 --91.20,4.80,13.20,0.00,1.00,86.40,4.80,0 --96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0 --100.80,4.80,13.24,0.00,1.00,96.00,4.80,0 --105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0 --110.40,4.80,13.29,0.00,1.00,110.40,4.80,0 --115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0 --120.00,4.80,13.33,0.00,1.00,120.00,4.80,0 --124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0 --129.60,4.80,13.37,0.00,1.00,134.40,4.80,0 --134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0 --139.20,4.80,13.42,0.00,1.00,144.00,4.80,0 --144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0 --148.80,4.80,13.46,0.00,1.00,153.60,0.00,0 --153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0 --158.40,0.00,13.50,0.00,1.00,158.40,0.00,0 --163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0 --168.00,0.00,13.54,0.00,1.00,168.00,0.00,0 --172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0 -163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0 -158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0 -153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0 -148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0 -144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0 -139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0 -134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0 -129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0 -124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0 -120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0 -115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0 -110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0 -105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0 -100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0 -96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0 -91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0 -86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0 -81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0 -76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0 -72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0 -67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0 -57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0 -52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0 -43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0 -33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0 -28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0 -24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0 -19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0 -14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0 -9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,14.42,0.00,1.00,0.00,0.00,0 --9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0 --14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0 --19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0 --24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0 --28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0 --33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0 --38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0 --43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0 --48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0 --52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0 --57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0 --62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0 --67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0 --72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0 --76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0 --81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0 --86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0 --91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0 --96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0 --100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0 --105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0 --110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0 --115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0 --120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0 --124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0 --129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0 --134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0 --139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0 --144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0 --148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0 --153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0 --158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0 --163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0 --168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0 --172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0 -177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0 -172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0 -168.00,0.00,15.25,0.00,1.00,4.80,0.00,0 -163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0 -158.40,0.00,15.30,0.00,1.00,9.60,0.00,0 -153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0 -148.80,0.00,15.34,0.00,1.00,19.20,0.00,0 -144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0 -139.20,0.00,15.38,0.00,1.00,28.80,0.00,0 -134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0 -129.60,0.00,15.42,0.00,1.00,33.60,0.00,0 -124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0 -120.00,0.00,15.47,0.00,1.00,43.20,0.00,0 -115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0 -110.40,0.00,15.51,0.00,1.00,57.60,0.00,0 -105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0 -100.80,0.00,15.55,0.00,1.00,67.20,0.00,0 -96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0 -91.20,0.00,15.59,0.00,1.00,81.60,0.00,0 -86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0 -81.60,0.00,15.64,0.00,1.00,96.00,0.00,0 -76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0 -72.00,0.00,15.68,0.00,1.00,110.40,0.00,0 -67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0 -62.40,0.00,15.72,0.00,1.00,120.00,0.00,0 -57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0 -52.80,0.00,15.77,0.00,1.00,134.40,0.00,0 -48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0 -43.20,0.00,15.81,0.00,1.00,144.00,0.00,0 -38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0 -33.60,0.00,15.85,0.00,1.00,153.60,0.00,0 -28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0 -24.00,0.00,15.89,0.00,1.00,158.40,0.00,0 -19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0 -14.40,0.00,15.94,0.00,1.00,168.00,0.00,0 -9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0 -4.80,0.00,15.98,0.00,1.00,172.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC16c_ISM3.csv b/scripts/testv/stvOMASA_4ISM_1MASA2TC16c_ISM3.csv deleted file mode 100644 index 14eee9b693b536fa2fd22d2813d7f588b8930b06..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_1MASA2TC16c_ISM3.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0 --177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0 -4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0 --168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0 -14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0 --163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0 -19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0 --153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0 -28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0 --148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0 -38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0 --139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0 -48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0 --124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0 -57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0 --115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0 -72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0 --100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0 -86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0 --86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0 -100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0 --76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0 -110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0 --62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0 -124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0 --52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0 -134.40,33.60,0.28,0.00,1.00,177.60,0.00,0 --38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0 -144.00,28.80,0.30,0.00,1.00,177.60,0.00,0 --33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0 -153.60,24.00,0.32,0.00,1.00,177.60,0.00,0 --24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0 -158.40,19.20,0.34,0.00,1.00,177.60,0.00,0 --14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0 -168.00,9.60,0.36,0.00,1.00,177.60,0.00,0 --9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0 -172.80,4.80,0.38,0.00,1.00,177.60,0.00,0 --0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0 --177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0 -4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0 -14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0 -19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0 --158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0 -28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0 --148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0 -33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0 --139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0 -43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0 --129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0 -57.60,38.40,15.47,0.00,1.00,177.60,0.00,0 --120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0 -67.20,43.20,15.44,0.00,1.00,177.60,0.00,0 --105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0 -81.60,43.20,15.42,0.00,1.00,177.60,0.00,0 --91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0 -96.00,43.20,15.40,0.00,1.00,0.00,0.00,0 --76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0 -110.40,43.20,15.38,0.00,1.00,0.00,0.00,0 --67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0 -120.00,38.40,15.36,0.00,1.00,0.00,0.00,0 --52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0 -129.60,38.40,15.34,0.00,1.00,0.00,0.00,0 --43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0 -144.00,33.60,15.32,0.00,1.00,0.00,0.00,0 --33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0 -148.80,24.00,15.30,0.00,1.00,0.00,0.00,0 --24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0 -158.40,19.20,15.27,0.00,1.00,0.00,0.00,0 --19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0 -168.00,14.40,15.25,0.00,1.00,0.00,0.00,0 --9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0 -172.80,4.80,15.23,0.00,1.00,0.00,0.00,0 --4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0 -0.00,0.00,15.21,0.00,1.00,0.00,0.00,0 --177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0 -9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0 -14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0 --163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0 -24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0 --153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0 -28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0 --144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0 -38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0 --134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0 -48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0 --124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0 -62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0 --115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0 -72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0 --100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0 -86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0 --86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0 -96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0 --76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0 -110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0 --62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0 -120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0 --52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0 -134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0 --43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0 -144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0 --33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0 -148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0 --24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0 -158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0 --19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0 -168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0 --9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0 -172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0 -4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0 -14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0 -19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0 --153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0 -28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0 --148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0 -38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0 --139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0 -48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0 --124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0 -57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0 --115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0 -72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0 --105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0 -81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0 --91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0 -96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0 --76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0 -105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0 --67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0 -120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0 --57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0 -129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0 --43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0 -139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0 --33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0 -148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0 --28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0 -158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0 --19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0 -163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0 --9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0 -172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0 -0.00,0.00,1.60,0.00,1.00,0.00,0.00,0 --177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0 -9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0 -14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0 --158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0 -24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0 --153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0 -33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0 --144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0 -43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0 --134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0 -52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0 --124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0 -62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0 --110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0 -72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0 --100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0 -86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0 --86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0 -96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0 --76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0 -110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0 --67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0 -120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0 --52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0 -129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0 --43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0 -139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0 --33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0 -148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0 --24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0 -158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0 --19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0 -168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0 -172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0 -4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0 -14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0 --163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0 -24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0 --153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0 -28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0 --144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0 -38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0 --134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0 -48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0 --124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0 -62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0 --115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0 -72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0 --100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0 -81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0 --91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0 -96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0 --81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0 -105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0 --67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0 -115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0 --57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0 -129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0 --48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0 -139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0 --38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0 -148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0 --28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0 -153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0 --19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0 -163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0 --9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0 -172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0 -0.00,0.00,13.61,0.00,1.00,0.00,0.00,0 --177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0 -9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0 --168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0 -24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0 --148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0 -33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0 --139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0 -43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0 --129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0 -52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0 --120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0 -62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0 --110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0 -76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0 --100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0 -86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0 --86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0 -96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0 --76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0 -105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0 --67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0 -120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0 --57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0 -129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0 --48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0 -139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0 --38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0 -148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0 -158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0 --19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0 -163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0 -172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0 -4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0 -14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0 --163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0 -24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0 --153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0 -33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0 --144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0 -43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0 --134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0 -52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0 --124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0 -62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0 --115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0 -72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0 --100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0 -81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0 --91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0 -96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0 --81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0 -105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0 --67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0 -115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0 --57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0 -124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0 --48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0 -134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0 --38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0 -144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0 --28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0 -153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0 --19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0 -163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0 --14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0 -172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0 --4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0 -0.00,0.00,3.20,0.00,1.00,0.00,0.00,0 --177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0 -9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0 -19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0 -24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0 --148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0 -33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0 --139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0 -43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0 --129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0 -52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0 --120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0 -67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0 --110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0 -76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0 --100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0 -86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0 --86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0 -96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0 --76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0 -105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0 --67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0 -115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0 --57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0 -129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0 --48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0 -139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0 --38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0 -148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0 -153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0 --19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0 -163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0 -172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0 -4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0 -14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0 -24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0 --153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0 -33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0 --144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0 -43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0 --134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0 -52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0 --124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0 -62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0 --110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0 -72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0 --100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0 -81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0 --91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0 -96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0 --81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0 -105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0 --72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0 -115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0 --57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0 -124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0 --48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0 -134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0 --38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0 -144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0 --28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0 -153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0 --24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0 -163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0 --14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0 -172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -0.00,0.00,12.01,0.00,1.00,0.00,0.00,0 --177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0 -9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0 --158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0 -28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0 --148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0 -38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0 --139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0 -48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0 --129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0 -57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0 --120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0 -67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0 --110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0 -76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0 --100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0 -86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0 --86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0 -96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0 --76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0 -105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0 --67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0 -115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0 --57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0 -124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0 --48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0 -134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0 --38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0 -144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0 --28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0 -153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0 --19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0 -163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0 -172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0 -4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0 -14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0 -24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0 --148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0 -33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0 --139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0 -43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0 --129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0 -52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0 --120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0 -62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0 --110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0 -72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0 --100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0 -81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0 --91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0 -96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0 --81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0 -105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0 --72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0 -115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0 --62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0 -124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0 --52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0 -134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0 --43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0 -144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0 --33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0 -153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0 --24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0 -163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0 -172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0 -0.00,0.00,4.81,0.00,1.00,0.00,0.00,0 --177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0 -9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0 -19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0 -28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0 --148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0 -38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0 --139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0 -48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0 --129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0 -57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0 --120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0 -67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0 --110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0 -76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0 --100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0 -86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0 --86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0 -96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0 --76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0 -105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0 --67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0 -115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0 --57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0 -124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0 --48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0 -134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0 --38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0 -144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0 --28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0 -153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0 --19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0 -163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0 --9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0 -172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0 -4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0 -14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0 -24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0 --148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0 -33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0 --139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0 -43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0 --129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0 -52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0 --120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0 -62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0 --110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0 -72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0 --100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0 -81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0 --91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0 -96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0 --81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0 -105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0 --72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0 -115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0 --62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0 -124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0 --52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0 -134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0 --43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0 -144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0 --33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0 -153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0 --24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0 -163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0 -172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -0.00,0.00,10.40,0.00,1.00,0.00,0.00,0 --177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0 -9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0 -19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0 -28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0 --148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0 -38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0 --139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0 -48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0 --129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0 -57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0 --120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0 -67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0 --110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0 -76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0 --100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0 -86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0 --86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0 -96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0 --76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0 -105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0 --67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0 -115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0 --57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0 -124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0 --48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0 -134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0 --38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0 -144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0 --28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0 -153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0 -163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0 --9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0 -172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0 -4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0 -14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0 -24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0 -33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0 --139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0 -43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0 --129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0 -52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0 --120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0 -62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0 --110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0 -72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0 --100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0 -81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0 --91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0 -96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0 --81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0 -105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0 --72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0 -115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0 --62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0 -124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0 --52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0 -134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0 --43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0 -144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0 --33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0 -153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0 --24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0 -163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0 -172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,6.41,0.00,1.00,0.00,0.00,0 --177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0 -9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0 -19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0 --158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0 -28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0 --148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0 -38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0 --139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0 -48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0 --129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0 -57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0 --120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0 -67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0 --110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0 -76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0 --100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0 -86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0 --86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0 -96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0 --76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0 -105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0 --67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0 -115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0 --57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0 -124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0 --48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0 -134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0 --38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0 -144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0 --28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0 -153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0 -163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0 -172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0 -4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0 -14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0 --158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0 -24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0 -33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0 --139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0 -43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0 --129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0 -52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0 --120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0 -62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0 --110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0 -72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0 --100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0 -81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0 --91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0 -96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0 --81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0 -105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0 --72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0 -115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0 --62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0 -124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0 --52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0 -134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0 --43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0 -144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0 --33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0 -153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0 --24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0 -163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0 --14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0 -172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.80,0.00,1.00,0.00,0.00,0 --177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0 -9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0 -19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0 --158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0 -28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0 --148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0 -38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0 --139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0 -48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0 --129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0 -57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0 --120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0 -67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0 --110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0 -76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0 --100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0 -86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0 --86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0 -96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0 --76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0 -105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0 --67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0 -115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0 --57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0 -124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0 --48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0 -134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0 --38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0 -144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0 --28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0 -153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0 --19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0 -163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0 -172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0 --0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0 -4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0 --168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0 -14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0 --158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0 -24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0 --148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0 -33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0 --139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0 -43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0 --129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0 -52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0 --120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0 -62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0 --110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0 -72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0 --100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0 -81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0 --91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0 -96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0 --81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0 -105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0 --72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0 -115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0 --62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0 -124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0 --52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0 -134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0 --43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0 -144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0 --33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0 -153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0 --24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0 -163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0 --14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0 -172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.01,0.00,1.00,0.00,0.00,0 --177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0 --168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0 -19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0 --158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0 -28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0 --148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0 -38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0 --139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0 -48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0 --129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0 -57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0 --120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0 -67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0 --110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0 -76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0 --100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0 -86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0 --86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0 -96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0 --76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0 -105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0 --67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0 -115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0 --57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0 -124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0 --48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0 -134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0 --38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0 -144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0 --28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0 -153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0 --19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0 -163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0 --9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0 -172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0 --0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0 --168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0 -14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0 --158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0 -24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0 --148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0 -33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0 --139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0 -43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0 --129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0 -52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0 --120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0 -62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0 --110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0 -72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0 --100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0 -81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0 --91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0 -96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0 --81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0 -105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0 --72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0 -115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0 --62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0 -124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0 --52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0 -134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0 --43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0 -144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0 --33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0 -153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0 --24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0 -163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0 --14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0 --4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0 -0.00,0.00,7.20,0.00,1.00,0.00,0.00,0 --177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0 --168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0 -19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0 --158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0 --148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0 -38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0 --139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0 -48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0 --129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0 -57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0 --120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0 -67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0 --110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0 -76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0 --100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0 -86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0 --86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0 -96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0 --76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0 -105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0 --67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0 -115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0 --57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0 -124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0 --48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0 -134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0 --38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0 -144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0 --28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0 --19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0 -163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0 --9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0 --0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0 --168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0 -14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0 --158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0 --148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0 -33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0 --139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0 -43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0 --129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0 -52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0 --120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0 -62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0 --110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0 -72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0 --100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0 -81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0 --91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0 -96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0 --81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0 -105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0 --72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0 -115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0 --62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0 -124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0 --52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0 -134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0 --43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0 -144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0 --33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0 -153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0 --24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0 --14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0 --4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0 -0.00,0.00,9.61,0.00,1.00,0.00,0.00,0 --177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0 --168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0 --158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0 --148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0 --139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0 -48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0 --129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0 -57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0 --120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0 -67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0 --110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0 -76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0 --100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0 -86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0 --86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0 -96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0 --76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0 -105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0 --67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0 -115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0 --57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0 -124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0 --48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0 -134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0 --38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0 --28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0 --19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0 -163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0 --9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0 --0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0 --168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0 --158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0 --148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0 -33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0 --139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0 -43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0 --129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0 -52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0 --120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0 -62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0 --110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0 -72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0 --100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0 -81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0 --91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0 -96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0 --81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0 -105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0 --72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0 -115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0 --62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0 -124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0 --52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0 -134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0 --43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0 -144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0 --33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0 -153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0 --24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0 --14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0 -172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0 --4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0 -0.00,0.00,5.60,0.00,1.00,0.00,0.00,0 --177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0 --168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0 --158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0 -28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0 --148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0 --139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0 -48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0 --129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0 -57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0 --120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0 -67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0 --110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0 -76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0 --100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0 -86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0 --86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0 -96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0 --76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0 -105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0 --67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0 -115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0 --57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0 -124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0 --48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0 -134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0 --38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0 --28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0 -153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0 --19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0 --9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0 --0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0 --168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0 --158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0 --148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0 -33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0 --139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0 -43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0 --129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0 -52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0 --120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0 -62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0 --110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0 -72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0 --100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0 -81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0 --91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0 -96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0 --81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0 -105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0 --72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0 -115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0 --62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0 -124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0 --52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0 -134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0 --43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0 -144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0 --33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0 -153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0 --24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0 --14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0 --4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0 -0.00,0.00,11.21,0.00,1.00,0.00,0.00,0 --177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0 --168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0 --158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0 -28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0 --148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0 -38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0 --139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0 -48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0 --129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0 -57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0 --120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0 -67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0 --110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0 -76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0 --100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0 -86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0 --86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0 -96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0 --76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0 -105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0 --67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0 -115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0 --57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0 -124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0 --48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0 -134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0 --38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0 -144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0 --28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0 -153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0 --19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0 --9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0 --0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0 --168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0 --158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0 --148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0 --139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0 -43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0 --129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0 -52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0 --120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0 -62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0 --110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0 -72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0 --100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0 -81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0 --91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0 -96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0 --81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0 -105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0 --72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0 -115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0 --62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0 -124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0 --52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0 -134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0 --43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0 --33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0 -153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0 --24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0 -163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0 --14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0 --4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,3.99,0.00,1.00,0.00,0.00,0 --177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0 --168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0 -19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0 --158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0 --148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0 -33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0 --139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0 -43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0 --129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0 -52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0 --120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0 -62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0 --110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0 -76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0 --100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0 -86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0 --86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0 -96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0 --76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0 -105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0 --67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0 -120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0 --57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0 --48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0 -139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0 --38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0 -148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0 --28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0 -158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0 --19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0 -163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0 --9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0 --0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0 --168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0 --158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0 --153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0 --144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0 -43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0 --134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0 --124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0 -62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0 --110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0 -72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0 --100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0 -81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0 --91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0 -96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0 --81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0 -105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0 --72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0 -115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0 --57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0 -124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0 --48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0 -134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0 --38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0 --28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0 --24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0 --14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0 --4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,12.82,0.00,1.00,0.00,0.00,0 --177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0 --168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0 --158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0 --148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0 -33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0 --139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0 --129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0 --120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0 -62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0 --110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0 -76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0 --100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0 -86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0 --86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0 -96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0 --76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0 -110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0 --67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0 -120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0 --57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0 --48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0 --38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0 --28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0 --19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0 --9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0 --0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0 --168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0 --163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0 --153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0 -33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0 --144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0 -43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0 --134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0 --124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0 -62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0 --115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0 -72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0 --100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0 -81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0 --91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0 -96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0 --81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0 -105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0 --67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0 -115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0 --57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0 -124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0 --48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0 -134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0 --38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0 -144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0 --28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0 --19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0 --14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0 --4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,2.39,0.00,1.00,0.00,0.00,0 --177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0 --168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0 --158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0 --153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0 -33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0 --144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0 --134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0 --124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0 -62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0 --110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0 -72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0 --100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0 -86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0 --86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0 -96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0 --76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0 -110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0 --67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0 -120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0 --52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0 -129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0 --43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0 --33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0 --24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0 --19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0 --9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0 --0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0 --168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0 --163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0 --153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0 -28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0 --144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0 -38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0 --134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0 -48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0 --124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0 -57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0 --115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0 -72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0 --105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0 -81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0 --91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0 -96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0 --81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0 -105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0 --67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0 -120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0 --57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0 -129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0 --48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0 -139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0 --38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0 --28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0 -158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0 --19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0 --9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0 --4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0 -0.00,0.00,14.42,0.00,1.00,0.00,0.00,0 --177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0 --168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0 --163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0 -24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0 --153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0 -28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0 --144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0 -38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0 --134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0 -48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0 --124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0 -62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0 --115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0 -72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0 --100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0 -86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0 --86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0 -96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0 --76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0 -110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0 --62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0 -120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0 --52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0 -134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0 --43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0 --33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0 --24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0 -158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0 --14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0 --9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0 --0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0 --172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0 --163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0 --153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0 --148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0 -38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0 --139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0 -48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0 --129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0 --115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0 -67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0 --105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0 -81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0 --91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0 -96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0 --76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0 -105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0 --67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0 -120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0 --52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0 -129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0 --43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0 -139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0 --33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0 --28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0 --19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0 -163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0 --9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0 --4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0 -0.00,0.00,0.79,0.00,1.00,0.00,0.00,0 --177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0 -4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0 --168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0 --163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0 -19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0 --153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0 -28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0 --148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0 -38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0 --139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0 -48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0 --124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0 -57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0 --115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0 -72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0 --100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0 -86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0 --86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0 -100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0 --76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0 -110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0 --62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0 -124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0 --48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0 -134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0 --38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0 --28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0 --24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0 -163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0 --14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0 -168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0 --9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0 --0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0 --177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0 --172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0 -9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0 --163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0 --158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0 --148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0 -33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0 --139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0 -43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0 --129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0 --120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0 -67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0 --105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0 -81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0 --91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0 -96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0 --76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0 -110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0 --67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0 -120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0 --52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0 -134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0 --43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0 -144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0 --33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0 -153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0 --24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0 --19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0 -168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0 --9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0 --4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0 diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC16c_ISM4.csv b/scripts/testv/stvOMASA_4ISM_1MASA2TC16c_ISM4.csv deleted file mode 100644 index 8a14c3413ddd2dd47415bf6de3e19631f65f8f6c..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_1MASA2TC16c_ISM4.csv +++ /dev/null @@ -1,1500 +0,0 @@ --0.00,0.00,0.00,0.00,1.00,0.00,4.80,0 --0.00,4.80,0.06,0.00,1.00,4.80,9.60,0 --0.00,9.60,0.13,0.00,1.00,9.60,14.40,0 --0.00,14.40,0.19,0.00,1.00,14.40,19.20,0 --0.00,19.20,0.26,0.00,1.00,19.20,24.00,0 --0.00,24.00,0.32,0.00,1.00,24.00,28.80,0 --0.00,28.80,0.39,0.00,1.00,28.80,33.60,0 --0.00,33.60,0.45,0.00,1.00,33.60,38.40,0 --0.00,38.40,0.51,0.00,1.00,38.40,43.20,0 --0.00,43.20,0.58,0.00,1.00,43.20,48.00,0 --0.00,48.00,0.64,0.00,1.00,48.00,52.80,0 --0.00,52.80,0.71,0.00,1.00,52.80,57.60,0 --0.00,57.60,0.77,0.00,1.00,57.60,62.40,0 --0.00,62.40,0.84,0.00,1.00,62.40,67.20,0 --0.00,67.20,0.90,0.00,1.00,67.20,72.00,0 --0.00,72.00,0.96,0.00,1.00,72.00,76.80,0 --0.00,76.80,1.03,0.00,1.00,76.80,81.60,0 --0.00,81.60,1.09,0.00,1.00,81.60,86.40,0 --0.00,86.40,1.16,0.00,1.00,86.40,86.40,0 --177.60,89.20,1.22,0.00,1.00,91.20,81.60,0 --177.60,86.40,1.29,0.00,1.00,96.00,76.80,0 --177.60,81.60,1.35,0.00,1.00,100.80,72.00,0 --177.60,76.80,1.41,0.00,1.00,105.60,67.20,0 --177.60,72.00,1.48,0.00,1.00,110.40,62.40,0 --177.60,67.20,1.54,0.00,1.00,115.20,57.60,0 -177.60,62.40,1.61,0.00,1.00,120.00,52.80,0 -177.60,57.60,1.67,0.00,1.00,124.80,48.00,0 -177.60,52.80,1.73,0.00,1.00,129.60,43.20,0 -177.60,48.00,1.80,0.00,1.00,134.40,38.40,0 -177.60,43.20,1.86,0.00,1.00,139.20,33.60,0 -177.60,38.40,1.93,0.00,1.00,144.00,28.80,0 -177.60,33.60,1.99,0.00,1.00,148.80,24.00,0 -177.60,28.80,2.06,0.00,1.00,153.60,19.20,0 -177.60,24.00,2.12,0.00,1.00,158.40,14.40,0 -177.60,19.20,2.18,0.00,1.00,163.20,9.60,0 -177.60,14.40,2.25,0.00,1.00,168.00,4.80,0 -177.60,9.60,2.31,0.00,1.00,172.80,0.00,0 -177.60,4.80,2.38,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,2.44,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,2.51,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,2.57,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,2.63,0.00,1.00,-163.20,-19.20,0 --177.60,-19.20,2.70,0.00,1.00,-158.40,-24.00,0 --177.60,-24.00,2.76,0.00,1.00,-153.60,-28.80,0 --177.60,-28.80,2.83,0.00,1.00,-148.80,-33.60,0 --177.60,-33.60,2.89,0.00,1.00,-144.00,-38.40,0 --177.60,-38.40,2.96,0.00,1.00,-139.20,-43.20,0 --177.60,-48.00,3.02,0.00,1.00,-134.40,-48.00,0 --177.60,-48.00,3.08,0.00,1.00,-129.60,-52.80,0 --177.60,-52.80,3.15,0.00,1.00,-124.80,-57.60,0 --177.60,-57.60,3.21,0.00,1.00,-120.00,-62.40,0 -177.60,-62.40,3.28,0.00,1.00,-115.20,-67.20,0 -177.60,-67.20,3.34,0.00,1.00,-110.40,-72.00,0 -177.60,-76.80,3.41,0.00,1.00,-105.60,-76.80,0 -177.60,-76.80,3.47,0.00,1.00,-100.80,-81.60,0 -177.60,-86.40,3.53,0.00,1.00,-96.00,-86.40,0 -177.60,-89.20,3.60,0.00,1.00,-91.20,-86.40,0 -0.00,-86.40,3.66,0.00,1.00,-86.40,-81.60,0 -0.00,-81.60,3.73,0.00,1.00,-81.60,-76.80,0 -0.00,-76.80,3.79,0.00,1.00,-76.80,-72.00,0 -0.00,-72.00,3.86,0.00,1.00,-72.00,-67.20,0 -0.00,-67.20,3.92,0.00,1.00,-67.20,-62.40,0 -0.00,-62.40,3.98,0.00,1.00,-62.40,-57.60,0 -0.00,-57.60,4.05,0.00,1.00,-57.60,-52.80,0 -0.00,-52.80,4.11,0.00,1.00,-52.80,-48.00,0 -0.00,-48.00,4.18,0.00,1.00,-48.00,-43.20,0 -0.00,-43.20,4.24,0.00,1.00,-43.20,-38.40,0 -0.00,-38.40,4.31,0.00,1.00,-38.40,-33.60,0 -0.00,-33.60,4.37,0.00,1.00,-33.60,-28.80,0 -0.00,-28.80,4.43,0.00,1.00,-28.80,-24.00,0 -0.00,-24.00,4.50,0.00,1.00,-24.00,-19.20,0 -0.00,-19.20,4.56,0.00,1.00,-19.20,-14.40,0 -0.00,-14.40,4.63,0.00,1.00,-14.40,-9.60,0 -0.00,-9.60,4.69,0.00,1.00,-9.60,-4.80,0 -0.00,-4.80,4.76,0.00,1.00,-4.80,0.00,0 -0.00,0.00,4.82,0.00,1.00,0.00,4.80,0 -0.00,4.80,4.88,0.00,1.00,4.80,9.60,0 -0.00,9.60,4.95,0.00,1.00,9.60,14.40,0 -0.00,14.40,5.01,0.00,1.00,14.40,19.20,0 -0.00,19.20,5.08,0.00,1.00,19.20,24.00,0 -0.00,24.00,5.14,0.00,1.00,24.00,28.80,0 -4.80,28.80,5.20,0.00,1.00,28.80,33.60,0 -4.80,33.60,5.27,0.00,1.00,33.60,38.40,0 -4.80,38.40,5.33,0.00,1.00,38.40,43.20,0 -4.80,43.20,5.40,0.00,1.00,43.20,48.00,0 -4.80,48.00,5.46,0.00,1.00,48.00,52.80,0 -4.80,52.80,5.53,0.00,1.00,52.80,57.60,0 -9.60,57.60,5.59,0.00,1.00,57.60,62.40,0 -9.60,62.40,5.65,0.00,1.00,62.40,67.20,0 -9.60,67.20,5.72,0.00,1.00,67.20,72.00,0 -14.40,72.00,5.78,0.00,1.00,72.00,76.80,0 -19.20,76.80,5.85,0.00,1.00,76.80,81.60,0 -28.80,81.60,5.91,0.00,1.00,81.60,86.40,0 -52.80,86.40,5.98,0.00,1.00,86.40,86.40,0 -105.60,86.40,6.04,0.00,1.00,91.20,81.60,0 -139.20,81.60,6.10,0.00,1.00,96.00,76.80,0 -158.40,76.80,6.17,0.00,1.00,100.80,72.00,0 -163.20,72.00,6.23,0.00,1.00,105.60,67.20,0 -168.00,67.20,6.30,0.00,1.00,110.40,62.40,0 -168.00,62.40,6.36,0.00,1.00,115.20,57.60,0 -172.80,57.60,6.43,0.00,1.00,120.00,52.80,0 -172.80,52.80,6.49,0.00,1.00,124.80,48.00,0 -172.80,48.00,6.55,0.00,1.00,129.60,43.20,0 -172.80,43.20,6.62,0.00,1.00,134.40,38.40,0 -177.60,38.40,6.68,0.00,1.00,139.20,33.60,0 -177.60,33.60,6.75,0.00,1.00,144.00,28.80,0 -177.60,28.80,6.81,0.00,1.00,148.80,24.00,0 -177.60,24.00,6.88,0.00,1.00,153.60,19.20,0 -177.60,19.20,6.94,0.00,1.00,158.40,14.40,0 -177.60,14.40,7.00,0.00,1.00,163.20,9.60,0 -177.60,9.60,7.07,0.00,1.00,168.00,4.80,0 -177.60,4.80,7.13,0.00,1.00,172.80,0.00,0 -177.60,0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,7.26,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,7.33,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,7.39,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,7.45,0.00,1.00,-163.20,-19.20,0 --177.60,-19.20,7.52,0.00,1.00,-158.40,-24.00,0 --177.60,-24.00,7.58,0.00,1.00,-153.60,-28.80,0 --177.60,-28.80,7.65,0.00,1.00,-148.80,-33.60,0 --177.60,-33.60,7.71,0.00,1.00,-144.00,-38.40,0 --177.60,-38.40,7.78,0.00,1.00,-139.20,-43.20,0 --172.80,-43.20,7.84,0.00,1.00,-134.40,-48.00,0 --172.80,-48.00,7.90,0.00,1.00,-129.60,-52.80,0 --172.80,-52.80,7.97,0.00,1.00,-124.80,-57.60,0 --172.80,-57.60,8.03,0.00,1.00,-120.00,-62.40,0 --168.00,-62.40,8.10,0.00,1.00,-115.20,-67.20,0 --168.00,-67.20,8.16,0.00,1.00,-110.40,-72.00,0 --163.20,-72.00,8.22,0.00,1.00,-105.60,-76.80,0 --158.40,-76.80,8.29,0.00,1.00,-100.80,-81.60,0 --139.20,-81.60,8.35,0.00,1.00,-96.00,-86.40,0 --105.60,-86.40,8.42,0.00,1.00,-91.20,-86.40,0 --52.80,-86.40,8.48,0.00,1.00,-86.40,-81.60,0 --28.80,-81.60,8.55,0.00,1.00,-81.60,-76.80,0 --19.20,-76.80,8.61,0.00,1.00,-76.80,-72.00,0 --14.40,-72.00,8.67,0.00,1.00,-72.00,-67.20,0 --9.60,-67.20,8.74,0.00,1.00,-67.20,-62.40,0 --9.60,-62.40,8.80,0.00,1.00,-62.40,-57.60,0 --9.60,-57.60,8.87,0.00,1.00,-57.60,-52.80,0 --4.80,-52.80,8.93,0.00,1.00,-52.80,-48.00,0 --4.80,-48.00,9.00,0.00,1.00,-48.00,-43.20,0 --4.80,-43.20,9.06,0.00,1.00,-43.20,-38.40,0 --4.80,-38.40,9.12,0.00,1.00,-38.40,-33.60,0 --4.80,-33.60,9.19,0.00,1.00,-33.60,-28.80,0 --4.80,-28.80,9.25,0.00,1.00,-28.80,-24.00,0 --0.00,-24.00,9.32,0.00,1.00,-24.00,-19.20,0 --0.00,-19.20,9.38,0.00,1.00,-19.20,-14.40,0 --0.00,-14.40,9.45,0.00,1.00,-14.40,-9.60,0 --0.00,-9.60,9.51,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,9.57,0.00,1.00,-4.80,0.00,0 -0.00,0.00,9.64,0.00,1.00,0.00,4.80,0 -0.00,4.80,9.70,0.00,1.00,4.80,9.60,0 -0.00,9.60,9.77,0.00,1.00,9.60,14.40,0 -4.80,14.40,9.83,0.00,1.00,14.40,19.20,0 -4.80,19.20,9.90,0.00,1.00,19.20,24.00,0 -4.80,24.00,9.96,0.00,1.00,24.00,28.80,0 -4.80,28.80,10.02,0.00,1.00,28.80,33.60,0 -4.80,33.60,10.09,0.00,1.00,33.60,38.40,0 -9.60,38.40,10.15,0.00,1.00,38.40,43.20,0 -9.60,43.20,10.22,0.00,1.00,43.20,48.00,0 -9.60,48.00,10.28,0.00,1.00,48.00,52.80,0 -14.40,52.80,10.35,0.00,1.00,52.80,57.60,0 -14.40,57.60,10.41,0.00,1.00,57.60,62.40,0 -19.20,62.40,10.47,0.00,1.00,62.40,67.20,0 -24.00,67.20,10.54,0.00,1.00,67.20,72.00,0 -28.80,72.00,10.60,0.00,1.00,72.00,72.00,0 -33.60,72.00,10.67,0.00,1.00,76.80,76.80,0 -48.00,76.80,10.73,0.00,1.00,81.60,81.60,0 -67.20,81.60,10.80,0.00,1.00,86.40,81.60,0 -96.00,81.60,10.86,0.00,1.00,91.20,81.60,0 -120.00,76.80,10.92,0.00,1.00,96.00,76.80,0 -139.20,76.80,10.99,0.00,1.00,100.80,72.00,0 -148.80,72.00,11.05,0.00,1.00,105.60,67.20,0 -153.60,67.20,11.12,0.00,1.00,110.40,62.40,0 -158.40,62.40,11.18,0.00,1.00,115.20,57.60,0 -163.20,57.60,11.24,0.00,1.00,120.00,52.80,0 -168.00,52.80,11.31,0.00,1.00,124.80,48.00,0 -168.00,48.00,11.37,0.00,1.00,129.60,43.20,0 -168.00,43.20,11.44,0.00,1.00,134.40,38.40,0 -172.80,38.40,11.50,0.00,1.00,139.20,33.60,0 -172.80,33.60,11.57,0.00,1.00,144.00,28.80,0 -172.80,28.80,11.63,0.00,1.00,148.80,24.00,0 -177.60,24.00,11.69,0.00,1.00,153.60,19.20,0 -177.60,19.20,11.76,0.00,1.00,158.40,14.40,0 -177.60,14.40,11.82,0.00,1.00,163.20,9.60,0 -177.60,9.60,11.89,0.00,1.00,168.00,4.80,0 -177.60,4.80,11.95,0.00,1.00,172.80,0.00,0 -177.60,0.00,12.02,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,12.08,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,12.14,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,12.21,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,12.27,0.00,1.00,-163.20,-19.20,0 --177.60,-19.20,12.34,0.00,1.00,-158.40,-24.00,0 --177.60,-24.00,12.40,0.00,1.00,-153.60,-28.80,0 --172.80,-28.80,12.47,0.00,1.00,-148.80,-33.60,0 --172.80,-33.60,12.53,0.00,1.00,-144.00,-38.40,0 --172.80,-38.40,12.59,0.00,1.00,-139.20,-43.20,0 --168.00,-43.20,12.66,0.00,1.00,-134.40,-48.00,0 --168.00,-48.00,12.72,0.00,1.00,-129.60,-52.80,0 --168.00,-52.80,12.79,0.00,1.00,-124.80,-57.60,0 --163.20,-57.60,12.85,0.00,1.00,-120.00,-62.40,0 --158.40,-62.40,12.92,0.00,1.00,-115.20,-67.20,0 --153.60,-67.20,12.98,0.00,1.00,-110.40,-72.00,0 --148.80,-72.00,13.04,0.00,1.00,-105.60,-76.80,0 --139.20,-76.80,13.11,0.00,1.00,-100.80,-81.60,0 --120.00,-76.80,13.17,0.00,1.00,-96.00,-81.60,0 --96.00,-81.60,13.24,0.00,1.00,-91.20,-81.60,0 --67.20,-81.60,13.30,0.00,1.00,-86.40,-76.80,0 --48.00,-76.80,13.37,0.00,1.00,-81.60,-72.00,0 --33.60,-72.00,13.43,0.00,1.00,-76.80,-72.00,0 --28.80,-72.00,13.49,0.00,1.00,-72.00,-67.20,0 --24.00,-67.20,13.56,0.00,1.00,-67.20,-62.40,0 --19.20,-62.40,13.62,0.00,1.00,-62.40,-57.60,0 --14.40,-57.60,13.69,0.00,1.00,-57.60,-52.80,0 --14.40,-52.80,13.75,0.00,1.00,-52.80,-48.00,0 --9.60,-48.00,13.82,0.00,1.00,-48.00,-43.20,0 --9.60,-43.20,13.88,0.00,1.00,-43.20,-38.40,0 --9.60,-38.40,13.94,0.00,1.00,-38.40,-33.60,0 --4.80,-33.60,14.01,0.00,1.00,-33.60,-28.80,0 --4.80,-28.80,14.07,0.00,1.00,-28.80,-24.00,0 --4.80,-24.00,14.14,0.00,1.00,-24.00,-19.20,0 --4.80,-19.20,14.20,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,14.27,0.00,1.00,-14.40,-9.60,0 --0.00,-9.60,14.33,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,14.39,0.00,1.00,-4.80,0.00,0 -0.00,0.00,14.46,0.00,1.00,0.00,4.80,0 -0.00,4.80,14.52,0.00,1.00,4.80,9.60,0 -4.80,9.60,14.59,0.00,1.00,9.60,14.40,0 -4.80,14.40,14.65,0.00,1.00,14.40,19.20,0 -4.80,19.20,14.71,0.00,1.00,19.20,24.00,0 -4.80,24.00,14.78,0.00,1.00,24.00,28.80,0 -9.60,28.80,14.84,0.00,1.00,28.80,33.60,0 -9.60,33.60,14.91,0.00,1.00,33.60,38.40,0 -9.60,38.40,14.97,0.00,1.00,38.40,43.20,0 -14.40,43.20,15.04,0.00,1.00,43.20,48.00,0 -14.40,48.00,15.10,0.00,1.00,48.00,52.80,0 -19.20,52.80,15.16,0.00,1.00,52.80,57.60,0 -19.20,52.80,15.23,0.00,1.00,57.60,57.60,0 -24.00,57.60,15.29,0.00,1.00,62.40,62.40,0 -28.80,62.40,15.36,0.00,1.00,67.20,67.20,0 -38.40,67.20,15.42,0.00,1.00,72.00,72.00,0 -48.00,72.00,15.49,0.00,1.00,76.80,72.00,0 -57.60,72.00,15.55,0.00,1.00,81.60,76.80,0 -76.80,76.80,15.61,0.00,1.00,86.40,76.80,0 -96.00,76.80,15.68,0.00,1.00,91.20,76.80,0 -115.20,76.80,15.74,0.00,1.00,96.00,72.00,0 -129.60,72.00,15.81,0.00,1.00,100.80,72.00,0 -139.20,67.20,15.87,0.00,1.00,105.60,67.20,0 -144.00,67.20,15.94,0.00,1.00,110.40,62.40,0 -153.60,62.40,16.00,0.00,1.00,115.20,57.60,0 -158.40,57.60,16.00,0.00,1.00,120.00,52.80,0 -158.40,52.80,15.94,0.00,1.00,124.80,48.00,0 -163.20,48.00,15.87,0.00,1.00,129.60,43.20,0 -168.00,43.20,15.81,0.00,1.00,134.40,38.40,0 -168.00,38.40,15.74,0.00,1.00,139.20,33.60,0 -168.00,33.60,15.68,0.00,1.00,144.00,28.80,0 -172.80,28.80,15.61,0.00,1.00,148.80,24.00,0 -172.80,24.00,15.55,0.00,1.00,153.60,19.20,0 -172.80,19.20,15.49,0.00,1.00,158.40,14.40,0 -177.60,14.40,15.42,0.00,1.00,163.20,9.60,0 -177.60,9.60,15.36,0.00,1.00,168.00,4.80,0 -177.60,4.80,15.29,0.00,1.00,172.80,0.00,0 -177.60,0.00,15.23,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,15.16,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,15.10,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,15.04,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,14.97,0.00,1.00,-163.20,-19.20,0 --172.80,-19.20,14.91,0.00,1.00,-158.40,-24.00,0 --172.80,-24.00,14.84,0.00,1.00,-153.60,-28.80,0 --172.80,-28.80,14.78,0.00,1.00,-148.80,-33.60,0 --168.00,-33.60,14.71,0.00,1.00,-144.00,-38.40,0 --168.00,-38.40,14.65,0.00,1.00,-139.20,-43.20,0 --168.00,-43.20,14.59,0.00,1.00,-134.40,-48.00,0 --163.20,-48.00,14.52,0.00,1.00,-129.60,-52.80,0 --158.40,-52.80,14.46,0.00,1.00,-124.80,-57.60,0 --158.40,-57.60,14.39,0.00,1.00,-120.00,-62.40,0 --153.60,-62.40,14.33,0.00,1.00,-115.20,-67.20,0 --144.00,-67.20,14.27,0.00,1.00,-110.40,-72.00,0 --139.20,-67.20,14.20,0.00,1.00,-105.60,-72.00,0 --129.60,-72.00,14.14,0.00,1.00,-100.80,-76.80,0 --115.20,-76.80,14.07,0.00,1.00,-96.00,-76.80,0 --96.00,-76.80,14.01,0.00,1.00,-91.20,-76.80,0 --76.80,-76.80,13.94,0.00,1.00,-86.40,-72.00,0 --57.60,-72.00,13.88,0.00,1.00,-81.60,-72.00,0 --48.00,-72.00,13.82,0.00,1.00,-76.80,-67.20,0 --38.40,-67.20,13.75,0.00,1.00,-72.00,-62.40,0 --28.80,-62.40,13.69,0.00,1.00,-67.20,-57.60,0 --24.00,-57.60,13.62,0.00,1.00,-62.40,-57.60,0 --19.20,-52.80,13.56,0.00,1.00,-57.60,-52.80,0 --19.20,-52.80,13.49,0.00,1.00,-52.80,-48.00,0 --14.40,-48.00,13.43,0.00,1.00,-48.00,-43.20,0 --14.40,-43.20,13.37,0.00,1.00,-43.20,-38.40,0 --9.60,-38.40,13.30,0.00,1.00,-38.40,-33.60,0 --9.60,-33.60,13.24,0.00,1.00,-33.60,-28.80,0 --9.60,-28.80,13.17,0.00,1.00,-28.80,-24.00,0 --4.80,-24.00,13.11,0.00,1.00,-24.00,-19.20,0 --4.80,-19.20,13.04,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,12.98,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,12.92,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,12.85,0.00,1.00,-4.80,0.00,0 -0.00,0.00,12.79,0.00,1.00,0.00,4.80,0 -0.00,4.80,12.72,0.00,1.00,4.80,9.60,0 -4.80,9.60,12.66,0.00,1.00,9.60,14.40,0 -4.80,14.40,12.59,0.00,1.00,14.40,19.20,0 -4.80,19.20,12.53,0.00,1.00,19.20,24.00,0 -9.60,24.00,12.47,0.00,1.00,24.00,28.80,0 -9.60,28.80,12.40,0.00,1.00,28.80,33.60,0 -14.40,33.60,12.34,0.00,1.00,33.60,38.40,0 -14.40,33.60,12.27,0.00,1.00,38.40,38.40,0 -19.20,38.40,12.21,0.00,1.00,43.20,43.20,0 -19.20,43.20,12.14,0.00,1.00,48.00,48.00,0 -24.00,48.00,12.08,0.00,1.00,52.80,52.80,0 -28.80,52.80,12.02,0.00,1.00,57.60,57.60,0 -33.60,57.60,11.95,0.00,1.00,62.40,62.40,0 -38.40,62.40,11.89,0.00,1.00,67.20,62.40,0 -43.20,62.40,11.82,0.00,1.00,72.00,67.20,0 -52.80,67.20,11.76,0.00,1.00,76.80,72.00,0 -67.20,67.20,11.69,0.00,1.00,81.60,72.00,0 -76.80,72.00,11.63,0.00,1.00,86.40,72.00,0 -96.00,72.00,11.57,0.00,1.00,91.20,72.00,0 -105.60,72.00,11.50,0.00,1.00,96.00,67.20,0 -120.00,67.20,11.44,0.00,1.00,100.80,67.20,0 -129.60,67.20,11.37,0.00,1.00,105.60,62.40,0 -139.20,62.40,11.31,0.00,1.00,110.40,57.60,0 -144.00,57.60,11.24,0.00,1.00,115.20,57.60,0 -148.80,52.80,11.18,0.00,1.00,120.00,52.80,0 -153.60,52.80,11.12,0.00,1.00,124.80,48.00,0 -158.40,48.00,11.05,0.00,1.00,129.60,43.20,0 -163.20,43.20,10.99,0.00,1.00,134.40,38.40,0 -163.20,38.40,10.92,0.00,1.00,139.20,33.60,0 -168.00,33.60,10.86,0.00,1.00,144.00,28.80,0 -168.00,28.80,10.80,0.00,1.00,148.80,24.00,0 -172.80,24.00,10.73,0.00,1.00,153.60,19.20,0 -172.80,19.20,10.67,0.00,1.00,158.40,14.40,0 -172.80,14.40,10.60,0.00,1.00,163.20,9.60,0 -177.60,9.60,10.54,0.00,1.00,168.00,4.80,0 -177.60,4.80,10.47,0.00,1.00,172.80,0.00,0 -177.60,0.00,10.41,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.35,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,10.28,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,10.22,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,10.15,0.00,1.00,-163.20,-19.20,0 --172.80,-19.20,10.09,0.00,1.00,-158.40,-24.00,0 --172.80,-24.00,10.02,0.00,1.00,-153.60,-28.80,0 --168.00,-28.80,9.96,0.00,1.00,-148.80,-33.60,0 --168.00,-33.60,9.90,0.00,1.00,-144.00,-38.40,0 --163.20,-38.40,9.83,0.00,1.00,-139.20,-43.20,0 --163.20,-43.20,9.77,0.00,1.00,-134.40,-48.00,0 --158.40,-48.00,9.70,0.00,1.00,-129.60,-52.80,0 --153.60,-52.80,9.64,0.00,1.00,-124.80,-57.60,0 --148.80,-52.80,9.57,0.00,1.00,-120.00,-57.60,0 --144.00,-57.60,9.51,0.00,1.00,-115.20,-62.40,0 --139.20,-62.40,9.45,0.00,1.00,-110.40,-67.20,0 --129.60,-67.20,9.38,0.00,1.00,-105.60,-67.20,0 --120.00,-67.20,9.32,0.00,1.00,-100.80,-72.00,0 --105.60,-72.00,9.25,0.00,1.00,-96.00,-72.00,0 --96.00,-72.00,9.19,0.00,1.00,-91.20,-72.00,0 --76.80,-72.00,9.12,0.00,1.00,-86.40,-72.00,0 --67.20,-67.20,9.06,0.00,1.00,-81.60,-67.20,0 --52.80,-67.20,9.00,0.00,1.00,-76.80,-62.40,0 --43.20,-62.40,8.93,0.00,1.00,-72.00,-62.40,0 --38.40,-62.40,8.87,0.00,1.00,-67.20,-57.60,0 --33.60,-57.60,8.80,0.00,1.00,-62.40,-52.80,0 --28.80,-52.80,8.74,0.00,1.00,-57.60,-48.00,0 --24.00,-48.00,8.67,0.00,1.00,-52.80,-43.20,0 --19.20,-43.20,8.61,0.00,1.00,-48.00,-38.40,0 --19.20,-38.40,8.55,0.00,1.00,-43.20,-38.40,0 --14.40,-33.60,8.48,0.00,1.00,-38.40,-33.60,0 --14.40,-33.60,8.42,0.00,1.00,-33.60,-28.80,0 --9.60,-28.80,8.35,0.00,1.00,-28.80,-24.00,0 --9.60,-24.00,8.29,0.00,1.00,-24.00,-19.20,0 --4.80,-19.20,8.22,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,8.16,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,8.10,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,8.03,0.00,1.00,-4.80,0.00,0 -0.00,0.00,7.97,0.00,1.00,0.00,4.80,0 -0.00,4.80,7.90,0.00,1.00,4.80,9.60,0 -4.80,9.60,7.84,0.00,1.00,9.60,14.40,0 -4.80,14.40,7.78,0.00,1.00,14.40,19.20,0 -9.60,19.20,7.71,0.00,1.00,19.20,24.00,0 -9.60,24.00,7.65,0.00,1.00,24.00,24.00,0 -14.40,24.00,7.58,0.00,1.00,28.80,28.80,0 -14.40,28.80,7.52,0.00,1.00,33.60,33.60,0 -19.20,33.60,7.45,0.00,1.00,33.60,38.40,0 -19.20,38.40,7.39,0.00,1.00,38.40,43.20,0 -24.00,43.20,7.33,0.00,1.00,43.20,48.00,0 -28.80,48.00,7.26,0.00,1.00,48.00,52.80,0 -33.60,52.80,7.20,0.00,1.00,57.60,52.80,0 -38.40,52.80,7.13,0.00,1.00,62.40,57.60,0 -43.20,57.60,7.07,0.00,1.00,67.20,62.40,0 -52.80,62.40,7.00,0.00,1.00,72.00,62.40,0 -62.40,62.40,6.94,0.00,1.00,76.80,67.20,0 -72.00,62.40,6.88,0.00,1.00,81.60,67.20,0 -81.60,67.20,6.81,0.00,1.00,86.40,67.20,0 -91.20,67.20,6.75,0.00,1.00,91.20,67.20,0 -105.60,67.20,6.68,0.00,1.00,96.00,67.20,0 -115.20,62.40,6.62,0.00,1.00,100.80,62.40,0 -124.80,62.40,6.55,0.00,1.00,105.60,57.60,0 -134.40,57.60,6.49,0.00,1.00,110.40,57.60,0 -139.20,57.60,6.43,0.00,1.00,115.20,52.80,0 -144.00,52.80,6.36,0.00,1.00,120.00,48.00,0 -148.80,48.00,6.30,0.00,1.00,129.60,43.20,0 -153.60,43.20,6.23,0.00,1.00,134.40,43.20,0 -158.40,38.40,6.17,0.00,1.00,139.20,38.40,0 -158.40,38.40,6.10,0.00,1.00,144.00,33.60,0 -163.20,33.60,6.04,0.00,1.00,148.80,28.80,0 -168.00,28.80,5.98,0.00,1.00,148.80,24.00,0 -168.00,24.00,5.91,0.00,1.00,153.60,19.20,0 -172.80,19.20,5.85,0.00,1.00,158.40,14.40,0 -172.80,14.40,5.78,0.00,1.00,163.20,9.60,0 -172.80,9.60,5.72,0.00,1.00,168.00,4.80,0 -177.60,4.80,5.65,0.00,1.00,172.80,0.00,0 -177.60,0.00,5.59,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,5.53,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,5.46,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,5.40,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,5.33,0.00,1.00,-163.20,-19.20,0 --172.80,-19.20,5.27,0.00,1.00,-158.40,-24.00,0 --168.00,-24.00,5.20,0.00,1.00,-153.60,-28.80,0 --168.00,-28.80,5.14,0.00,1.00,-148.80,-33.60,0 --163.20,-33.60,5.08,0.00,1.00,-148.80,-38.40,0 --158.40,-38.40,5.01,0.00,1.00,-144.00,-43.20,0 --158.40,-38.40,4.95,0.00,1.00,-139.20,-43.20,0 --153.60,-43.20,4.88,0.00,1.00,-134.40,-48.00,0 --148.80,-48.00,4.82,0.00,1.00,-129.60,-52.80,0 --144.00,-52.80,4.76,0.00,1.00,-120.00,-57.60,0 --139.20,-57.60,4.69,0.00,1.00,-115.20,-57.60,0 --134.40,-57.60,4.63,0.00,1.00,-110.40,-62.40,0 --124.80,-62.40,4.56,0.00,1.00,-105.60,-67.20,0 --115.20,-62.40,4.50,0.00,1.00,-100.80,-67.20,0 --105.60,-67.20,4.43,0.00,1.00,-96.00,-67.20,0 --91.20,-67.20,4.37,0.00,1.00,-91.20,-67.20,0 --81.60,-67.20,4.31,0.00,1.00,-86.40,-67.20,0 --72.00,-62.40,4.24,0.00,1.00,-81.60,-62.40,0 --62.40,-62.40,4.18,0.00,1.00,-76.80,-62.40,0 --52.80,-62.40,4.11,0.00,1.00,-72.00,-57.60,0 --43.20,-57.60,4.05,0.00,1.00,-67.20,-52.80,0 --38.40,-52.80,3.98,0.00,1.00,-62.40,-52.80,0 --33.60,-52.80,3.92,0.00,1.00,-57.60,-48.00,0 --28.80,-48.00,3.86,0.00,1.00,-48.00,-43.20,0 --24.00,-43.20,3.79,0.00,1.00,-43.20,-38.40,0 --19.20,-38.40,3.73,0.00,1.00,-38.40,-33.60,0 --19.20,-33.60,3.66,0.00,1.00,-33.60,-28.80,0 --14.40,-28.80,3.60,0.00,1.00,-33.60,-24.00,0 --14.40,-24.00,3.53,0.00,1.00,-28.80,-24.00,0 --9.60,-24.00,3.47,0.00,1.00,-24.00,-19.20,0 --9.60,-19.20,3.41,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,3.34,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,3.28,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,3.21,0.00,1.00,-4.80,0.00,0 -0.00,0.00,3.15,0.00,1.00,0.00,4.80,0 -0.00,4.80,3.08,0.00,1.00,4.80,9.60,0 -4.80,9.60,3.02,0.00,1.00,9.60,14.40,0 -4.80,14.40,2.96,0.00,1.00,14.40,19.20,0 -9.60,14.40,2.89,0.00,1.00,19.20,19.20,0 -14.40,19.20,2.83,0.00,1.00,19.20,24.00,0 -14.40,24.00,2.76,0.00,1.00,24.00,28.80,0 -19.20,28.80,2.70,0.00,1.00,28.80,33.60,0 -19.20,33.60,2.63,0.00,1.00,33.60,38.40,0 -24.00,38.40,2.57,0.00,1.00,38.40,43.20,0 -28.80,38.40,2.51,0.00,1.00,43.20,43.20,0 -33.60,43.20,2.44,0.00,1.00,48.00,48.00,0 -38.40,48.00,2.38,0.00,1.00,52.80,52.80,0 -43.20,52.80,2.31,0.00,1.00,57.60,52.80,0 -48.00,52.80,2.25,0.00,1.00,62.40,57.60,0 -57.60,57.60,2.18,0.00,1.00,72.00,57.60,0 -62.40,57.60,2.12,0.00,1.00,76.80,62.40,0 -72.00,62.40,2.06,0.00,1.00,81.60,62.40,0 -81.60,62.40,1.99,0.00,1.00,86.40,62.40,0 -91.20,62.40,1.93,0.00,1.00,91.20,62.40,0 -100.80,62.40,1.86,0.00,1.00,96.00,62.40,0 -110.40,57.60,1.80,0.00,1.00,100.80,57.60,0 -120.00,57.60,1.73,0.00,1.00,105.60,57.60,0 -129.60,57.60,1.67,0.00,1.00,115.20,52.80,0 -134.40,52.80,1.61,0.00,1.00,120.00,48.00,0 -139.20,48.00,1.54,0.00,1.00,124.80,48.00,0 -144.00,48.00,1.48,0.00,1.00,129.60,43.20,0 -148.80,43.20,1.41,0.00,1.00,134.40,38.40,0 -153.60,38.40,1.35,0.00,1.00,139.20,33.60,0 -158.40,33.60,1.29,0.00,1.00,144.00,33.60,0 -158.40,28.80,1.22,0.00,1.00,148.80,28.80,0 -163.20,28.80,1.16,0.00,1.00,153.60,24.00,0 -168.00,24.00,1.09,0.00,1.00,158.40,19.20,0 -168.00,19.20,1.03,0.00,1.00,163.20,14.40,0 -172.80,14.40,0.96,0.00,1.00,163.20,9.60,0 -172.80,9.60,0.90,0.00,1.00,168.00,4.80,0 -177.60,4.80,0.84,0.00,1.00,172.80,0.00,0 -177.60,0.00,0.77,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,0.71,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,0.64,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,0.58,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,0.51,0.00,1.00,-163.20,-19.20,0 --168.00,-19.20,0.45,0.00,1.00,-163.20,-24.00,0 --168.00,-24.00,0.39,0.00,1.00,-158.40,-28.80,0 --163.20,-28.80,0.32,0.00,1.00,-153.60,-33.60,0 --158.40,-28.80,0.26,0.00,1.00,-148.80,-33.60,0 --158.40,-33.60,0.19,0.00,1.00,-144.00,-38.40,0 --153.60,-38.40,0.13,0.00,1.00,-139.20,-43.20,0 --148.80,-43.20,0.06,0.00,1.00,-134.40,-48.00,0 --144.00,-48.00,0.00,0.00,1.00,-129.60,-48.00,0 --139.20,-48.00,0.00,0.00,1.00,-124.80,-52.80,0 --134.40,-52.80,0.16,0.00,1.00,-120.00,-57.60,0 --129.60,-57.60,0.32,0.00,1.00,-115.20,-57.60,0 --120.00,-57.60,0.48,0.00,1.00,-105.60,-62.40,0 --110.40,-57.60,0.65,0.00,1.00,-100.80,-62.40,0 --100.80,-62.40,0.81,0.00,1.00,-96.00,-62.40,0 --91.20,-62.40,0.97,0.00,1.00,-91.20,-62.40,0 --81.60,-62.40,1.13,0.00,1.00,-86.40,-62.40,0 --72.00,-62.40,1.29,0.00,1.00,-81.60,-57.60,0 --62.40,-57.60,1.45,0.00,1.00,-76.80,-57.60,0 --57.60,-57.60,1.62,0.00,1.00,-72.00,-52.80,0 --48.00,-52.80,1.78,0.00,1.00,-62.40,-52.80,0 --43.20,-52.80,1.94,0.00,1.00,-57.60,-48.00,0 --38.40,-48.00,2.10,0.00,1.00,-52.80,-43.20,0 --33.60,-43.20,2.26,0.00,1.00,-48.00,-43.20,0 --28.80,-38.40,2.42,0.00,1.00,-43.20,-38.40,0 --24.00,-38.40,2.59,0.00,1.00,-38.40,-33.60,0 --19.20,-33.60,2.75,0.00,1.00,-33.60,-28.80,0 --19.20,-28.80,2.91,0.00,1.00,-28.80,-24.00,0 --14.40,-24.00,3.07,0.00,1.00,-24.00,-19.20,0 --14.40,-19.20,3.23,0.00,1.00,-19.20,-19.20,0 --9.60,-14.40,3.39,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,3.56,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,3.72,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,3.88,0.00,1.00,-4.80,0.00,0 -0.00,0.00,4.04,0.00,1.00,0.00,4.80,0 -4.80,4.80,4.20,0.00,1.00,4.80,9.60,0 -4.80,9.60,4.36,0.00,1.00,9.60,14.40,0 -9.60,9.60,4.53,0.00,1.00,14.40,14.40,0 -9.60,14.40,4.69,0.00,1.00,14.40,19.20,0 -14.40,19.20,4.85,0.00,1.00,19.20,24.00,0 -19.20,24.00,5.01,0.00,1.00,24.00,28.80,0 -19.20,28.80,5.17,0.00,1.00,28.80,33.60,0 -24.00,28.80,5.33,0.00,1.00,33.60,33.60,0 -28.80,33.60,5.49,0.00,1.00,38.40,38.40,0 -33.60,38.40,5.66,0.00,1.00,43.20,43.20,0 -38.40,43.20,5.82,0.00,1.00,48.00,43.20,0 -43.20,43.20,5.98,0.00,1.00,52.80,48.00,0 -48.00,48.00,6.14,0.00,1.00,57.60,52.80,0 -52.80,48.00,6.30,0.00,1.00,62.40,52.80,0 -57.60,52.80,6.46,0.00,1.00,67.20,57.60,0 -67.20,52.80,6.63,0.00,1.00,72.00,57.60,0 -76.80,57.60,6.79,0.00,1.00,81.60,57.60,0 -81.60,57.60,6.95,0.00,1.00,86.40,57.60,0 -91.20,57.60,7.11,0.00,1.00,91.20,57.60,0 -100.80,57.60,7.27,0.00,1.00,96.00,57.60,0 -110.40,52.80,7.43,0.00,1.00,100.80,52.80,0 -115.20,52.80,7.60,0.00,1.00,110.40,52.80,0 -124.80,52.80,7.76,0.00,1.00,115.20,48.00,0 -129.60,48.00,7.92,0.00,1.00,120.00,48.00,0 -134.40,48.00,8.08,0.00,1.00,124.80,43.20,0 -139.20,43.20,8.24,0.00,1.00,129.60,38.40,0 -144.00,38.40,8.40,0.00,1.00,134.40,38.40,0 -148.80,38.40,8.57,0.00,1.00,139.20,33.60,0 -153.60,33.60,8.73,0.00,1.00,144.00,28.80,0 -158.40,28.80,8.89,0.00,1.00,148.80,24.00,0 -163.20,24.00,9.05,0.00,1.00,153.60,24.00,0 -163.20,24.00,9.21,0.00,1.00,158.40,19.20,0 -168.00,19.20,9.37,0.00,1.00,163.20,14.40,0 -172.80,14.40,9.54,0.00,1.00,168.00,9.60,0 -172.80,9.60,9.70,0.00,1.00,168.00,4.80,0 -177.60,4.80,9.86,0.00,1.00,172.80,0.00,0 -177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.18,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,10.34,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,10.51,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,10.67,0.00,1.00,-168.00,-19.20,0 --168.00,-19.20,10.83,0.00,1.00,-163.20,-24.00,0 --163.20,-24.00,10.99,0.00,1.00,-158.40,-24.00,0 --163.20,-24.00,11.15,0.00,1.00,-153.60,-28.80,0 --158.40,-28.80,11.31,0.00,1.00,-148.80,-33.60,0 --153.60,-33.60,11.47,0.00,1.00,-144.00,-38.40,0 --148.80,-38.40,11.64,0.00,1.00,-139.20,-38.40,0 --144.00,-38.40,11.80,0.00,1.00,-134.40,-43.20,0 --139.20,-43.20,11.96,0.00,1.00,-129.60,-48.00,0 --134.40,-48.00,12.12,0.00,1.00,-124.80,-48.00,0 --129.60,-48.00,12.28,0.00,1.00,-120.00,-52.80,0 --124.80,-52.80,12.44,0.00,1.00,-115.20,-52.80,0 --115.20,-52.80,12.61,0.00,1.00,-110.40,-57.60,0 --110.40,-52.80,12.77,0.00,1.00,-100.80,-57.60,0 --100.80,-57.60,12.93,0.00,1.00,-96.00,-57.60,0 --91.20,-57.60,13.09,0.00,1.00,-91.20,-57.60,0 --81.60,-57.60,13.25,0.00,1.00,-86.40,-57.60,0 --76.80,-57.60,13.41,0.00,1.00,-81.60,-57.60,0 --67.20,-52.80,13.58,0.00,1.00,-72.00,-52.80,0 --57.60,-52.80,13.74,0.00,1.00,-67.20,-52.80,0 --52.80,-48.00,13.90,0.00,1.00,-62.40,-48.00,0 --48.00,-48.00,14.06,0.00,1.00,-57.60,-43.20,0 --43.20,-43.20,14.22,0.00,1.00,-52.80,-43.20,0 --38.40,-43.20,14.38,0.00,1.00,-48.00,-38.40,0 --33.60,-38.40,14.55,0.00,1.00,-43.20,-33.60,0 --28.80,-33.60,14.71,0.00,1.00,-38.40,-33.60,0 --24.00,-28.80,14.87,0.00,1.00,-33.60,-28.80,0 --19.20,-28.80,15.03,0.00,1.00,-28.80,-24.00,0 --19.20,-24.00,15.19,0.00,1.00,-24.00,-19.20,0 --14.40,-19.20,15.35,0.00,1.00,-19.20,-14.40,0 --9.60,-14.40,15.52,0.00,1.00,-14.40,-14.40,0 --9.60,-9.60,15.68,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,15.84,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,16.00,0.00,1.00,-4.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,0.00,4.80,0 -4.80,4.80,15.84,0.00,1.00,4.80,9.60,0 -4.80,9.60,15.68,0.00,1.00,9.60,9.60,0 -9.60,9.60,15.52,0.00,1.00,9.60,14.40,0 -14.40,14.40,15.35,0.00,1.00,14.40,19.20,0 -14.40,19.20,15.19,0.00,1.00,19.20,24.00,0 -19.20,24.00,15.03,0.00,1.00,24.00,24.00,0 -24.00,24.00,14.87,0.00,1.00,28.80,28.80,0 -24.00,28.80,14.71,0.00,1.00,33.60,33.60,0 -28.80,33.60,14.55,0.00,1.00,38.40,38.40,0 -33.60,33.60,14.38,0.00,1.00,43.20,38.40,0 -38.40,38.40,14.22,0.00,1.00,48.00,43.20,0 -43.20,43.20,14.06,0.00,1.00,52.80,43.20,0 -48.00,43.20,13.90,0.00,1.00,57.60,48.00,0 -57.60,48.00,13.74,0.00,1.00,62.40,48.00,0 -62.40,48.00,13.58,0.00,1.00,67.20,52.80,0 -67.20,48.00,13.41,0.00,1.00,72.00,52.80,0 -76.80,52.80,13.25,0.00,1.00,81.60,52.80,0 -86.40,52.80,13.09,0.00,1.00,86.40,52.80,0 -91.20,52.80,12.93,0.00,1.00,91.20,52.80,0 -100.80,52.80,12.77,0.00,1.00,96.00,52.80,0 -105.60,48.00,12.61,0.00,1.00,105.60,48.00,0 -115.20,48.00,12.44,0.00,1.00,110.40,48.00,0 -120.00,48.00,12.28,0.00,1.00,115.20,48.00,0 -124.80,43.20,12.12,0.00,1.00,120.00,43.20,0 -134.40,43.20,11.96,0.00,1.00,124.80,43.20,0 -139.20,38.40,11.80,0.00,1.00,129.60,38.40,0 -144.00,38.40,11.64,0.00,1.00,134.40,33.60,0 -148.80,33.60,11.47,0.00,1.00,139.20,33.60,0 -153.60,28.80,11.31,0.00,1.00,144.00,28.80,0 -153.60,28.80,11.15,0.00,1.00,148.80,24.00,0 -158.40,24.00,10.99,0.00,1.00,153.60,19.20,0 -163.20,19.20,10.83,0.00,1.00,158.40,19.20,0 -168.00,14.40,10.67,0.00,1.00,163.20,14.40,0 -168.00,14.40,10.51,0.00,1.00,168.00,9.60,0 -172.80,9.60,10.34,0.00,1.00,172.80,4.80,0 -177.60,4.80,10.18,0.00,1.00,172.80,0.00,0 -177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,9.86,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,9.70,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,9.54,0.00,1.00,-172.80,-14.40,0 --168.00,-14.40,9.37,0.00,1.00,-168.00,-19.20,0 --168.00,-14.40,9.21,0.00,1.00,-163.20,-19.20,0 --163.20,-19.20,9.05,0.00,1.00,-158.40,-24.00,0 --158.40,-24.00,8.89,0.00,1.00,-153.60,-28.80,0 --153.60,-28.80,8.73,0.00,1.00,-148.80,-33.60,0 --153.60,-28.80,8.57,0.00,1.00,-144.00,-33.60,0 --148.80,-33.60,8.40,0.00,1.00,-139.20,-38.40,0 --144.00,-38.40,8.24,0.00,1.00,-134.40,-43.20,0 --139.20,-38.40,8.08,0.00,1.00,-129.60,-43.20,0 --134.40,-43.20,7.92,0.00,1.00,-124.80,-48.00,0 --124.80,-43.20,7.76,0.00,1.00,-120.00,-48.00,0 --120.00,-48.00,7.60,0.00,1.00,-115.20,-48.00,0 --115.20,-48.00,7.43,0.00,1.00,-110.40,-52.80,0 --105.60,-48.00,7.27,0.00,1.00,-105.60,-52.80,0 --100.80,-52.80,7.11,0.00,1.00,-96.00,-52.80,0 --91.20,-52.80,6.95,0.00,1.00,-91.20,-52.80,0 --86.40,-52.80,6.79,0.00,1.00,-86.40,-52.80,0 --76.80,-52.80,6.63,0.00,1.00,-81.60,-52.80,0 --67.20,-48.00,6.46,0.00,1.00,-72.00,-48.00,0 --62.40,-48.00,6.30,0.00,1.00,-67.20,-48.00,0 --57.60,-48.00,6.14,0.00,1.00,-62.40,-43.20,0 --48.00,-43.20,5.98,0.00,1.00,-57.60,-43.20,0 --43.20,-43.20,5.82,0.00,1.00,-52.80,-38.40,0 --38.40,-38.40,5.66,0.00,1.00,-48.00,-38.40,0 --33.60,-33.60,5.49,0.00,1.00,-43.20,-33.60,0 --28.80,-33.60,5.33,0.00,1.00,-38.40,-28.80,0 --24.00,-28.80,5.17,0.00,1.00,-33.60,-24.00,0 --24.00,-24.00,5.01,0.00,1.00,-28.80,-24.00,0 --19.20,-24.00,4.85,0.00,1.00,-24.00,-19.20,0 --14.40,-19.20,4.69,0.00,1.00,-19.20,-14.40,0 --14.40,-14.40,4.53,0.00,1.00,-14.40,-9.60,0 --9.60,-9.60,4.36,0.00,1.00,-9.60,-9.60,0 --4.80,-9.60,4.20,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,4.04,0.00,1.00,-4.80,0.00,0 -0.00,0.00,3.88,0.00,1.00,0.00,4.80,0 -4.80,4.80,3.72,0.00,1.00,4.80,4.80,0 -4.80,4.80,3.56,0.00,1.00,4.80,9.60,0 -9.60,9.60,3.39,0.00,1.00,9.60,14.40,0 -14.40,14.40,3.23,0.00,1.00,14.40,19.20,0 -19.20,19.20,3.07,0.00,1.00,19.20,19.20,0 -19.20,19.20,2.91,0.00,1.00,24.00,24.00,0 -24.00,24.00,2.75,0.00,1.00,24.00,28.80,0 -28.80,28.80,2.59,0.00,1.00,28.80,28.80,0 -33.60,28.80,2.42,0.00,1.00,33.60,33.60,0 -38.40,33.60,2.26,0.00,1.00,38.40,38.40,0 -43.20,33.60,2.10,0.00,1.00,43.20,38.40,0 -48.00,38.40,1.94,0.00,1.00,48.00,43.20,0 -52.80,38.40,1.78,0.00,1.00,52.80,43.20,0 -57.60,43.20,1.62,0.00,1.00,62.40,43.20,0 -62.40,43.20,1.45,0.00,1.00,67.20,48.00,0 -72.00,43.20,1.29,0.00,1.00,72.00,48.00,0 -76.80,48.00,1.13,0.00,1.00,76.80,48.00,0 -86.40,48.00,0.97,0.00,1.00,86.40,48.00,0 -91.20,48.00,0.81,0.00,1.00,91.20,48.00,0 -100.80,48.00,0.65,0.00,1.00,96.00,48.00,0 -105.60,48.00,0.48,0.00,1.00,105.60,48.00,0 -110.40,43.20,0.32,0.00,1.00,110.40,43.20,0 -120.00,43.20,0.16,0.00,1.00,115.20,43.20,0 -124.80,43.20,0.00,0.00,1.00,124.80,38.40,0 -129.60,38.40,0.00,0.00,1.00,129.60,38.40,0 -134.40,38.40,0.04,0.00,1.00,134.40,33.60,0 -139.20,33.60,0.08,0.00,1.00,139.20,33.60,0 -144.00,33.60,0.12,0.00,1.00,144.00,28.80,0 -148.80,28.80,0.16,0.00,1.00,148.80,24.00,0 -153.60,24.00,0.20,0.00,1.00,153.60,24.00,0 -158.40,24.00,0.24,0.00,1.00,158.40,19.20,0 -163.20,19.20,0.28,0.00,1.00,158.40,14.40,0 -163.20,14.40,0.32,0.00,1.00,163.20,14.40,0 -168.00,14.40,0.36,0.00,1.00,168.00,9.60,0 -172.80,9.60,0.40,0.00,1.00,172.80,4.80,0 -172.80,4.80,0.44,0.00,1.00,172.80,0.00,0 -177.60,0.00,0.48,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,0.52,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,0.56,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,0.60,0.00,1.00,-172.80,-14.40,0 --168.00,-14.40,0.64,0.00,1.00,-168.00,-14.40,0 --163.20,-14.40,0.68,0.00,1.00,-163.20,-19.20,0 --163.20,-19.20,0.72,0.00,1.00,-158.40,-24.00,0 --158.40,-24.00,0.76,0.00,1.00,-158.40,-24.00,0 --153.60,-24.00,0.80,0.00,1.00,-153.60,-28.80,0 --148.80,-28.80,0.84,0.00,1.00,-148.80,-33.60,0 --144.00,-33.60,0.88,0.00,1.00,-144.00,-33.60,0 --139.20,-33.60,0.92,0.00,1.00,-139.20,-38.40,0 --134.40,-38.40,0.96,0.00,1.00,-134.40,-38.40,0 --129.60,-38.40,1.00,0.00,1.00,-129.60,-43.20,0 --124.80,-43.20,1.04,0.00,1.00,-124.80,-43.20,0 --120.00,-43.20,1.08,0.00,1.00,-115.20,-48.00,0 --110.40,-43.20,1.12,0.00,1.00,-110.40,-48.00,0 --105.60,-48.00,1.16,0.00,1.00,-105.60,-48.00,0 --100.80,-48.00,1.20,0.00,1.00,-96.00,-48.00,0 --91.20,-48.00,1.24,0.00,1.00,-91.20,-48.00,0 --86.40,-48.00,1.28,0.00,1.00,-86.40,-48.00,0 --76.80,-48.00,1.32,0.00,1.00,-76.80,-48.00,0 --72.00,-43.20,1.36,0.00,1.00,-72.00,-43.20,0 --62.40,-43.20,1.40,0.00,1.00,-67.20,-43.20,0 --57.60,-43.20,1.44,0.00,1.00,-62.40,-43.20,0 --52.80,-38.40,1.48,0.00,1.00,-52.80,-38.40,0 --48.00,-38.40,1.52,0.00,1.00,-48.00,-38.40,0 --43.20,-33.60,1.56,0.00,1.00,-43.20,-33.60,0 --38.40,-33.60,1.60,0.00,1.00,-38.40,-28.80,0 --33.60,-28.80,1.64,0.00,1.00,-33.60,-28.80,0 --28.80,-28.80,1.68,0.00,1.00,-28.80,-24.00,0 --24.00,-24.00,1.72,0.00,1.00,-24.00,-19.20,0 --19.20,-19.20,1.76,0.00,1.00,-24.00,-19.20,0 --19.20,-19.20,1.80,0.00,1.00,-19.20,-14.40,0 --14.40,-14.40,1.84,0.00,1.00,-14.40,-9.60,0 --9.60,-9.60,1.88,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,1.92,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,1.96,0.00,1.00,-4.80,0.00,0 -0.00,0.00,2.01,0.00,1.00,0.00,4.80,0 -4.80,4.80,2.05,0.00,1.00,4.80,4.80,0 -4.80,4.80,2.09,0.00,1.00,4.80,9.60,0 -9.60,9.60,2.13,0.00,1.00,9.60,14.40,0 -14.40,14.40,2.17,0.00,1.00,14.40,14.40,0 -19.20,14.40,2.21,0.00,1.00,14.40,19.20,0 -24.00,19.20,2.25,0.00,1.00,19.20,24.00,0 -24.00,24.00,2.29,0.00,1.00,24.00,24.00,0 -28.80,24.00,2.33,0.00,1.00,28.80,28.80,0 -33.60,28.80,2.37,0.00,1.00,33.60,28.80,0 -38.40,28.80,2.41,0.00,1.00,38.40,33.60,0 -43.20,33.60,2.45,0.00,1.00,43.20,33.60,0 -48.00,33.60,2.49,0.00,1.00,48.00,38.40,0 -52.80,38.40,2.53,0.00,1.00,52.80,38.40,0 -62.40,38.40,2.57,0.00,1.00,57.60,38.40,0 -67.20,38.40,2.61,0.00,1.00,62.40,43.20,0 -72.00,38.40,2.65,0.00,1.00,72.00,43.20,0 -76.80,43.20,2.69,0.00,1.00,76.80,43.20,0 -86.40,43.20,2.73,0.00,1.00,86.40,43.20,0 -91.20,43.20,2.77,0.00,1.00,91.20,43.20,0 -96.00,43.20,2.81,0.00,1.00,100.80,43.20,0 -105.60,43.20,2.85,0.00,1.00,105.60,43.20,0 -110.40,38.40,2.89,0.00,1.00,110.40,38.40,0 -115.20,38.40,2.93,0.00,1.00,120.00,38.40,0 -120.00,38.40,2.97,0.00,1.00,124.80,38.40,0 -129.60,33.60,3.01,0.00,1.00,129.60,33.60,0 -134.40,33.60,3.05,0.00,1.00,134.40,33.60,0 -139.20,28.80,3.09,0.00,1.00,139.20,28.80,0 -144.00,28.80,3.13,0.00,1.00,144.00,28.80,0 -148.80,24.00,3.17,0.00,1.00,148.80,24.00,0 -153.60,24.00,3.21,0.00,1.00,153.60,19.20,0 -153.60,19.20,3.25,0.00,1.00,158.40,19.20,0 -158.40,19.20,3.29,0.00,1.00,163.20,14.40,0 -163.20,14.40,3.33,0.00,1.00,163.20,9.60,0 -168.00,9.60,3.37,0.00,1.00,168.00,9.60,0 -172.80,9.60,3.41,0.00,1.00,172.80,4.80,0 -172.80,4.80,3.45,0.00,1.00,172.80,0.00,0 -177.60,0.00,3.49,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,3.53,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,3.57,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,3.61,0.00,1.00,-172.80,-9.60,0 --168.00,-9.60,3.65,0.00,1.00,-168.00,-14.40,0 --163.20,-14.40,3.69,0.00,1.00,-163.20,-19.20,0 --158.40,-19.20,3.73,0.00,1.00,-163.20,-19.20,0 --153.60,-19.20,3.77,0.00,1.00,-158.40,-24.00,0 --153.60,-24.00,3.81,0.00,1.00,-153.60,-28.80,0 --148.80,-24.00,3.85,0.00,1.00,-148.80,-28.80,0 --144.00,-28.80,3.89,0.00,1.00,-144.00,-33.60,0 --139.20,-28.80,3.93,0.00,1.00,-139.20,-33.60,0 --134.40,-33.60,3.97,0.00,1.00,-134.40,-38.40,0 --129.60,-33.60,4.01,0.00,1.00,-129.60,-38.40,0 --120.00,-38.40,4.05,0.00,1.00,-124.80,-38.40,0 --115.20,-38.40,4.09,0.00,1.00,-120.00,-43.20,0 --110.40,-38.40,4.13,0.00,1.00,-110.40,-43.20,0 --105.60,-43.20,4.17,0.00,1.00,-105.60,-43.20,0 --96.00,-43.20,4.21,0.00,1.00,-100.80,-43.20,0 --91.20,-43.20,4.25,0.00,1.00,-91.20,-43.20,0 --86.40,-43.20,4.29,0.00,1.00,-86.40,-43.20,0 --76.80,-43.20,4.33,0.00,1.00,-76.80,-43.20,0 --72.00,-38.40,4.37,0.00,1.00,-72.00,-38.40,0 --67.20,-38.40,4.41,0.00,1.00,-62.40,-38.40,0 --62.40,-38.40,4.45,0.00,1.00,-57.60,-38.40,0 --52.80,-38.40,4.49,0.00,1.00,-52.80,-33.60,0 --48.00,-33.60,4.53,0.00,1.00,-48.00,-33.60,0 --43.20,-33.60,4.57,0.00,1.00,-43.20,-28.80,0 --38.40,-28.80,4.61,0.00,1.00,-38.40,-28.80,0 --33.60,-28.80,4.65,0.00,1.00,-33.60,-24.00,0 --28.80,-24.00,4.69,0.00,1.00,-28.80,-24.00,0 --24.00,-24.00,4.73,0.00,1.00,-24.00,-19.20,0 --24.00,-19.20,4.77,0.00,1.00,-19.20,-14.40,0 --19.20,-14.40,4.81,0.00,1.00,-14.40,-14.40,0 --14.40,-14.40,4.85,0.00,1.00,-14.40,-9.60,0 --9.60,-9.60,4.89,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,4.93,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,4.97,0.00,1.00,-4.80,0.00,0 -0.00,0.00,5.01,0.00,1.00,0.00,4.80,0 -4.80,4.80,5.05,0.00,1.00,4.80,4.80,0 -9.60,4.80,5.09,0.00,1.00,4.80,9.60,0 -9.60,9.60,5.13,0.00,1.00,9.60,9.60,0 -14.40,9.60,5.17,0.00,1.00,9.60,14.40,0 -19.20,14.40,5.21,0.00,1.00,14.40,19.20,0 -24.00,19.20,5.25,0.00,1.00,19.20,19.20,0 -28.80,19.20,5.29,0.00,1.00,24.00,24.00,0 -33.60,24.00,5.33,0.00,1.00,24.00,24.00,0 -38.40,24.00,5.37,0.00,1.00,28.80,28.80,0 -43.20,28.80,5.41,0.00,1.00,33.60,28.80,0 -48.00,28.80,5.45,0.00,1.00,38.40,33.60,0 -52.80,28.80,5.49,0.00,1.00,43.20,33.60,0 -57.60,33.60,5.53,0.00,1.00,48.00,33.60,0 -62.40,33.60,5.57,0.00,1.00,52.80,38.40,0 -67.20,33.60,5.61,0.00,1.00,62.40,38.40,0 -72.00,38.40,5.65,0.00,1.00,67.20,38.40,0 -81.60,38.40,5.69,0.00,1.00,76.80,38.40,0 -86.40,38.40,5.73,0.00,1.00,86.40,38.40,0 -91.20,38.40,5.77,0.00,1.00,91.20,38.40,0 -96.00,38.40,5.81,0.00,1.00,100.80,38.40,0 -105.60,38.40,5.85,0.00,1.00,105.60,38.40,0 -110.40,33.60,5.89,0.00,1.00,115.20,33.60,0 -115.20,33.60,5.93,0.00,1.00,120.00,33.60,0 -120.00,33.60,5.97,0.00,1.00,129.60,33.60,0 -124.80,33.60,6.02,0.00,1.00,134.40,28.80,0 -129.60,28.80,6.06,0.00,1.00,139.20,28.80,0 -134.40,28.80,6.10,0.00,1.00,144.00,24.00,0 -139.20,24.00,6.14,0.00,1.00,148.80,24.00,0 -144.00,24.00,6.18,0.00,1.00,153.60,19.20,0 -148.80,19.20,6.22,0.00,1.00,158.40,19.20,0 -153.60,19.20,6.26,0.00,1.00,158.40,14.40,0 -158.40,14.40,6.30,0.00,1.00,163.20,14.40,0 -163.20,14.40,6.34,0.00,1.00,168.00,9.60,0 -168.00,9.60,6.38,0.00,1.00,168.00,9.60,0 -168.00,9.60,6.42,0.00,1.00,172.80,4.80,0 -172.80,4.80,6.46,0.00,1.00,177.60,0.00,0 -177.60,0.00,6.50,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,6.54,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,6.58,0.00,1.00,-177.60,-9.60,0 --168.00,-9.60,6.62,0.00,1.00,-172.80,-9.60,0 --168.00,-9.60,6.66,0.00,1.00,-168.00,-14.40,0 --163.20,-14.40,6.70,0.00,1.00,-168.00,-14.40,0 --158.40,-14.40,6.74,0.00,1.00,-163.20,-19.20,0 --153.60,-19.20,6.78,0.00,1.00,-158.40,-19.20,0 --148.80,-19.20,6.82,0.00,1.00,-158.40,-24.00,0 --144.00,-24.00,6.86,0.00,1.00,-153.60,-24.00,0 --139.20,-24.00,6.90,0.00,1.00,-148.80,-28.80,0 --134.40,-28.80,6.94,0.00,1.00,-144.00,-28.80,0 --129.60,-28.80,6.98,0.00,1.00,-139.20,-33.60,0 --124.80,-33.60,7.02,0.00,1.00,-134.40,-33.60,0 --120.00,-33.60,7.06,0.00,1.00,-129.60,-33.60,0 --115.20,-33.60,7.10,0.00,1.00,-120.00,-38.40,0 --110.40,-33.60,7.14,0.00,1.00,-115.20,-38.40,0 --105.60,-38.40,7.18,0.00,1.00,-105.60,-38.40,0 --96.00,-38.40,7.22,0.00,1.00,-100.80,-38.40,0 --91.20,-38.40,7.26,0.00,1.00,-91.20,-38.40,0 --86.40,-38.40,7.30,0.00,1.00,-86.40,-38.40,0 --81.60,-38.40,7.34,0.00,1.00,-76.80,-38.40,0 --72.00,-38.40,7.38,0.00,1.00,-67.20,-38.40,0 --67.20,-33.60,7.42,0.00,1.00,-62.40,-33.60,0 --62.40,-33.60,7.46,0.00,1.00,-52.80,-33.60,0 --57.60,-33.60,7.50,0.00,1.00,-48.00,-33.60,0 --52.80,-28.80,7.54,0.00,1.00,-43.20,-28.80,0 --48.00,-28.80,7.58,0.00,1.00,-38.40,-28.80,0 --43.20,-28.80,7.62,0.00,1.00,-33.60,-24.00,0 --38.40,-24.00,7.66,0.00,1.00,-28.80,-24.00,0 --33.60,-24.00,7.70,0.00,1.00,-24.00,-19.20,0 --28.80,-19.20,7.74,0.00,1.00,-24.00,-19.20,0 --24.00,-19.20,7.78,0.00,1.00,-19.20,-14.40,0 --19.20,-14.40,7.82,0.00,1.00,-14.40,-9.60,0 --14.40,-9.60,7.86,0.00,1.00,-9.60,-9.60,0 --9.60,-9.60,7.90,0.00,1.00,-9.60,-4.80,0 --9.60,-4.80,7.94,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,7.98,0.00,1.00,-4.80,0.00,0 -0.00,0.00,8.02,0.00,1.00,0.00,4.80,0 -4.80,4.80,8.06,0.00,1.00,4.80,4.80,0 -9.60,4.80,8.10,0.00,1.00,4.80,9.60,0 -14.40,9.60,8.14,0.00,1.00,9.60,9.60,0 -14.40,9.60,8.18,0.00,1.00,9.60,14.40,0 -19.20,14.40,8.22,0.00,1.00,14.40,14.40,0 -24.00,14.40,8.26,0.00,1.00,14.40,19.20,0 -28.80,19.20,8.30,0.00,1.00,19.20,19.20,0 -33.60,19.20,8.34,0.00,1.00,24.00,24.00,0 -38.40,19.20,8.38,0.00,1.00,28.80,24.00,0 -43.20,24.00,8.42,0.00,1.00,28.80,24.00,0 -48.00,24.00,8.46,0.00,1.00,33.60,28.80,0 -52.80,28.80,8.50,0.00,1.00,38.40,28.80,0 -57.60,28.80,8.54,0.00,1.00,48.00,28.80,0 -62.40,28.80,8.58,0.00,1.00,52.80,33.60,0 -67.20,28.80,8.62,0.00,1.00,57.60,33.60,0 -76.80,33.60,8.66,0.00,1.00,67.20,33.60,0 -81.60,33.60,8.70,0.00,1.00,76.80,33.60,0 -86.40,33.60,8.74,0.00,1.00,81.60,33.60,0 -91.20,33.60,8.78,0.00,1.00,91.20,33.60,0 -96.00,33.60,8.82,0.00,1.00,100.80,33.60,0 -100.80,33.60,8.86,0.00,1.00,110.40,33.60,0 -110.40,28.80,8.90,0.00,1.00,115.20,33.60,0 -115.20,28.80,8.94,0.00,1.00,124.80,28.80,0 -120.00,28.80,8.98,0.00,1.00,129.60,28.80,0 -124.80,28.80,9.02,0.00,1.00,139.20,28.80,0 -129.60,24.00,9.06,0.00,1.00,144.00,24.00,0 -134.40,24.00,9.10,0.00,1.00,148.80,24.00,0 -139.20,24.00,9.14,0.00,1.00,153.60,19.20,0 -144.00,19.20,9.18,0.00,1.00,153.60,19.20,0 -148.80,19.20,9.22,0.00,1.00,158.40,14.40,0 -153.60,14.40,9.26,0.00,1.00,163.20,14.40,0 -158.40,14.40,9.30,0.00,1.00,163.20,9.60,0 -163.20,9.60,9.34,0.00,1.00,168.00,9.60,0 -168.00,9.60,9.38,0.00,1.00,172.80,4.80,0 -168.00,4.80,9.42,0.00,1.00,172.80,4.80,0 -172.80,4.80,9.46,0.00,1.00,177.60,0.00,0 -177.60,0.00,9.50,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,9.54,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,9.58,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,9.62,0.00,1.00,-172.80,-9.60,0 --168.00,-9.60,9.66,0.00,1.00,-172.80,-9.60,0 --163.20,-9.60,9.70,0.00,1.00,-168.00,-14.40,0 --158.40,-14.40,9.74,0.00,1.00,-163.20,-14.40,0 --153.60,-14.40,9.78,0.00,1.00,-163.20,-19.20,0 --148.80,-19.20,9.82,0.00,1.00,-158.40,-19.20,0 --144.00,-19.20,9.86,0.00,1.00,-153.60,-24.00,0 --139.20,-24.00,9.90,0.00,1.00,-153.60,-24.00,0 --134.40,-24.00,9.94,0.00,1.00,-148.80,-28.80,0 --129.60,-24.00,9.98,0.00,1.00,-144.00,-28.80,0 --124.80,-28.80,10.03,0.00,1.00,-139.20,-28.80,0 --120.00,-28.80,10.07,0.00,1.00,-129.60,-33.60,0 --115.20,-28.80,10.11,0.00,1.00,-124.80,-33.60,0 --110.40,-28.80,10.15,0.00,1.00,-115.20,-33.60,0 --100.80,-33.60,10.19,0.00,1.00,-110.40,-33.60,0 --96.00,-33.60,10.23,0.00,1.00,-100.80,-33.60,0 --91.20,-33.60,10.27,0.00,1.00,-91.20,-33.60,0 --86.40,-33.60,10.31,0.00,1.00,-81.60,-33.60,0 --81.60,-33.60,10.35,0.00,1.00,-76.80,-33.60,0 --76.80,-33.60,10.39,0.00,1.00,-67.20,-33.60,0 --67.20,-28.80,10.43,0.00,1.00,-57.60,-28.80,0 --62.40,-28.80,10.47,0.00,1.00,-52.80,-28.80,0 --57.60,-28.80,10.51,0.00,1.00,-48.00,-28.80,0 --52.80,-28.80,10.55,0.00,1.00,-38.40,-24.00,0 --48.00,-24.00,10.59,0.00,1.00,-33.60,-24.00,0 --43.20,-24.00,10.63,0.00,1.00,-28.80,-24.00,0 --38.40,-19.20,10.67,0.00,1.00,-28.80,-19.20,0 --33.60,-19.20,10.71,0.00,1.00,-24.00,-19.20,0 --28.80,-19.20,10.75,0.00,1.00,-19.20,-14.40,0 --24.00,-14.40,10.79,0.00,1.00,-14.40,-14.40,0 --19.20,-14.40,10.83,0.00,1.00,-14.40,-9.60,0 --14.40,-9.60,10.87,0.00,1.00,-9.60,-9.60,0 --14.40,-9.60,10.91,0.00,1.00,-9.60,-4.80,0 --9.60,-4.80,10.95,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,10.99,0.00,1.00,-4.80,0.00,0 -0.00,0.00,11.03,0.00,1.00,0.00,0.00,0 -4.80,0.00,11.07,0.00,1.00,0.00,4.80,0 -9.60,4.80,11.11,0.00,1.00,4.80,4.80,0 -14.40,4.80,11.15,0.00,1.00,4.80,9.60,0 -19.20,9.60,11.19,0.00,1.00,9.60,9.60,0 -19.20,9.60,11.23,0.00,1.00,9.60,14.40,0 -24.00,14.40,11.27,0.00,1.00,14.40,14.40,0 -28.80,14.40,11.31,0.00,1.00,19.20,19.20,0 -33.60,14.40,11.35,0.00,1.00,19.20,19.20,0 -38.40,19.20,11.39,0.00,1.00,24.00,19.20,0 -43.20,19.20,11.43,0.00,1.00,28.80,24.00,0 -48.00,24.00,11.47,0.00,1.00,33.60,24.00,0 -52.80,24.00,11.51,0.00,1.00,38.40,24.00,0 -57.60,24.00,11.55,0.00,1.00,43.20,24.00,0 -62.40,24.00,11.59,0.00,1.00,48.00,28.80,0 -72.00,24.00,11.63,0.00,1.00,52.80,28.80,0 -76.80,28.80,11.67,0.00,1.00,62.40,28.80,0 -81.60,28.80,11.71,0.00,1.00,72.00,28.80,0 -86.40,28.80,11.75,0.00,1.00,81.60,28.80,0 -91.20,28.80,11.79,0.00,1.00,91.20,28.80,0 -96.00,28.80,11.83,0.00,1.00,100.80,28.80,0 -100.80,28.80,11.87,0.00,1.00,110.40,28.80,0 -105.60,28.80,11.91,0.00,1.00,120.00,28.80,0 -110.40,24.00,11.95,0.00,1.00,129.60,24.00,0 -120.00,24.00,11.99,0.00,1.00,134.40,24.00,0 -124.80,24.00,12.03,0.00,1.00,139.20,24.00,0 -129.60,24.00,12.07,0.00,1.00,144.00,24.00,0 -134.40,19.20,12.11,0.00,1.00,148.80,19.20,0 -139.20,19.20,12.15,0.00,1.00,153.60,19.20,0 -144.00,19.20,12.19,0.00,1.00,158.40,14.40,0 -148.80,14.40,12.23,0.00,1.00,163.20,14.40,0 -153.60,14.40,12.27,0.00,1.00,163.20,14.40,0 -158.40,9.60,12.31,0.00,1.00,168.00,9.60,0 -158.40,9.60,12.35,0.00,1.00,168.00,9.60,0 -163.20,9.60,12.39,0.00,1.00,172.80,4.80,0 -168.00,4.80,12.43,0.00,1.00,172.80,4.80,0 -172.80,4.80,12.47,0.00,1.00,177.60,0.00,0 -177.60,0.00,12.51,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,12.55,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,12.59,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,12.63,0.00,1.00,-172.80,-9.60,0 --163.20,-9.60,12.67,0.00,1.00,-172.80,-9.60,0 --158.40,-9.60,12.71,0.00,1.00,-168.00,-14.40,0 --158.40,-9.60,12.75,0.00,1.00,-168.00,-14.40,0 --153.60,-14.40,12.79,0.00,1.00,-163.20,-14.40,0 --148.80,-14.40,12.83,0.00,1.00,-163.20,-19.20,0 --144.00,-19.20,12.87,0.00,1.00,-158.40,-19.20,0 --139.20,-19.20,12.91,0.00,1.00,-153.60,-24.00,0 --134.40,-19.20,12.95,0.00,1.00,-148.80,-24.00,0 --129.60,-24.00,12.99,0.00,1.00,-144.00,-24.00,0 --124.80,-24.00,13.03,0.00,1.00,-139.20,-24.00,0 --120.00,-24.00,13.07,0.00,1.00,-134.40,-28.80,0 --110.40,-24.00,13.11,0.00,1.00,-129.60,-28.80,0 --105.60,-28.80,13.15,0.00,1.00,-120.00,-28.80,0 --100.80,-28.80,13.19,0.00,1.00,-110.40,-28.80,0 --96.00,-28.80,13.23,0.00,1.00,-100.80,-28.80,0 --91.20,-28.80,13.27,0.00,1.00,-91.20,-28.80,0 --86.40,-28.80,13.31,0.00,1.00,-81.60,-28.80,0 --81.60,-28.80,13.35,0.00,1.00,-72.00,-28.80,0 --76.80,-28.80,13.39,0.00,1.00,-62.40,-28.80,0 --72.00,-24.00,13.43,0.00,1.00,-52.80,-24.00,0 --62.40,-24.00,13.47,0.00,1.00,-48.00,-24.00,0 --57.60,-24.00,13.51,0.00,1.00,-43.20,-24.00,0 --52.80,-24.00,13.55,0.00,1.00,-38.40,-24.00,0 --48.00,-24.00,13.59,0.00,1.00,-33.60,-19.20,0 --43.20,-19.20,13.63,0.00,1.00,-28.80,-19.20,0 --38.40,-19.20,13.67,0.00,1.00,-24.00,-19.20,0 --33.60,-14.40,13.71,0.00,1.00,-19.20,-14.40,0 --28.80,-14.40,13.75,0.00,1.00,-19.20,-14.40,0 --24.00,-14.40,13.79,0.00,1.00,-14.40,-9.60,0 --19.20,-9.60,13.83,0.00,1.00,-9.60,-9.60,0 --19.20,-9.60,13.87,0.00,1.00,-9.60,-4.80,0 --14.40,-4.80,13.91,0.00,1.00,-4.80,-4.80,0 --9.60,-4.80,13.95,0.00,1.00,-4.80,-0.00,0 --4.80,-0.00,13.99,0.00,1.00,-0.00,0.00,0 -0.00,0.00,14.04,0.00,1.00,0.00,0.00,0 -4.80,0.00,14.08,0.00,1.00,0.00,4.80,0 -9.60,4.80,14.12,0.00,1.00,4.80,4.80,0 -14.40,4.80,14.16,0.00,1.00,4.80,9.60,0 -19.20,9.60,14.20,0.00,1.00,9.60,9.60,0 -24.00,9.60,14.24,0.00,1.00,9.60,9.60,0 -28.80,9.60,14.28,0.00,1.00,14.40,14.40,0 -33.60,14.40,14.32,0.00,1.00,14.40,14.40,0 -38.40,14.40,14.36,0.00,1.00,19.20,14.40,0 -43.20,14.40,14.40,0.00,1.00,19.20,19.20,0 -48.00,14.40,14.44,0.00,1.00,24.00,19.20,0 -52.80,19.20,14.48,0.00,1.00,28.80,19.20,0 -57.60,19.20,14.52,0.00,1.00,33.60,19.20,0 -62.40,19.20,14.56,0.00,1.00,38.40,24.00,0 -67.20,19.20,14.60,0.00,1.00,43.20,24.00,0 -72.00,24.00,14.64,0.00,1.00,48.00,24.00,0 -76.80,24.00,14.68,0.00,1.00,57.60,24.00,0 -81.60,24.00,14.72,0.00,1.00,67.20,24.00,0 -86.40,24.00,14.76,0.00,1.00,81.60,24.00,0 -91.20,24.00,14.80,0.00,1.00,91.20,24.00,0 -96.00,24.00,14.84,0.00,1.00,105.60,24.00,0 -100.80,24.00,14.88,0.00,1.00,115.20,24.00,0 -105.60,24.00,14.92,0.00,1.00,124.80,24.00,0 -110.40,19.20,14.96,0.00,1.00,134.40,19.20,0 -115.20,19.20,15.00,0.00,1.00,139.20,19.20,0 -120.00,19.20,15.04,0.00,1.00,144.00,19.20,0 -124.80,19.20,15.08,0.00,1.00,148.80,19.20,0 -129.60,19.20,15.12,0.00,1.00,153.60,19.20,0 -134.40,14.40,15.16,0.00,1.00,158.40,14.40,0 -139.20,14.40,15.20,0.00,1.00,163.20,14.40,0 -144.00,14.40,15.24,0.00,1.00,163.20,14.40,0 -148.80,9.60,15.28,0.00,1.00,168.00,9.60,0 -153.60,9.60,15.32,0.00,1.00,168.00,9.60,0 -158.40,9.60,15.36,0.00,1.00,172.80,4.80,0 -163.20,4.80,15.40,0.00,1.00,172.80,4.80,0 -168.00,4.80,15.44,0.00,1.00,177.60,4.80,0 -172.80,4.80,15.48,0.00,1.00,177.60,0.00,0 -177.60,0.00,15.52,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,15.56,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,15.60,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,15.64,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,15.68,0.00,1.00,-172.80,-9.60,0 --158.40,-9.60,15.72,0.00,1.00,-172.80,-9.60,0 --153.60,-9.60,15.76,0.00,1.00,-168.00,-14.40,0 --148.80,-9.60,15.80,0.00,1.00,-168.00,-14.40,0 --144.00,-14.40,15.84,0.00,1.00,-163.20,-14.40,0 --139.20,-14.40,15.88,0.00,1.00,-163.20,-19.20,0 --134.40,-14.40,15.92,0.00,1.00,-158.40,-19.20,0 --129.60,-19.20,15.96,0.00,1.00,-153.60,-19.20,0 --124.80,-19.20,16.00,0.00,1.00,-148.80,-19.20,0 --120.00,-19.20,16.00,0.00,1.00,-144.00,-19.20,0 --115.20,-19.20,15.96,0.00,1.00,-139.20,-24.00,0 --110.40,-19.20,15.92,0.00,1.00,-134.40,-24.00,0 --105.60,-24.00,15.88,0.00,1.00,-124.80,-24.00,0 --100.80,-24.00,15.84,0.00,1.00,-115.20,-24.00,0 --96.00,-24.00,15.80,0.00,1.00,-105.60,-24.00,0 --91.20,-24.00,15.76,0.00,1.00,-91.20,-24.00,0 --86.40,-24.00,15.72,0.00,1.00,-81.60,-24.00,0 --81.60,-24.00,15.68,0.00,1.00,-67.20,-24.00,0 --76.80,-24.00,15.64,0.00,1.00,-57.60,-24.00,0 --72.00,-24.00,15.60,0.00,1.00,-48.00,-24.00,0 --67.20,-19.20,15.56,0.00,1.00,-43.20,-19.20,0 --62.40,-19.20,15.52,0.00,1.00,-38.40,-19.20,0 --57.60,-19.20,15.48,0.00,1.00,-33.60,-19.20,0 --52.80,-19.20,15.44,0.00,1.00,-28.80,-19.20,0 --48.00,-14.40,15.40,0.00,1.00,-24.00,-14.40,0 --43.20,-14.40,15.36,0.00,1.00,-19.20,-14.40,0 --38.40,-14.40,15.32,0.00,1.00,-19.20,-14.40,0 --33.60,-14.40,15.28,0.00,1.00,-14.40,-9.60,0 --28.80,-9.60,15.24,0.00,1.00,-14.40,-9.60,0 --24.00,-9.60,15.20,0.00,1.00,-9.60,-9.60,0 --19.20,-9.60,15.16,0.00,1.00,-9.60,-4.80,0 --14.40,-4.80,15.12,0.00,1.00,-4.80,-4.80,0 --9.60,-4.80,15.08,0.00,1.00,-4.80,-0.00,0 --4.80,-0.00,15.04,0.00,1.00,-0.00,0.00,0 -0.00,0.00,15.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,14.96,0.00,1.00,0.00,4.80,0 -9.60,4.80,14.92,0.00,1.00,4.80,4.80,0 -14.40,4.80,14.88,0.00,1.00,4.80,4.80,0 -19.20,4.80,14.84,0.00,1.00,4.80,9.60,0 -24.00,9.60,14.80,0.00,1.00,9.60,9.60,0 -28.80,9.60,14.76,0.00,1.00,9.60,9.60,0 -33.60,9.60,14.72,0.00,1.00,9.60,9.60,0 -38.40,9.60,14.68,0.00,1.00,14.40,14.40,0 -43.20,14.40,14.64,0.00,1.00,14.40,14.40,0 -48.00,14.40,14.60,0.00,1.00,19.20,14.40,0 -52.80,14.40,14.56,0.00,1.00,24.00,14.40,0 -57.60,14.40,14.52,0.00,1.00,24.00,19.20,0 -62.40,14.40,14.48,0.00,1.00,28.80,19.20,0 -67.20,14.40,14.44,0.00,1.00,38.40,19.20,0 -72.00,19.20,14.40,0.00,1.00,43.20,19.20,0 -76.80,19.20,14.36,0.00,1.00,52.80,19.20,0 -81.60,19.20,14.32,0.00,1.00,62.40,19.20,0 -86.40,19.20,14.28,0.00,1.00,76.80,19.20,0 -91.20,19.20,14.24,0.00,1.00,96.00,19.20,0 -96.00,19.20,14.20,0.00,1.00,110.40,19.20,0 -100.80,19.20,14.16,0.00,1.00,120.00,19.20,0 -105.60,19.20,14.12,0.00,1.00,134.40,19.20,0 -110.40,19.20,14.08,0.00,1.00,139.20,19.20,0 -115.20,14.40,14.04,0.00,1.00,148.80,14.40,0 -120.00,14.40,13.99,0.00,1.00,153.60,14.40,0 -124.80,14.40,13.95,0.00,1.00,158.40,14.40,0 -129.60,14.40,13.91,0.00,1.00,158.40,14.40,0 -134.40,14.40,13.87,0.00,1.00,163.20,14.40,0 -139.20,9.60,13.83,0.00,1.00,163.20,9.60,0 -144.00,9.60,13.79,0.00,1.00,168.00,9.60,0 -148.80,9.60,13.75,0.00,1.00,168.00,9.60,0 -153.60,9.60,13.71,0.00,1.00,172.80,4.80,0 -158.40,4.80,13.67,0.00,1.00,172.80,4.80,0 -163.20,4.80,13.63,0.00,1.00,172.80,4.80,0 -168.00,4.80,13.59,0.00,1.00,177.60,0.00,0 -172.80,0.00,13.55,0.00,1.00,177.60,0.00,0 -177.60,0.00,13.51,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,13.47,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,13.43,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,13.39,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,13.35,0.00,1.00,-172.80,-4.80,0 --158.40,-4.80,13.31,0.00,1.00,-172.80,-9.60,0 --153.60,-9.60,13.27,0.00,1.00,-172.80,-9.60,0 --148.80,-9.60,13.23,0.00,1.00,-168.00,-9.60,0 --144.00,-9.60,13.19,0.00,1.00,-168.00,-14.40,0 --139.20,-9.60,13.15,0.00,1.00,-163.20,-14.40,0 --134.40,-14.40,13.11,0.00,1.00,-163.20,-14.40,0 --129.60,-14.40,13.07,0.00,1.00,-158.40,-14.40,0 --124.80,-14.40,13.03,0.00,1.00,-158.40,-14.40,0 --120.00,-14.40,12.99,0.00,1.00,-153.60,-19.20,0 --115.20,-14.40,12.95,0.00,1.00,-148.80,-19.20,0 --110.40,-19.20,12.91,0.00,1.00,-139.20,-19.20,0 --105.60,-19.20,12.87,0.00,1.00,-134.40,-19.20,0 --100.80,-19.20,12.83,0.00,1.00,-120.00,-19.20,0 --96.00,-19.20,12.79,0.00,1.00,-110.40,-19.20,0 --91.20,-19.20,12.75,0.00,1.00,-96.00,-19.20,0 --86.40,-19.20,12.71,0.00,1.00,-76.80,-19.20,0 --81.60,-19.20,12.67,0.00,1.00,-62.40,-19.20,0 --76.80,-19.20,12.63,0.00,1.00,-52.80,-19.20,0 --72.00,-19.20,12.59,0.00,1.00,-43.20,-19.20,0 --67.20,-14.40,12.55,0.00,1.00,-38.40,-19.20,0 --62.40,-14.40,12.51,0.00,1.00,-28.80,-14.40,0 --57.60,-14.40,12.47,0.00,1.00,-24.00,-14.40,0 --52.80,-14.40,12.43,0.00,1.00,-24.00,-14.40,0 --48.00,-14.40,12.39,0.00,1.00,-19.20,-14.40,0 --43.20,-14.40,12.35,0.00,1.00,-14.40,-9.60,0 --38.40,-9.60,12.31,0.00,1.00,-14.40,-9.60,0 --33.60,-9.60,12.27,0.00,1.00,-9.60,-9.60,0 --28.80,-9.60,12.23,0.00,1.00,-9.60,-9.60,0 --24.00,-9.60,12.19,0.00,1.00,-9.60,-4.80,0 --19.20,-4.80,12.15,0.00,1.00,-4.80,-4.80,0 --14.40,-4.80,12.11,0.00,1.00,-4.80,-4.80,0 --9.60,-4.80,12.07,0.00,1.00,-4.80,-0.00,0 --4.80,-0.00,12.03,0.00,1.00,-0.00,0.00,0 -0.00,0.00,11.99,0.00,1.00,0.00,0.00,0 -4.80,0.00,11.95,0.00,1.00,0.00,0.00,0 -9.60,0.00,11.91,0.00,1.00,0.00,4.80,0 -14.40,4.80,11.87,0.00,1.00,4.80,4.80,0 -19.20,4.80,11.83,0.00,1.00,4.80,4.80,0 -24.00,4.80,11.79,0.00,1.00,4.80,4.80,0 -28.80,4.80,11.75,0.00,1.00,4.80,9.60,0 -33.60,9.60,11.71,0.00,1.00,9.60,9.60,0 -38.40,9.60,11.67,0.00,1.00,9.60,9.60,0 -43.20,9.60,11.63,0.00,1.00,14.40,9.60,0 -48.00,9.60,11.59,0.00,1.00,14.40,9.60,0 -52.80,9.60,11.55,0.00,1.00,14.40,14.40,0 -57.60,9.60,11.51,0.00,1.00,19.20,14.40,0 -62.40,9.60,11.47,0.00,1.00,24.00,14.40,0 -67.20,14.40,11.43,0.00,1.00,28.80,14.40,0 -72.00,14.40,11.39,0.00,1.00,33.60,14.40,0 -76.80,14.40,11.35,0.00,1.00,43.20,14.40,0 -81.60,14.40,11.31,0.00,1.00,57.60,14.40,0 -86.40,14.40,11.27,0.00,1.00,76.80,14.40,0 -91.20,14.40,11.23,0.00,1.00,96.00,14.40,0 -96.00,14.40,11.19,0.00,1.00,115.20,14.40,0 -100.80,14.40,11.15,0.00,1.00,129.60,14.40,0 -105.60,14.40,11.11,0.00,1.00,139.20,14.40,0 -110.40,14.40,11.07,0.00,1.00,148.80,14.40,0 -115.20,9.60,11.03,0.00,1.00,153.60,14.40,0 -120.00,9.60,10.99,0.00,1.00,158.40,9.60,0 -124.80,9.60,10.95,0.00,1.00,163.20,9.60,0 -129.60,9.60,10.91,0.00,1.00,163.20,9.60,0 -134.40,9.60,10.87,0.00,1.00,168.00,9.60,0 -139.20,9.60,10.83,0.00,1.00,168.00,9.60,0 -144.00,9.60,10.79,0.00,1.00,172.80,9.60,0 -148.80,4.80,10.75,0.00,1.00,172.80,4.80,0 -153.60,4.80,10.71,0.00,1.00,172.80,4.80,0 -158.40,4.80,10.67,0.00,1.00,172.80,4.80,0 -163.20,4.80,10.63,0.00,1.00,177.60,4.80,0 -168.00,4.80,10.59,0.00,1.00,177.60,0.00,0 -172.80,0.00,10.55,0.00,1.00,177.60,0.00,0 -177.60,0.00,10.51,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.47,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,10.43,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,10.39,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,10.35,0.00,1.00,-177.60,-4.80,0 --158.40,-4.80,10.31,0.00,1.00,-172.80,-4.80,0 --153.60,-4.80,10.27,0.00,1.00,-172.80,-9.60,0 --148.80,-4.80,10.23,0.00,1.00,-172.80,-9.60,0 --144.00,-9.60,10.19,0.00,1.00,-172.80,-9.60,0 --139.20,-9.60,10.15,0.00,1.00,-168.00,-9.60,0 --134.40,-9.60,10.11,0.00,1.00,-168.00,-9.60,0 --129.60,-9.60,10.07,0.00,1.00,-163.20,-9.60,0 --124.80,-9.60,10.03,0.00,1.00,-163.20,-14.40,0 --120.00,-9.60,9.98,0.00,1.00,-158.40,-14.40,0 --115.20,-9.60,9.94,0.00,1.00,-153.60,-14.40,0 --110.40,-14.40,9.90,0.00,1.00,-148.80,-14.40,0 --105.60,-14.40,9.86,0.00,1.00,-139.20,-14.40,0 --100.80,-14.40,9.82,0.00,1.00,-129.60,-14.40,0 --96.00,-14.40,9.78,0.00,1.00,-115.20,-14.40,0 --91.20,-14.40,9.74,0.00,1.00,-96.00,-14.40,0 --86.40,-14.40,9.70,0.00,1.00,-76.80,-14.40,0 --81.60,-14.40,9.66,0.00,1.00,-57.60,-14.40,0 --76.80,-14.40,9.62,0.00,1.00,-43.20,-14.40,0 --72.00,-14.40,9.58,0.00,1.00,-33.60,-14.40,0 --67.20,-14.40,9.54,0.00,1.00,-28.80,-14.40,0 --62.40,-9.60,9.50,0.00,1.00,-24.00,-14.40,0 --57.60,-9.60,9.46,0.00,1.00,-19.20,-9.60,0 --52.80,-9.60,9.42,0.00,1.00,-14.40,-9.60,0 --48.00,-9.60,9.38,0.00,1.00,-14.40,-9.60,0 --43.20,-9.60,9.34,0.00,1.00,-14.40,-9.60,0 --38.40,-9.60,9.30,0.00,1.00,-9.60,-9.60,0 --33.60,-9.60,9.26,0.00,1.00,-9.60,-4.80,0 --28.80,-4.80,9.22,0.00,1.00,-4.80,-4.80,0 --24.00,-4.80,9.18,0.00,1.00,-4.80,-4.80,0 --19.20,-4.80,9.14,0.00,1.00,-4.80,-4.80,0 --14.40,-4.80,9.10,0.00,1.00,-4.80,-0.00,0 --9.60,-0.00,9.06,0.00,1.00,-0.00,-0.00,0 --4.80,-0.00,9.02,0.00,1.00,-0.00,0.00,0 -0.00,0.00,8.98,0.00,1.00,0.00,0.00,0 -4.80,0.00,8.94,0.00,1.00,0.00,0.00,0 -9.60,0.00,8.90,0.00,1.00,0.00,0.00,0 -14.40,0.00,8.86,0.00,1.00,0.00,4.80,0 -19.20,4.80,8.82,0.00,1.00,4.80,4.80,0 -24.00,4.80,8.78,0.00,1.00,4.80,4.80,0 -28.80,4.80,8.74,0.00,1.00,4.80,4.80,0 -33.60,4.80,8.70,0.00,1.00,4.80,4.80,0 -38.40,4.80,8.66,0.00,1.00,4.80,4.80,0 -43.20,4.80,8.62,0.00,1.00,9.60,4.80,0 -48.00,4.80,8.58,0.00,1.00,9.60,9.60,0 -52.80,4.80,8.54,0.00,1.00,9.60,9.60,0 -57.60,4.80,8.50,0.00,1.00,14.40,9.60,0 -62.40,9.60,8.46,0.00,1.00,14.40,9.60,0 -67.20,9.60,8.42,0.00,1.00,19.20,9.60,0 -72.00,9.60,8.38,0.00,1.00,24.00,9.60,0 -76.80,9.60,8.34,0.00,1.00,33.60,9.60,0 -81.60,9.60,8.30,0.00,1.00,43.20,9.60,0 -86.40,9.60,8.26,0.00,1.00,67.20,9.60,0 -91.20,9.60,8.22,0.00,1.00,96.00,9.60,0 -96.00,9.60,8.18,0.00,1.00,124.80,9.60,0 -100.80,9.60,8.14,0.00,1.00,144.00,9.60,0 -105.60,9.60,8.10,0.00,1.00,153.60,9.60,0 -110.40,9.60,8.06,0.00,1.00,158.40,9.60,0 -115.20,9.60,8.02,0.00,1.00,163.20,9.60,0 -120.00,9.60,7.98,0.00,1.00,168.00,9.60,0 -124.80,4.80,7.94,0.00,1.00,168.00,9.60,0 -129.60,4.80,7.90,0.00,1.00,168.00,4.80,0 -134.40,4.80,7.86,0.00,1.00,172.80,4.80,0 -139.20,4.80,7.82,0.00,1.00,172.80,4.80,0 -144.00,4.80,7.78,0.00,1.00,172.80,4.80,0 -148.80,4.80,7.74,0.00,1.00,172.80,4.80,0 -153.60,4.80,7.70,0.00,1.00,177.60,4.80,0 -158.40,4.80,7.66,0.00,1.00,177.60,4.80,0 -163.20,4.80,7.62,0.00,1.00,177.60,0.00,0 -168.00,0.00,7.58,0.00,1.00,177.60,0.00,0 -172.80,0.00,7.54,0.00,1.00,177.60,0.00,0 -177.60,0.00,7.50,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,7.46,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,7.42,0.00,1.00,-177.60,-0.00,0 --168.00,-0.00,7.38,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,7.34,0.00,1.00,-177.60,-4.80,0 --158.40,-4.80,7.30,0.00,1.00,-177.60,-4.80,0 --153.60,-4.80,7.26,0.00,1.00,-177.60,-4.80,0 --148.80,-4.80,7.22,0.00,1.00,-172.80,-4.80,0 --144.00,-4.80,7.18,0.00,1.00,-172.80,-4.80,0 --139.20,-4.80,7.14,0.00,1.00,-172.80,-4.80,0 --134.40,-4.80,7.10,0.00,1.00,-172.80,-9.60,0 --129.60,-4.80,7.06,0.00,1.00,-168.00,-9.60,0 --124.80,-4.80,7.02,0.00,1.00,-168.00,-9.60,0 --120.00,-9.60,6.98,0.00,1.00,-168.00,-9.60,0 --115.20,-9.60,6.94,0.00,1.00,-163.20,-9.60,0 --110.40,-9.60,6.90,0.00,1.00,-158.40,-9.60,0 --105.60,-9.60,6.86,0.00,1.00,-153.60,-9.60,0 --100.80,-9.60,6.82,0.00,1.00,-144.00,-9.60,0 --96.00,-9.60,6.78,0.00,1.00,-124.80,-9.60,0 --91.20,-9.60,6.74,0.00,1.00,-96.00,-9.60,0 --86.40,-9.60,6.70,0.00,1.00,-67.20,-9.60,0 --81.60,-9.60,6.66,0.00,1.00,-43.20,-9.60,0 --76.80,-9.60,6.62,0.00,1.00,-33.60,-9.60,0 --72.00,-9.60,6.58,0.00,1.00,-24.00,-9.60,0 --67.20,-9.60,6.54,0.00,1.00,-19.20,-9.60,0 --62.40,-9.60,6.50,0.00,1.00,-14.40,-9.60,0 --57.60,-4.80,6.46,0.00,1.00,-14.40,-9.60,0 --52.80,-4.80,6.42,0.00,1.00,-9.60,-4.80,0 --48.00,-4.80,6.38,0.00,1.00,-9.60,-4.80,0 --43.20,-4.80,6.34,0.00,1.00,-9.60,-4.80,0 --38.40,-4.80,6.30,0.00,1.00,-4.80,-4.80,0 --33.60,-4.80,6.26,0.00,1.00,-4.80,-4.80,0 --28.80,-4.80,6.22,0.00,1.00,-4.80,-4.80,0 --24.00,-4.80,6.18,0.00,1.00,-4.80,-4.80,0 --19.20,-4.80,6.14,0.00,1.00,-4.80,-0.00,0 --14.40,-0.00,6.10,0.00,1.00,-0.00,-0.00,0 --9.60,-0.00,6.06,0.00,1.00,-0.00,-0.00,0 --4.80,-0.00,6.02,0.00,1.00,-0.00,0.00,0 -0.00,0.00,5.97,0.00,1.00,0.00,0.00,0 -4.80,0.00,5.93,0.00,1.00,0.00,0.00,0 -9.60,0.00,5.89,0.00,1.00,0.00,0.00,0 -14.40,0.00,5.85,0.00,1.00,0.00,0.00,0 -19.20,0.00,5.81,0.00,1.00,0.00,0.00,0 -24.00,0.00,5.77,0.00,1.00,0.00,0.00,0 -28.80,0.00,5.73,0.00,1.00,0.00,4.80,0 -33.60,0.00,5.69,0.00,1.00,0.00,4.80,0 -38.40,0.00,5.65,0.00,1.00,4.80,4.80,0 -43.20,4.80,5.61,0.00,1.00,4.80,4.80,0 -48.00,4.80,5.57,0.00,1.00,4.80,4.80,0 -52.80,4.80,5.53,0.00,1.00,4.80,4.80,0 -57.60,4.80,5.49,0.00,1.00,4.80,4.80,0 -62.40,4.80,5.45,0.00,1.00,4.80,4.80,0 -67.20,4.80,5.41,0.00,1.00,9.60,4.80,0 -72.00,4.80,5.37,0.00,1.00,9.60,4.80,0 -76.80,4.80,5.33,0.00,1.00,14.40,4.80,0 -81.60,4.80,5.29,0.00,1.00,24.00,4.80,0 -86.40,4.80,5.25,0.00,1.00,43.20,4.80,0 -91.20,4.80,5.21,0.00,1.00,110.40,4.80,0 -96.00,4.80,5.17,0.00,1.00,148.80,4.80,0 -100.80,4.80,5.13,0.00,1.00,163.20,4.80,0 -105.60,4.80,5.09,0.00,1.00,168.00,4.80,0 -110.40,4.80,5.05,0.00,1.00,172.80,4.80,0 -115.20,4.80,5.01,0.00,1.00,172.80,4.80,0 -120.00,4.80,4.97,0.00,1.00,172.80,4.80,0 -124.80,4.80,4.93,0.00,1.00,172.80,4.80,0 -129.60,4.80,4.89,0.00,1.00,177.60,4.80,0 -134.40,4.80,4.85,0.00,1.00,177.60,4.80,0 -139.20,0.00,4.81,0.00,1.00,177.60,4.80,0 -144.00,0.00,4.77,0.00,1.00,177.60,4.80,0 -148.80,0.00,4.73,0.00,1.00,177.60,0.00,0 -153.60,0.00,4.69,0.00,1.00,177.60,0.00,0 -158.40,0.00,4.65,0.00,1.00,177.60,0.00,0 -163.20,0.00,4.61,0.00,1.00,177.60,0.00,0 -168.00,0.00,4.57,0.00,1.00,177.60,0.00,0 -172.80,0.00,4.53,0.00,1.00,177.60,0.00,0 -177.60,0.00,4.49,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,4.45,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,4.41,0.00,1.00,-177.60,-0.00,0 --168.00,-0.00,4.37,0.00,1.00,-177.60,-0.00,0 --163.20,-0.00,4.33,0.00,1.00,-177.60,-0.00,0 --158.40,-0.00,4.29,0.00,1.00,-177.60,-0.00,0 --153.60,-0.00,4.25,0.00,1.00,-177.60,-4.80,0 --148.80,-0.00,4.21,0.00,1.00,-177.60,-4.80,0 --144.00,-0.00,4.17,0.00,1.00,-177.60,-4.80,0 --139.20,-0.00,4.13,0.00,1.00,-177.60,-4.80,0 --134.40,-4.80,4.09,0.00,1.00,-177.60,-4.80,0 --129.60,-4.80,4.05,0.00,1.00,-177.60,-4.80,0 --124.80,-4.80,4.01,0.00,1.00,-172.80,-4.80,0 --120.00,-4.80,3.97,0.00,1.00,-172.80,-4.80,0 --115.20,-4.80,3.93,0.00,1.00,-172.80,-4.80,0 --110.40,-4.80,3.89,0.00,1.00,-172.80,-4.80,0 --105.60,-4.80,3.85,0.00,1.00,-168.00,-4.80,0 --100.80,-4.80,3.81,0.00,1.00,-163.20,-4.80,0 --96.00,-4.80,3.77,0.00,1.00,-148.80,-4.80,0 --91.20,-4.80,3.73,0.00,1.00,-110.40,-4.80,0 --86.40,-4.80,3.69,0.00,1.00,-43.20,-4.80,0 --81.60,-4.80,3.65,0.00,1.00,-24.00,-4.80,0 --76.80,-4.80,3.61,0.00,1.00,-14.40,-4.80,0 --72.00,-4.80,3.57,0.00,1.00,-9.60,-4.80,0 --67.20,-4.80,3.53,0.00,1.00,-9.60,-4.80,0 --62.40,-4.80,3.49,0.00,1.00,-4.80,-4.80,0 --57.60,-4.80,3.45,0.00,1.00,-4.80,-4.80,0 --52.80,-4.80,3.41,0.00,1.00,-4.80,-4.80,0 --48.00,-4.80,3.37,0.00,1.00,-4.80,-4.80,0 --43.20,-4.80,3.33,0.00,1.00,-4.80,-4.80,0 --38.40,-0.00,3.29,0.00,1.00,-4.80,-4.80,0 --33.60,-0.00,3.25,0.00,1.00,-0.00,-0.00,0 --28.80,-0.00,3.21,0.00,1.00,-0.00,-0.00,0 --24.00,-0.00,3.17,0.00,1.00,-0.00,-0.00,0 --19.20,-0.00,3.13,0.00,1.00,-0.00,-0.00,0 --14.40,-0.00,3.09,0.00,1.00,-0.00,-0.00,0 --9.60,-0.00,3.05,0.00,1.00,-0.00,-0.00,0 --4.80,-0.00,3.01,0.00,1.00,-0.00,0.00,0 -0.00,0.00,2.97,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,2.93,0.00,1.00,-0.00,0.00,0 -9.60,-0.00,2.89,0.00,1.00,-0.00,0.00,0 -14.40,-0.00,2.85,0.00,1.00,-0.00,0.00,0 -19.20,-0.00,2.81,0.00,1.00,-0.00,0.00,0 -24.00,-0.00,2.77,0.00,1.00,-0.00,0.00,0 -28.80,-0.00,2.73,0.00,1.00,-0.00,0.00,0 -33.60,-0.00,2.69,0.00,1.00,-0.00,0.00,0 -38.40,-0.00,2.65,0.00,1.00,-0.00,0.00,0 -43.20,-0.00,2.61,0.00,1.00,-0.00,0.00,0 -48.00,-0.00,2.57,0.00,1.00,-0.00,0.00,0 -52.80,-0.00,2.53,0.00,1.00,-0.00,0.00,0 -57.60,-0.00,2.49,0.00,1.00,-0.00,0.00,0 -62.40,-0.00,2.45,0.00,1.00,-0.00,0.00,0 -67.20,-0.00,2.41,0.00,1.00,-4.80,0.00,0 -72.00,-0.00,2.37,0.00,1.00,-4.80,0.00,0 -76.80,-0.00,2.33,0.00,1.00,-4.80,0.00,0 -81.60,-0.00,2.29,0.00,1.00,-9.60,0.00,0 -86.40,-0.00,2.25,0.00,1.00,-19.20,0.00,0 -91.20,-0.00,2.21,0.00,1.00,-134.40,0.00,0 -96.00,-0.00,2.17,0.00,1.00,-168.00,0.00,0 -100.80,-0.00,2.13,0.00,1.00,-172.80,0.00,0 -105.60,-0.00,2.09,0.00,1.00,-177.60,0.00,0 -110.40,-0.00,2.05,0.00,1.00,-177.60,0.00,0 -115.20,-0.00,2.01,0.00,1.00,-177.60,0.00,0 -120.00,-0.00,1.96,0.00,1.00,-177.60,0.00,0 -124.80,-0.00,1.92,0.00,1.00,-177.60,0.00,0 -129.60,-0.00,1.88,0.00,1.00,-177.60,0.00,0 -134.40,-0.00,1.84,0.00,1.00,-177.60,0.00,0 -139.20,-0.00,1.80,0.00,1.00,-177.60,0.00,0 -144.00,-0.00,1.76,0.00,1.00,-177.60,0.00,0 -148.80,-0.00,1.72,0.00,1.00,-177.60,0.00,0 -153.60,-0.00,1.68,0.00,1.00,-177.60,0.00,0 -158.40,-0.00,1.64,0.00,1.00,-177.60,0.00,0 -163.20,-0.00,1.60,0.00,1.00,-177.60,0.00,0 -168.00,-0.00,1.56,0.00,1.00,-177.60,0.00,0 -172.80,-0.00,1.52,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,1.48,0.00,1.00,-177.60,0.00,0 --177.60,0.00,1.44,0.00,1.00,177.60,0.00,0 --172.80,0.00,1.40,0.00,1.00,177.60,0.00,0 --168.00,0.00,1.36,0.00,1.00,177.60,0.00,0 --163.20,0.00,1.32,0.00,1.00,177.60,0.00,0 --158.40,0.00,1.28,0.00,1.00,177.60,0.00,0 --153.60,0.00,1.24,0.00,1.00,177.60,0.00,0 --148.80,0.00,1.20,0.00,1.00,177.60,0.00,0 --144.00,0.00,1.16,0.00,1.00,177.60,0.00,0 --139.20,0.00,1.12,0.00,1.00,177.60,0.00,0 --134.40,0.00,1.08,0.00,1.00,177.60,0.00,0 --129.60,0.00,1.04,0.00,1.00,177.60,0.00,0 --124.80,0.00,1.00,0.00,1.00,177.60,0.00,0 --120.00,0.00,0.96,0.00,1.00,177.60,0.00,0 --115.20,0.00,0.92,0.00,1.00,177.60,0.00,0 --110.40,0.00,0.88,0.00,1.00,177.60,0.00,0 --105.60,0.00,0.84,0.00,1.00,177.60,0.00,0 --100.80,0.00,0.80,0.00,1.00,172.80,0.00,0 --96.00,0.00,0.76,0.00,1.00,168.00,0.00,0 --91.20,0.00,0.72,0.00,1.00,134.40,0.00,0 --86.40,0.00,0.68,0.00,1.00,19.20,0.00,0 --81.60,0.00,0.64,0.00,1.00,9.60,0.00,0 --76.80,0.00,0.60,0.00,1.00,4.80,0.00,0 --72.00,0.00,0.56,0.00,1.00,4.80,0.00,0 --67.20,0.00,0.52,0.00,1.00,4.80,0.00,0 --62.40,0.00,0.48,0.00,1.00,0.00,0.00,0 --57.60,0.00,0.44,0.00,1.00,0.00,0.00,0 --52.80,0.00,0.40,0.00,1.00,0.00,0.00,0 --48.00,0.00,0.36,0.00,1.00,0.00,0.00,0 --43.20,0.00,0.32,0.00,1.00,0.00,0.00,0 --38.40,0.00,0.28,0.00,1.00,0.00,0.00,0 --33.60,0.00,0.24,0.00,1.00,0.00,0.00,0 --28.80,0.00,0.20,0.00,1.00,0.00,0.00,0 --24.00,0.00,0.16,0.00,1.00,0.00,0.00,0 --19.20,0.00,0.12,0.00,1.00,0.00,0.00,0 --14.40,0.00,0.08,0.00,1.00,0.00,0.00,0 --9.60,0.00,0.04,0.00,1.00,0.00,0.00,0 --4.80,0.00,0.00,0.00,1.00,0.00,0.00,0 diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC32c.met b/scripts/testv/stvOMASA_4ISM_1MASA2TC32c.met deleted file mode 100644 index 00acdae5394c5d40e9193d7dd9cd1fee6d182c24..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_1MASA2TC32c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5a1f87bfe360dbd221a94583aa68a58ef050e968a63351730d643f2dc2cac4e1 -size 204600 diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC32c.wav b/scripts/testv/stvOMASA_4ISM_1MASA2TC32c.wav deleted file mode 100644 index 916fb8cef10cfa143b0cf349c62dcd743836b560..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_1MASA2TC32c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d8264a0b7ed12f5c0bfabf0e7d87ba8fdd5721b709aa55d7f0884ecc11ffcd1c -size 2304080 diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC32c_ISM1.csv b/scripts/testv/stvOMASA_4ISM_1MASA2TC32c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_1MASA2TC32c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC32c_ISM2.csv b/scripts/testv/stvOMASA_4ISM_1MASA2TC32c_ISM2.csv deleted file mode 100644 index f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_1MASA2TC32c_ISM2.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,4.80,16.00,0.00,1.00,0.00,0.00,0 -0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0 -0.00,14.40,15.96,0.00,1.00,4.80,9.60,0 -0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0 -0.00,24.00,15.91,0.00,1.00,14.40,19.20,0 -0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0 -0.00,33.60,15.87,0.00,1.00,19.20,28.80,0 -0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0 -0.00,43.20,15.83,0.00,1.00,28.80,38.40,0 -0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0 -0.00,52.80,15.79,0.00,1.00,38.40,48.00,0 -0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0 -0.00,62.40,15.74,0.00,1.00,48.00,57.60,0 -4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0 -4.80,72.00,15.70,0.00,1.00,57.60,67.20,0 -4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0 -9.60,81.60,15.66,0.00,1.00,72.00,76.80,0 -19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0 -134.40,86.40,15.62,0.00,1.00,86.40,86.40,0 -168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0 -172.80,76.80,15.57,0.00,1.00,100.80,86.40,0 -177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0 -177.60,67.20,15.53,0.00,1.00,110.40,76.80,0 -177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0 -177.60,57.60,15.49,0.00,1.00,124.80,67.20,0 -177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0 -177.60,48.00,15.44,0.00,1.00,134.40,57.60,0 -177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0 -177.60,38.40,15.40,0.00,1.00,144.00,48.00,0 -177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0 -177.60,28.80,15.36,0.00,1.00,153.60,38.40,0 -177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0 -177.60,19.20,15.32,0.00,1.00,158.40,28.80,0 -177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0 -177.60,9.60,15.27,0.00,1.00,168.00,19.20,0 -177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0 -177.60,0.00,15.23,0.00,1.00,172.80,9.60,0 --177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0 --177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0 --177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0 --177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0 --177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0 --177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0 --177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0 --177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0 --177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0 --177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0 --177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0 --177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0 --177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0 --177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0 --177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0 --177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0 --172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0 --168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0 --134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0 --19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0 --9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0 --4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0 --4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0 --4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0 --0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0 --0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0 --0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0 --0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0 --0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0 --0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0 --0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0 --0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0 --0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0 --0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0 --0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0 --0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0 --0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0 --0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,14.40,0.00,1.00,0.00,0.00,0 --0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0 --0.00,14.40,14.36,0.00,1.00,9.60,9.60,0 --0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0 --0.00,24.00,14.31,0.00,1.00,14.40,19.20,0 --0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0 --0.00,33.60,14.27,0.00,1.00,24.00,28.80,0 --4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0 --4.80,43.20,14.23,0.00,1.00,28.80,38.40,0 --4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0 --4.80,52.80,14.18,0.00,1.00,38.40,48.00,0 --4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0 --4.80,62.40,14.14,0.00,1.00,48.00,57.60,0 --9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0 --9.60,72.00,14.10,0.00,1.00,62.40,67.20,0 --14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0 --24.00,81.60,14.06,0.00,1.00,72.00,76.80,0 --43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0 --110.40,86.40,14.01,0.00,1.00,86.40,86.40,0 --148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0 --163.20,76.80,13.97,0.00,1.00,96.00,81.60,0 --168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0 --172.80,67.20,13.93,0.00,1.00,110.40,72.00,0 --172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0 --172.80,57.60,13.89,0.00,1.00,120.00,62.40,0 --172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0 --177.60,48.00,13.84,0.00,1.00,134.40,52.80,0 --177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0 --177.60,38.40,13.80,0.00,1.00,144.00,43.20,0 --177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0 --177.60,28.80,13.76,0.00,1.00,148.80,33.60,0 --177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0 --177.60,19.20,13.71,0.00,1.00,158.40,24.00,0 --177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0 --177.60,9.60,13.67,0.00,1.00,168.00,14.40,0 --177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0 --177.60,0.00,13.63,0.00,1.00,172.80,4.80,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0 -177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0 -177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0 -177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0 -177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0 -177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0 -177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0 -172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0 -172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0 -172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0 -172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0 -168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0 -163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0 -148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0 -110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0 -43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0 -24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0 -14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0 -9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0 -9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0 -4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0 -4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0 -4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0 -4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0 -4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0 -0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0 -0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0 -0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0 -0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0 -0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,12.80,0.00,1.00,0.00,0.00,0 --0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0 --0.00,14.40,12.75,0.00,1.00,9.60,9.60,0 --4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0 --4.80,24.00,12.71,0.00,1.00,14.40,19.20,0 --4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0 --4.80,33.60,12.67,0.00,1.00,24.00,28.80,0 --4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0 --9.60,43.20,12.62,0.00,1.00,33.60,38.40,0 --9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0 --9.60,52.80,12.58,0.00,1.00,43.20,48.00,0 --14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0 --14.40,62.40,12.54,0.00,1.00,52.80,57.60,0 --19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0 --24.00,72.00,12.50,0.00,1.00,62.40,67.20,0 --33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0 --43.20,76.80,12.45,0.00,1.00,72.00,72.00,0 --67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0 --96.00,81.60,12.41,0.00,1.00,86.40,81.60,0 --124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0 --144.00,76.80,12.37,0.00,1.00,96.00,76.80,0 --153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0 --158.40,67.20,12.33,0.00,1.00,110.40,72.00,0 --163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0 --168.00,57.60,12.28,0.00,1.00,120.00,62.40,0 --168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0 --168.00,48.00,12.24,0.00,1.00,129.60,52.80,0 --172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0 --172.80,38.40,12.20,0.00,1.00,139.20,43.20,0 --172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0 --172.80,28.80,12.15,0.00,1.00,148.80,33.60,0 --177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0 --177.60,19.20,12.11,0.00,1.00,158.40,24.00,0 --177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0 --177.60,9.60,12.07,0.00,1.00,168.00,14.40,0 --177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0 --177.60,0.00,12.03,0.00,1.00,172.80,4.80,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0 -177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0 -172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0 -172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0 -168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0 -168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0 -168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0 -163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0 -158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0 -153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0 -144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0 -124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0 -96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0 -67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0 -43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0 -33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0 -24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0 -19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0 -14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0 -14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0 -9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0 -9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0 -9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0 -4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0 -4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0 -0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,11.19,0.00,1.00,0.00,0.00,0 --0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0 --4.80,14.40,11.15,0.00,1.00,9.60,9.60,0 --4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0 --4.80,24.00,11.11,0.00,1.00,14.40,19.20,0 --4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0 --9.60,33.60,11.07,0.00,1.00,24.00,28.80,0 --9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0 --14.40,43.20,11.02,0.00,1.00,33.60,38.40,0 --14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0 --14.40,52.80,10.98,0.00,1.00,43.20,48.00,0 --19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0 --24.00,57.60,10.94,0.00,1.00,52.80,52.80,0 --28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0 --33.60,67.20,10.89,0.00,1.00,62.40,62.40,0 --43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0 --57.60,72.00,10.85,0.00,1.00,76.80,72.00,0 --76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0 --96.00,76.80,10.81,0.00,1.00,86.40,76.80,0 --115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0 --129.60,72.00,10.77,0.00,1.00,96.00,76.80,0 --139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0 --148.80,67.20,10.72,0.00,1.00,105.60,67.20,0 --153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0 --158.40,57.60,10.68,0.00,1.00,120.00,62.40,0 --163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0 --163.20,48.00,10.64,0.00,1.00,129.60,52.80,0 --168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0 --168.00,38.40,10.60,0.00,1.00,139.20,43.20,0 --172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0 --172.80,28.80,10.55,0.00,1.00,148.80,33.60,0 --172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0 --172.80,19.20,10.51,0.00,1.00,158.40,24.00,0 --177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0 --177.60,9.60,10.47,0.00,1.00,163.20,14.40,0 --177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0 --177.60,0.00,10.42,0.00,1.00,172.80,4.80,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0 -168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0 -168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0 -163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0 -163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0 -158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0 -153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0 -148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0 -139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0 -129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0 -115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0 -96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0 -76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0 -57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0 -43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0 -33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0 -28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0 -24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0 -19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0 -14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0 -14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0 -14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0 -9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0 -9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0 -4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0 -4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0 -0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,9.59,0.00,1.00,0.00,0.00,0 --4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0 --4.80,14.40,9.55,0.00,1.00,9.60,9.60,0 --4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0 --9.60,24.00,9.51,0.00,1.00,19.20,19.20,0 --9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0 --9.60,33.60,9.46,0.00,1.00,24.00,28.80,0 --14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0 --14.40,38.40,9.42,0.00,1.00,33.60,33.60,0 --19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0 --24.00,48.00,9.38,0.00,1.00,43.20,43.20,0 --24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0 --28.80,57.60,9.34,0.00,1.00,52.80,52.80,0 --38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0 --43.20,62.40,9.29,0.00,1.00,67.20,62.40,0 --52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0 --62.40,72.00,9.25,0.00,1.00,76.80,67.20,0 --76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0 --96.00,72.00,9.21,0.00,1.00,86.40,72.00,0 --110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0 --120.00,67.20,9.16,0.00,1.00,96.00,72.00,0 --134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0 --139.20,62.40,9.12,0.00,1.00,105.60,67.20,0 --148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0 --153.60,57.60,9.08,0.00,1.00,115.20,57.60,0 --158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0 --158.40,48.00,9.04,0.00,1.00,129.60,52.80,0 --163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0 --163.20,38.40,8.99,0.00,1.00,139.20,43.20,0 --168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0 --168.00,28.80,8.95,0.00,1.00,148.80,33.60,0 --172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0 --172.80,19.20,8.91,0.00,1.00,153.60,24.00,0 --172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0 --177.60,9.60,8.87,0.00,1.00,163.20,14.40,0 --177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0 --177.60,0.00,8.82,0.00,1.00,172.80,4.80,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0 -168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0 -163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0 -163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0 -158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0 -158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0 -153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0 -148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0 -139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0 -134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0 -120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0 -110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0 -96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0 -76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0 -62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0 -52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0 -43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0 -38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0 -28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0 -24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0 -24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0 -19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0 -14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0 -14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0 -9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0 -9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0 -9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0 -0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,7.99,0.00,1.00,0.00,0.00,0 --4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0 --4.80,14.40,7.95,0.00,1.00,9.60,9.60,0 --9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0 --9.60,24.00,7.90,0.00,1.00,19.20,19.20,0 --14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0 --14.40,28.80,7.86,0.00,1.00,28.80,24.00,0 --19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0 --19.20,38.40,7.82,0.00,1.00,38.40,33.60,0 --24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0 --28.80,48.00,7.78,0.00,1.00,48.00,43.20,0 --33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0 --38.40,52.80,7.73,0.00,1.00,57.60,52.80,0 --43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0 --48.00,62.40,7.69,0.00,1.00,67.20,57.60,0 --57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0 --67.20,67.20,7.65,0.00,1.00,76.80,62.40,0 --81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0 --91.20,67.20,7.60,0.00,1.00,86.40,67.20,0 --105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0 --115.20,67.20,7.56,0.00,1.00,96.00,67.20,0 --124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0 --134.40,57.60,7.52,0.00,1.00,105.60,62.40,0 --139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0 --144.00,52.80,7.48,0.00,1.00,115.20,57.60,0 --148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0 --153.60,43.20,7.43,0.00,1.00,124.80,48.00,0 --158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0 --163.20,38.40,7.39,0.00,1.00,134.40,38.40,0 --163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0 --168.00,28.80,7.35,0.00,1.00,144.00,33.60,0 --168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0 --172.80,19.20,7.31,0.00,1.00,153.60,24.00,0 --172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0 --177.60,9.60,7.26,0.00,1.00,163.20,14.40,0 --177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0 --177.60,0.00,7.22,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0 -163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0 -158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0 -153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0 -148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0 -144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0 -139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0 -134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0 -124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0 -115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0 -105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0 -91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0 -81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0 -67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0 -57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0 -48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0 -43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0 -38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0 -33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0 -28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0 -24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0 -19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0 -19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0 -14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0 -9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0 -0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,6.39,0.00,1.00,0.00,0.00,0 --4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0 --4.80,14.40,6.34,0.00,1.00,9.60,9.60,0 --9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0 --9.60,19.20,6.30,0.00,1.00,19.20,14.40,0 --14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0 --19.20,28.80,6.26,0.00,1.00,28.80,24.00,0 --19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0 --24.00,38.40,6.22,0.00,1.00,38.40,33.60,0 --28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0 --33.60,43.20,6.17,0.00,1.00,48.00,38.40,0 --38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0 --43.20,52.80,6.13,0.00,1.00,57.60,48.00,0 --48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0 --52.80,57.60,6.09,0.00,1.00,67.20,52.80,0 --62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0 --72.00,62.40,6.05,0.00,1.00,76.80,57.60,0 --81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0 --91.20,62.40,6.00,0.00,1.00,86.40,62.40,0 --100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0 --110.40,62.40,5.96,0.00,1.00,96.00,62.40,0 --120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0 --129.60,57.60,5.92,0.00,1.00,105.60,57.60,0 --134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0 --139.20,48.00,5.87,0.00,1.00,115.20,52.80,0 --144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0 --148.80,43.20,5.83,0.00,1.00,124.80,48.00,0 --153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0 --158.40,33.60,5.79,0.00,1.00,134.40,38.40,0 --163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0 --163.20,28.80,5.75,0.00,1.00,144.00,28.80,0 --168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0 --168.00,19.20,5.70,0.00,1.00,153.60,24.00,0 --172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0 --172.80,9.60,5.66,0.00,1.00,163.20,14.40,0 --177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0 --177.60,0.00,5.62,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0 -163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0 -158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0 -148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0 -144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0 -139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0 -134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0 -129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0 -120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0 -110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0 -100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0 -91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0 -81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0 -72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0 -62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0 -52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0 -48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0 -43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0 -38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0 -33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0 -28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0 -24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0 -19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0 -19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0 -9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0 -4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0 -0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,4.79,0.00,1.00,0.00,0.00,0 --4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0 --9.60,14.40,4.74,0.00,1.00,9.60,9.60,0 --9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0 --14.40,19.20,4.70,0.00,1.00,19.20,14.40,0 --14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0 --19.20,28.80,4.66,0.00,1.00,28.80,24.00,0 --24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0 --28.80,33.60,4.61,0.00,1.00,38.40,28.80,0 --28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0 --33.60,43.20,4.57,0.00,1.00,48.00,38.40,0 --38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0 --48.00,48.00,4.53,0.00,1.00,57.60,43.20,0 --52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0 --57.60,52.80,4.49,0.00,1.00,67.20,48.00,0 --67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0 --76.80,57.60,4.44,0.00,1.00,76.80,52.80,0 --81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0 --91.20,57.60,4.40,0.00,1.00,86.40,57.60,0 --100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0 --110.40,57.60,4.36,0.00,1.00,96.00,57.60,0 --115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0 --124.80,52.80,4.32,0.00,1.00,105.60,52.80,0 --129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0 --139.20,48.00,4.27,0.00,1.00,115.20,48.00,0 --144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0 --148.80,38.40,4.23,0.00,1.00,124.80,43.20,0 --153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0 --153.60,33.60,4.19,0.00,1.00,134.40,38.40,0 --158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0 --163.20,24.00,4.14,0.00,1.00,144.00,28.80,0 --163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0 --168.00,19.20,4.10,0.00,1.00,153.60,24.00,0 --172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0 --172.80,9.60,4.06,0.00,1.00,163.20,14.40,0 --177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0 --177.60,0.00,4.02,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0 -163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0 -163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0 -158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0 -148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0 -144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0 -139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0 -129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0 -124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0 -115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0 -110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0 -100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0 -91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0 -81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0 -76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0 -67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0 -57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0 -52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0 -48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0 -38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0 -33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0 -28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0 -28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0 -24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0 -19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0 -14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0 -14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0 -9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0 -0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.18,0.00,1.00,0.00,0.00,0 --4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0 --9.60,9.60,3.14,0.00,1.00,9.60,9.60,0 --9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0 --14.40,19.20,3.10,0.00,1.00,19.20,14.40,0 --19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0 --24.00,24.00,3.05,0.00,1.00,28.80,24.00,0 --24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0 --28.80,33.60,3.01,0.00,1.00,38.40,28.80,0 --33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0 --38.40,38.40,2.97,0.00,1.00,48.00,33.60,0 --43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0 --48.00,43.20,2.93,0.00,1.00,57.60,43.20,0 --52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0 --62.40,48.00,2.88,0.00,1.00,67.20,48.00,0 --67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0 --76.80,52.80,2.84,0.00,1.00,76.80,48.00,0 --86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0 --91.20,52.80,2.80,0.00,1.00,86.40,52.80,0 --100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0 --105.60,52.80,2.76,0.00,1.00,96.00,52.80,0 --115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0 --120.00,48.00,2.71,0.00,1.00,105.60,48.00,0 --129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0 --134.40,43.20,2.67,0.00,1.00,115.20,43.20,0 --139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0 --144.00,38.40,2.63,0.00,1.00,124.80,38.40,0 --148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0 --153.60,33.60,2.58,0.00,1.00,134.40,33.60,0 --158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0 --158.40,24.00,2.54,0.00,1.00,144.00,28.80,0 --163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0 --168.00,19.20,2.50,0.00,1.00,153.60,19.20,0 --168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.46,0.00,1.00,163.20,14.40,0 --177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.41,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0 -158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0 -148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0 -144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0 -139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0 -134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0 -129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0 -120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0 -115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0 -105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0 -100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0 -91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0 -86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0 -76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0 -67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0 -62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0 -52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0 -48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0 -43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0 -38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0 -33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0 -28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0 -24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0 -24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0 -19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0 -0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.58,0.00,1.00,0.00,0.00,0 --4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.54,0.00,1.00,9.60,4.80,0 --14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0 --14.40,19.20,1.50,0.00,1.00,19.20,14.40,0 --19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0 --24.00,24.00,1.45,0.00,1.00,28.80,19.20,0 --28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0 --33.60,28.80,1.41,0.00,1.00,38.40,28.80,0 --38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0 --43.20,38.40,1.37,0.00,1.00,48.00,33.60,0 --48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0 --52.80,43.20,1.32,0.00,1.00,57.60,38.40,0 --57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0 --62.40,43.20,1.28,0.00,1.00,67.20,43.20,0 --72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0 --76.80,48.00,1.24,0.00,1.00,76.80,43.20,0 --86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0 --91.20,48.00,1.20,0.00,1.00,86.40,48.00,0 --100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0 --105.60,48.00,1.15,0.00,1.00,96.00,48.00,0 --110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0 --120.00,43.20,1.11,0.00,1.00,105.60,43.20,0 --124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0 --129.60,38.40,1.07,0.00,1.00,115.20,43.20,0 --134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0 --139.20,33.60,1.03,0.00,1.00,124.80,38.40,0 --144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0 --148.80,28.80,0.98,0.00,1.00,134.40,33.60,0 --153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0 --158.40,24.00,0.94,0.00,1.00,144.00,24.00,0 --163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0 --163.20,14.40,0.90,0.00,1.00,153.60,19.20,0 --168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.85,0.00,1.00,163.20,14.40,0 --172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.81,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0 -148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0 -144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0 -139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0 -134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0 -129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0 -124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0 -120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0 -110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0 -105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0 -100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0 -91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0 -86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0 -76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0 -72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0 -62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0 -57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0 -52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0 -48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0 -43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0 -38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0 -28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0 -19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0 -0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,0.00,0.00,1.00,0.00,0.00,0 --4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0 --9.60,9.60,0.04,0.00,1.00,9.60,4.80,0 --14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0 --19.20,14.40,0.09,0.00,1.00,19.20,14.40,0 --24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0 --24.00,24.00,0.13,0.00,1.00,28.80,19.20,0 --28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0 --33.60,28.80,0.17,0.00,1.00,38.40,24.00,0 --38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0 --43.20,33.60,0.21,0.00,1.00,48.00,28.80,0 --48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0 --52.80,38.40,0.26,0.00,1.00,57.60,33.60,0 --62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0 --67.20,38.40,0.30,0.00,1.00,67.20,38.40,0 --72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0 --76.80,43.20,0.34,0.00,1.00,76.80,38.40,0 --86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0 --91.20,43.20,0.38,0.00,1.00,86.40,43.20,0 --96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0 --105.60,43.20,0.43,0.00,1.00,96.00,43.20,0 --110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0 --115.20,38.40,0.47,0.00,1.00,105.60,38.40,0 --124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0 --129.60,38.40,0.51,0.00,1.00,115.20,38.40,0 --134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0 --139.20,33.60,0.56,0.00,1.00,124.80,33.60,0 --144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0 --148.80,28.80,0.60,0.00,1.00,134.40,28.80,0 --153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0 --158.40,19.20,0.64,0.00,1.00,144.00,24.00,0 --158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0 --163.20,14.40,0.68,0.00,1.00,153.60,19.20,0 --168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.73,0.00,1.00,163.20,9.60,0 --172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.77,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0 -158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0 -158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0 -148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0 -144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0 -139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0 -134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0 -129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0 -124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0 -115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0 -110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0 -105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0 -96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0 -91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0 -86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0 -76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0 -72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0 -67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0 -62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0 -52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0 -48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0 -43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0 -38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0 -28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0 -19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0 -0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.60,0.00,1.00,0.00,0.00,0 --9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.64,0.00,1.00,9.60,4.80,0 --14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0 --19.20,14.40,1.69,0.00,1.00,19.20,9.60,0 --24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0 --28.80,19.20,1.73,0.00,1.00,28.80,19.20,0 --33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0 --38.40,24.00,1.77,0.00,1.00,38.40,24.00,0 --43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0 --48.00,28.80,1.82,0.00,1.00,48.00,28.80,0 --52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0 --57.60,33.60,1.86,0.00,1.00,57.60,28.80,0 --62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0 --67.20,38.40,1.90,0.00,1.00,67.20,33.60,0 --72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0 --81.60,38.40,1.94,0.00,1.00,76.80,38.40,0 --86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0 --91.20,38.40,1.99,0.00,1.00,86.40,38.40,0 --96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0 --105.60,38.40,2.03,0.00,1.00,96.00,38.40,0 --110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0 --115.20,33.60,2.07,0.00,1.00,105.60,33.60,0 --120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0 --124.80,33.60,2.11,0.00,1.00,115.20,33.60,0 --129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0 --134.40,28.80,2.16,0.00,1.00,124.80,28.80,0 --139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0 --144.00,24.00,2.20,0.00,1.00,134.40,24.00,0 --148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0 --153.60,19.20,2.24,0.00,1.00,144.00,19.20,0 --158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0 --163.20,14.40,2.29,0.00,1.00,153.60,14.40,0 --168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.33,0.00,1.00,163.20,9.60,0 --172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.37,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0 -153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0 -144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0 -134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0 -124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0 -120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0 -115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0 -110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0 -105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0 -96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0 -91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0 -86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0 -81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0 -72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0 -67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0 -62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0 -57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0 -52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0 -48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0 -43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0 -38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0 -33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0 -28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0 -14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.20,0.00,1.00,0.00,0.00,0 --9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0 --14.40,9.60,3.25,0.00,1.00,9.60,4.80,0 --14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0 --19.20,14.40,3.29,0.00,1.00,19.20,9.60,0 --24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0 --28.80,19.20,3.33,0.00,1.00,28.80,14.40,0 --33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0 --38.40,24.00,3.38,0.00,1.00,38.40,19.20,0 --43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0 --48.00,24.00,3.42,0.00,1.00,48.00,24.00,0 --52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0 --57.60,28.80,3.46,0.00,1.00,57.60,28.80,0 --62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0 --67.20,33.60,3.50,0.00,1.00,67.20,28.80,0 --72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0 --81.60,33.60,3.55,0.00,1.00,76.80,33.60,0 --86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0 --91.20,33.60,3.59,0.00,1.00,86.40,33.60,0 --96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0 --100.80,33.60,3.63,0.00,1.00,96.00,33.60,0 --110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0 --115.20,33.60,3.67,0.00,1.00,105.60,28.80,0 --120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0 --124.80,28.80,3.72,0.00,1.00,115.20,28.80,0 --129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0 --134.40,24.00,3.76,0.00,1.00,124.80,24.00,0 --139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0 --144.00,19.20,3.80,0.00,1.00,134.40,24.00,0 --148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0 --153.60,14.40,3.85,0.00,1.00,144.00,19.20,0 --158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0 --163.20,9.60,3.89,0.00,1.00,153.60,14.40,0 --168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0 --168.00,4.80,3.93,0.00,1.00,163.20,9.60,0 --172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0 --177.60,0.00,3.97,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0 -124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0 -120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0 -115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0 -110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0 -100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0 -96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0 -91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0 -86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0 -81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0 -72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0 -67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0 -62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0 -57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0 -52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0 -48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0 -43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0 -38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0 -33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0 -28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0 -24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0 -14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0 -14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0 --4.80,0.00,4.81,0.00,1.00,0.00,0.00,0 --9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0 --14.40,4.80,4.85,0.00,1.00,9.60,4.80,0 --19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0 --19.20,9.60,4.89,0.00,1.00,19.20,9.60,0 --24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0 --28.80,14.40,4.93,0.00,1.00,28.80,14.40,0 --33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0 --38.40,19.20,4.98,0.00,1.00,38.40,14.40,0 --43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0 --48.00,24.00,5.02,0.00,1.00,48.00,19.20,0 --52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0 --57.60,24.00,5.06,0.00,1.00,57.60,24.00,0 --62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0 --72.00,28.80,5.11,0.00,1.00,67.20,24.00,0 --76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0 --81.60,28.80,5.15,0.00,1.00,76.80,28.80,0 --86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0 --91.20,28.80,5.19,0.00,1.00,86.40,28.80,0 --96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0 --100.80,28.80,5.23,0.00,1.00,96.00,28.80,0 --105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0 --115.20,28.80,5.28,0.00,1.00,105.60,28.80,0 --120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0 --124.80,24.00,5.32,0.00,1.00,115.20,24.00,0 --129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0 --134.40,24.00,5.36,0.00,1.00,124.80,24.00,0 --139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0 --144.00,19.20,5.40,0.00,1.00,134.40,19.20,0 --148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0 --153.60,14.40,5.45,0.00,1.00,144.00,14.40,0 --158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0 --163.20,9.60,5.49,0.00,1.00,153.60,9.60,0 --163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0 --168.00,4.80,5.53,0.00,1.00,163.20,9.60,0 --172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0 --177.60,0.00,5.58,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0 -163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0 -129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0 -124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0 -120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0 -115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0 -105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0 -100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0 -96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0 -91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0 -86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0 -81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0 -76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0 -72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0 -62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0 -57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0 -52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0 -48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0 -43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0 -38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0 -33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0 -28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0 -24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0 -19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0 -19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0 -0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,6.41,0.00,1.00,0.00,0.00,0 --9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0 --14.40,4.80,6.45,0.00,1.00,9.60,4.80,0 --19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0 --24.00,9.60,6.49,0.00,1.00,19.20,9.60,0 --28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0 --33.60,14.40,6.54,0.00,1.00,28.80,9.60,0 --33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0 --38.40,14.40,6.58,0.00,1.00,38.40,14.40,0 --43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0 --48.00,19.20,6.62,0.00,1.00,48.00,14.40,0 --57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0 --62.40,19.20,6.66,0.00,1.00,57.60,19.20,0 --67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0 --72.00,24.00,6.71,0.00,1.00,67.20,19.20,0 --76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0 --81.60,24.00,6.75,0.00,1.00,76.80,24.00,0 --86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0 --91.20,24.00,6.79,0.00,1.00,86.40,24.00,0 --96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0 --100.80,24.00,6.84,0.00,1.00,96.00,24.00,0 --105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0 --110.40,24.00,6.88,0.00,1.00,105.60,24.00,0 --115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0 --120.00,19.20,6.92,0.00,1.00,115.20,19.20,0 --129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0 --134.40,19.20,6.96,0.00,1.00,124.80,19.20,0 --139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0 --144.00,14.40,7.01,0.00,1.00,134.40,14.40,0 --148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0 --148.80,14.40,7.05,0.00,1.00,144.00,14.40,0 --153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0 --158.40,9.60,7.09,0.00,1.00,153.60,9.60,0 --163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0 --168.00,4.80,7.13,0.00,1.00,163.20,4.80,0 --172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0 --177.60,0.00,7.18,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0 -163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0 -158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0 -148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0 -144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0 -134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0 -129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0 -120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0 -115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0 -110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0 -105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0 -100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0 -96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0 -91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0 -86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0 -81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0 -76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0 -72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0 -67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0 -62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0 -57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0 -48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0 -43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0 -38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0 -33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0 -33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0 -28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0 -24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0 -19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0 -0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,8.01,0.00,1.00,0.00,0.00,0 --9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0 --14.40,4.80,8.05,0.00,1.00,9.60,4.80,0 --19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0 --24.00,9.60,8.10,0.00,1.00,19.20,4.80,0 --28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0 --33.60,9.60,8.14,0.00,1.00,24.00,9.60,0 --38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0 --43.20,14.40,8.18,0.00,1.00,33.60,9.60,0 --48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0 --52.80,14.40,8.22,0.00,1.00,43.20,14.40,0 --57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0 --62.40,19.20,8.27,0.00,1.00,52.80,14.40,0 --67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0 --72.00,19.20,8.31,0.00,1.00,62.40,14.40,0 --76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0 --81.60,19.20,8.35,0.00,1.00,76.80,19.20,0 --86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0 --91.20,19.20,8.40,0.00,1.00,86.40,19.20,0 --96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0 --100.80,19.20,8.44,0.00,1.00,96.00,19.20,0 --105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0 --110.40,19.20,8.48,0.00,1.00,105.60,19.20,0 --115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0 --120.00,14.40,8.52,0.00,1.00,120.00,14.40,0 --124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0 --129.60,14.40,8.57,0.00,1.00,129.60,14.40,0 --134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0 --139.20,14.40,8.61,0.00,1.00,139.20,14.40,0 --144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0 --148.80,9.60,8.65,0.00,1.00,148.80,9.60,0 --153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0 --158.40,4.80,8.69,0.00,1.00,158.40,9.60,0 --163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0 --168.00,4.80,8.74,0.00,1.00,163.20,4.80,0 --172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0 -148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0 -144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0 -139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0 -134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0 -129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0 -124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0 -120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0 -115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0 -110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0 -105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0 -100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0 -96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0 -91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0 -86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0 -81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0 -76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0 -72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0 -67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0 -62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0 -52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0 -48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0 -43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0 -38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0 -33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0 -28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0 -24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0 -19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0 -9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0 -0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,9.61,0.00,1.00,0.00,0.00,0 --9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0 --14.40,4.80,9.66,0.00,1.00,9.60,0.00,0 --19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0 --24.00,4.80,9.70,0.00,1.00,14.40,4.80,0 --28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0 --33.60,9.60,9.74,0.00,1.00,24.00,4.80,0 --38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0 --43.20,9.60,9.78,0.00,1.00,33.60,9.60,0 --48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0 --52.80,9.60,9.83,0.00,1.00,43.20,9.60,0 --57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0 --62.40,14.40,9.87,0.00,1.00,52.80,9.60,0 --67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0 --72.00,14.40,9.91,0.00,1.00,62.40,14.40,0 --76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0 --81.60,14.40,9.95,0.00,1.00,76.80,14.40,0 --86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0 --91.20,14.40,10.00,0.00,1.00,86.40,14.40,0 --96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0 --100.80,14.40,10.04,0.00,1.00,96.00,14.40,0 --105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0 --110.40,14.40,10.08,0.00,1.00,110.40,14.40,0 --115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0 --120.00,14.40,10.13,0.00,1.00,120.00,9.60,0 --124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0 --129.60,9.60,10.17,0.00,1.00,129.60,9.60,0 --134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0 --139.20,9.60,10.21,0.00,1.00,139.20,9.60,0 --144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0 --148.80,9.60,10.25,0.00,1.00,148.80,9.60,0 --153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0 --158.40,4.80,10.30,0.00,1.00,158.40,4.80,0 --163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0 --168.00,4.80,10.34,0.00,1.00,168.00,4.80,0 --172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0 -148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0 -144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0 -139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0 -134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0 -129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0 -124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0 -120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0 -115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0 -110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0 -105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0 -100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0 -96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0 -91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0 -86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0 -81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0 -76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0 -72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0 -67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0 -62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0 -48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0 -43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0 -38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0 -33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0 -28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0 -24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0 -19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0 -14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,11.21,0.00,1.00,0.00,0.00,0 --9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0 --14.40,0.00,11.26,0.00,1.00,9.60,0.00,0 --19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0 --24.00,4.80,11.30,0.00,1.00,14.40,4.80,0 --28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0 --33.60,4.80,11.34,0.00,1.00,24.00,4.80,0 --38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0 --43.20,4.80,11.39,0.00,1.00,33.60,4.80,0 --48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0 --52.80,9.60,11.43,0.00,1.00,43.20,4.80,0 --57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0 --62.40,9.60,11.47,0.00,1.00,52.80,4.80,0 --67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0 --72.00,9.60,11.51,0.00,1.00,62.40,9.60,0 --76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0 --81.60,9.60,11.56,0.00,1.00,72.00,9.60,0 --86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0 --91.20,9.60,11.60,0.00,1.00,86.40,9.60,0 --96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0 --100.80,9.60,11.64,0.00,1.00,96.00,9.60,0 --105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0 --110.40,9.60,11.68,0.00,1.00,110.40,9.60,0 --115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0 --120.00,9.60,11.73,0.00,1.00,120.00,9.60,0 --124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0 --129.60,9.60,11.77,0.00,1.00,129.60,4.80,0 --134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0 --139.20,4.80,11.81,0.00,1.00,139.20,4.80,0 --144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0 --148.80,4.80,11.86,0.00,1.00,148.80,4.80,0 --153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0 --158.40,4.80,11.90,0.00,1.00,158.40,4.80,0 --163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0 --168.00,0.00,11.94,0.00,1.00,168.00,4.80,0 --172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0 -158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0 -148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0 -144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0 -139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0 -134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0 -129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0 -124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0 -120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0 -115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0 -110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0 -105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0 -100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0 -96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0 -91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0 -86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0 -81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0 -76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0 -72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0 -67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0 -62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0 -57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0 -43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0 -33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0 -28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0 -24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0 -19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,12.82,0.00,1.00,0.00,0.00,0 --9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0 --14.40,0.00,12.86,0.00,1.00,9.60,0.00,0 --19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0 --24.00,0.00,12.90,0.00,1.00,14.40,0.00,0 --28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0 --33.60,4.80,12.95,0.00,1.00,24.00,0.00,0 --38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0 --43.20,4.80,12.99,0.00,1.00,28.80,0.00,0 --48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0 --52.80,4.80,13.03,0.00,1.00,38.40,4.80,0 --57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0 --62.40,4.80,13.07,0.00,1.00,48.00,4.80,0 --67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0 --72.00,4.80,13.12,0.00,1.00,62.40,4.80,0 --76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0 --81.60,4.80,13.16,0.00,1.00,72.00,4.80,0 --86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0 --91.20,4.80,13.20,0.00,1.00,86.40,4.80,0 --96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0 --100.80,4.80,13.24,0.00,1.00,96.00,4.80,0 --105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0 --110.40,4.80,13.29,0.00,1.00,110.40,4.80,0 --115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0 --120.00,4.80,13.33,0.00,1.00,120.00,4.80,0 --124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0 --129.60,4.80,13.37,0.00,1.00,134.40,4.80,0 --134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0 --139.20,4.80,13.42,0.00,1.00,144.00,4.80,0 --144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0 --148.80,4.80,13.46,0.00,1.00,153.60,0.00,0 --153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0 --158.40,0.00,13.50,0.00,1.00,158.40,0.00,0 --163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0 --168.00,0.00,13.54,0.00,1.00,168.00,0.00,0 --172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0 -163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0 -158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0 -153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0 -148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0 -144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0 -139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0 -134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0 -129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0 -124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0 -120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0 -115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0 -110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0 -105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0 -100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0 -96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0 -91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0 -86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0 -81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0 -76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0 -72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0 -67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0 -57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0 -52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0 -43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0 -33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0 -28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0 -24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0 -19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0 -14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0 -9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,14.42,0.00,1.00,0.00,0.00,0 --9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0 --14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0 --19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0 --24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0 --28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0 --33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0 --38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0 --43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0 --48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0 --52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0 --57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0 --62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0 --67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0 --72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0 --76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0 --81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0 --86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0 --91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0 --96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0 --100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0 --105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0 --110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0 --115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0 --120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0 --124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0 --129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0 --134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0 --139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0 --144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0 --148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0 --153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0 --158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0 --163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0 --168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0 --172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0 -177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0 -172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0 -168.00,0.00,15.25,0.00,1.00,4.80,0.00,0 -163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0 -158.40,0.00,15.30,0.00,1.00,9.60,0.00,0 -153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0 -148.80,0.00,15.34,0.00,1.00,19.20,0.00,0 -144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0 -139.20,0.00,15.38,0.00,1.00,28.80,0.00,0 -134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0 -129.60,0.00,15.42,0.00,1.00,33.60,0.00,0 -124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0 -120.00,0.00,15.47,0.00,1.00,43.20,0.00,0 -115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0 -110.40,0.00,15.51,0.00,1.00,57.60,0.00,0 -105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0 -100.80,0.00,15.55,0.00,1.00,67.20,0.00,0 -96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0 -91.20,0.00,15.59,0.00,1.00,81.60,0.00,0 -86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0 -81.60,0.00,15.64,0.00,1.00,96.00,0.00,0 -76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0 -72.00,0.00,15.68,0.00,1.00,110.40,0.00,0 -67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0 -62.40,0.00,15.72,0.00,1.00,120.00,0.00,0 -57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0 -52.80,0.00,15.77,0.00,1.00,134.40,0.00,0 -48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0 -43.20,0.00,15.81,0.00,1.00,144.00,0.00,0 -38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0 -33.60,0.00,15.85,0.00,1.00,153.60,0.00,0 -28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0 -24.00,0.00,15.89,0.00,1.00,158.40,0.00,0 -19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0 -14.40,0.00,15.94,0.00,1.00,168.00,0.00,0 -9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0 -4.80,0.00,15.98,0.00,1.00,172.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC32c_ISM3.csv b/scripts/testv/stvOMASA_4ISM_1MASA2TC32c_ISM3.csv deleted file mode 100644 index 14eee9b693b536fa2fd22d2813d7f588b8930b06..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_1MASA2TC32c_ISM3.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0 --177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0 -4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0 --168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0 -14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0 --163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0 -19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0 --153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0 -28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0 --148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0 -38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0 --139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0 -48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0 --124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0 -57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0 --115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0 -72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0 --100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0 -86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0 --86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0 -100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0 --76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0 -110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0 --62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0 -124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0 --52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0 -134.40,33.60,0.28,0.00,1.00,177.60,0.00,0 --38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0 -144.00,28.80,0.30,0.00,1.00,177.60,0.00,0 --33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0 -153.60,24.00,0.32,0.00,1.00,177.60,0.00,0 --24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0 -158.40,19.20,0.34,0.00,1.00,177.60,0.00,0 --14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0 -168.00,9.60,0.36,0.00,1.00,177.60,0.00,0 --9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0 -172.80,4.80,0.38,0.00,1.00,177.60,0.00,0 --0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0 --177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0 -4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0 -14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0 -19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0 --158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0 -28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0 --148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0 -33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0 --139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0 -43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0 --129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0 -57.60,38.40,15.47,0.00,1.00,177.60,0.00,0 --120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0 -67.20,43.20,15.44,0.00,1.00,177.60,0.00,0 --105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0 -81.60,43.20,15.42,0.00,1.00,177.60,0.00,0 --91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0 -96.00,43.20,15.40,0.00,1.00,0.00,0.00,0 --76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0 -110.40,43.20,15.38,0.00,1.00,0.00,0.00,0 --67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0 -120.00,38.40,15.36,0.00,1.00,0.00,0.00,0 --52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0 -129.60,38.40,15.34,0.00,1.00,0.00,0.00,0 --43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0 -144.00,33.60,15.32,0.00,1.00,0.00,0.00,0 --33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0 -148.80,24.00,15.30,0.00,1.00,0.00,0.00,0 --24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0 -158.40,19.20,15.27,0.00,1.00,0.00,0.00,0 --19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0 -168.00,14.40,15.25,0.00,1.00,0.00,0.00,0 --9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0 -172.80,4.80,15.23,0.00,1.00,0.00,0.00,0 --4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0 -0.00,0.00,15.21,0.00,1.00,0.00,0.00,0 --177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0 -9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0 -14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0 --163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0 -24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0 --153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0 -28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0 --144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0 -38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0 --134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0 -48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0 --124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0 -62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0 --115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0 -72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0 --100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0 -86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0 --86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0 -96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0 --76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0 -110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0 --62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0 -120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0 --52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0 -134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0 --43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0 -144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0 --33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0 -148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0 --24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0 -158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0 --19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0 -168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0 --9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0 -172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0 -4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0 -14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0 -19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0 --153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0 -28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0 --148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0 -38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0 --139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0 -48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0 --124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0 -57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0 --115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0 -72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0 --105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0 -81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0 --91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0 -96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0 --76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0 -105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0 --67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0 -120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0 --57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0 -129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0 --43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0 -139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0 --33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0 -148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0 --28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0 -158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0 --19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0 -163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0 --9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0 -172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0 -0.00,0.00,1.60,0.00,1.00,0.00,0.00,0 --177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0 -9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0 -14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0 --158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0 -24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0 --153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0 -33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0 --144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0 -43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0 --134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0 -52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0 --124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0 -62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0 --110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0 -72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0 --100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0 -86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0 --86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0 -96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0 --76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0 -110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0 --67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0 -120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0 --52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0 -129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0 --43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0 -139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0 --33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0 -148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0 --24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0 -158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0 --19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0 -168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0 -172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0 -4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0 -14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0 --163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0 -24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0 --153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0 -28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0 --144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0 -38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0 --134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0 -48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0 --124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0 -62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0 --115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0 -72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0 --100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0 -81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0 --91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0 -96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0 --81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0 -105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0 --67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0 -115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0 --57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0 -129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0 --48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0 -139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0 --38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0 -148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0 --28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0 -153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0 --19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0 -163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0 --9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0 -172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0 -0.00,0.00,13.61,0.00,1.00,0.00,0.00,0 --177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0 -9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0 --168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0 -24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0 --148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0 -33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0 --139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0 -43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0 --129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0 -52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0 --120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0 -62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0 --110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0 -76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0 --100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0 -86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0 --86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0 -96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0 --76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0 -105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0 --67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0 -120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0 --57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0 -129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0 --48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0 -139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0 --38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0 -148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0 -158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0 --19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0 -163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0 -172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0 -4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0 -14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0 --163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0 -24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0 --153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0 -33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0 --144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0 -43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0 --134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0 -52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0 --124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0 -62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0 --115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0 -72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0 --100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0 -81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0 --91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0 -96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0 --81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0 -105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0 --67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0 -115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0 --57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0 -124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0 --48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0 -134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0 --38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0 -144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0 --28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0 -153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0 --19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0 -163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0 --14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0 -172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0 --4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0 -0.00,0.00,3.20,0.00,1.00,0.00,0.00,0 --177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0 -9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0 -19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0 -24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0 --148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0 -33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0 --139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0 -43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0 --129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0 -52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0 --120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0 -67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0 --110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0 -76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0 --100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0 -86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0 --86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0 -96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0 --76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0 -105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0 --67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0 -115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0 --57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0 -129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0 --48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0 -139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0 --38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0 -148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0 -153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0 --19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0 -163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0 -172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0 -4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0 -14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0 -24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0 --153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0 -33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0 --144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0 -43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0 --134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0 -52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0 --124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0 -62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0 --110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0 -72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0 --100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0 -81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0 --91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0 -96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0 --81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0 -105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0 --72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0 -115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0 --57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0 -124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0 --48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0 -134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0 --38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0 -144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0 --28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0 -153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0 --24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0 -163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0 --14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0 -172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -0.00,0.00,12.01,0.00,1.00,0.00,0.00,0 --177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0 -9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0 --158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0 -28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0 --148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0 -38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0 --139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0 -48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0 --129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0 -57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0 --120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0 -67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0 --110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0 -76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0 --100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0 -86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0 --86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0 -96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0 --76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0 -105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0 --67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0 -115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0 --57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0 -124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0 --48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0 -134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0 --38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0 -144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0 --28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0 -153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0 --19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0 -163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0 -172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0 -4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0 -14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0 -24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0 --148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0 -33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0 --139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0 -43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0 --129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0 -52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0 --120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0 -62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0 --110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0 -72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0 --100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0 -81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0 --91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0 -96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0 --81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0 -105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0 --72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0 -115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0 --62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0 -124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0 --52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0 -134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0 --43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0 -144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0 --33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0 -153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0 --24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0 -163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0 -172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0 -0.00,0.00,4.81,0.00,1.00,0.00,0.00,0 --177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0 -9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0 -19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0 -28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0 --148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0 -38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0 --139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0 -48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0 --129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0 -57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0 --120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0 -67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0 --110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0 -76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0 --100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0 -86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0 --86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0 -96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0 --76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0 -105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0 --67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0 -115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0 --57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0 -124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0 --48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0 -134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0 --38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0 -144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0 --28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0 -153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0 --19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0 -163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0 --9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0 -172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0 -4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0 -14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0 -24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0 --148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0 -33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0 --139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0 -43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0 --129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0 -52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0 --120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0 -62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0 --110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0 -72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0 --100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0 -81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0 --91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0 -96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0 --81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0 -105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0 --72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0 -115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0 --62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0 -124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0 --52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0 -134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0 --43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0 -144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0 --33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0 -153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0 --24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0 -163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0 -172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -0.00,0.00,10.40,0.00,1.00,0.00,0.00,0 --177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0 -9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0 -19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0 -28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0 --148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0 -38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0 --139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0 -48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0 --129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0 -57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0 --120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0 -67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0 --110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0 -76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0 --100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0 -86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0 --86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0 -96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0 --76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0 -105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0 --67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0 -115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0 --57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0 -124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0 --48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0 -134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0 --38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0 -144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0 --28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0 -153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0 -163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0 --9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0 -172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0 -4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0 -14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0 -24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0 -33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0 --139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0 -43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0 --129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0 -52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0 --120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0 -62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0 --110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0 -72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0 --100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0 -81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0 --91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0 -96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0 --81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0 -105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0 --72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0 -115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0 --62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0 -124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0 --52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0 -134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0 --43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0 -144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0 --33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0 -153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0 --24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0 -163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0 -172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,6.41,0.00,1.00,0.00,0.00,0 --177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0 -9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0 -19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0 --158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0 -28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0 --148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0 -38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0 --139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0 -48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0 --129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0 -57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0 --120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0 -67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0 --110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0 -76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0 --100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0 -86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0 --86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0 -96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0 --76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0 -105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0 --67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0 -115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0 --57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0 -124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0 --48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0 -134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0 --38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0 -144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0 --28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0 -153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0 -163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0 -172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0 -4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0 -14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0 --158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0 -24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0 -33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0 --139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0 -43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0 --129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0 -52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0 --120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0 -62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0 --110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0 -72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0 --100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0 -81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0 --91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0 -96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0 --81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0 -105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0 --72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0 -115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0 --62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0 -124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0 --52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0 -134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0 --43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0 -144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0 --33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0 -153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0 --24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0 -163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0 --14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0 -172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.80,0.00,1.00,0.00,0.00,0 --177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0 -9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0 -19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0 --158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0 -28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0 --148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0 -38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0 --139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0 -48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0 --129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0 -57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0 --120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0 -67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0 --110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0 -76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0 --100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0 -86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0 --86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0 -96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0 --76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0 -105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0 --67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0 -115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0 --57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0 -124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0 --48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0 -134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0 --38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0 -144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0 --28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0 -153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0 --19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0 -163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0 -172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0 --0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0 -4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0 --168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0 -14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0 --158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0 -24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0 --148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0 -33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0 --139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0 -43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0 --129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0 -52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0 --120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0 -62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0 --110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0 -72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0 --100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0 -81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0 --91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0 -96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0 --81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0 -105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0 --72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0 -115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0 --62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0 -124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0 --52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0 -134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0 --43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0 -144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0 --33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0 -153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0 --24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0 -163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0 --14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0 -172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.01,0.00,1.00,0.00,0.00,0 --177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0 --168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0 -19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0 --158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0 -28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0 --148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0 -38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0 --139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0 -48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0 --129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0 -57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0 --120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0 -67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0 --110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0 -76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0 --100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0 -86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0 --86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0 -96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0 --76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0 -105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0 --67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0 -115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0 --57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0 -124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0 --48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0 -134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0 --38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0 -144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0 --28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0 -153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0 --19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0 -163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0 --9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0 -172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0 --0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0 --168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0 -14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0 --158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0 -24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0 --148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0 -33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0 --139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0 -43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0 --129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0 -52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0 --120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0 -62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0 --110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0 -72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0 --100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0 -81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0 --91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0 -96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0 --81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0 -105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0 --72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0 -115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0 --62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0 -124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0 --52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0 -134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0 --43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0 -144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0 --33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0 -153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0 --24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0 -163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0 --14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0 --4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0 -0.00,0.00,7.20,0.00,1.00,0.00,0.00,0 --177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0 --168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0 -19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0 --158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0 --148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0 -38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0 --139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0 -48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0 --129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0 -57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0 --120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0 -67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0 --110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0 -76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0 --100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0 -86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0 --86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0 -96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0 --76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0 -105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0 --67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0 -115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0 --57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0 -124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0 --48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0 -134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0 --38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0 -144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0 --28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0 --19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0 -163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0 --9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0 --0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0 --168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0 -14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0 --158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0 --148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0 -33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0 --139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0 -43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0 --129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0 -52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0 --120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0 -62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0 --110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0 -72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0 --100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0 -81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0 --91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0 -96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0 --81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0 -105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0 --72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0 -115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0 --62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0 -124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0 --52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0 -134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0 --43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0 -144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0 --33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0 -153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0 --24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0 --14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0 --4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0 -0.00,0.00,9.61,0.00,1.00,0.00,0.00,0 --177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0 --168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0 --158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0 --148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0 --139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0 -48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0 --129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0 -57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0 --120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0 -67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0 --110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0 -76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0 --100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0 -86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0 --86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0 -96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0 --76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0 -105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0 --67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0 -115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0 --57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0 -124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0 --48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0 -134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0 --38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0 --28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0 --19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0 -163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0 --9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0 --0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0 --168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0 --158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0 --148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0 -33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0 --139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0 -43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0 --129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0 -52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0 --120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0 -62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0 --110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0 -72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0 --100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0 -81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0 --91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0 -96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0 --81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0 -105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0 --72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0 -115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0 --62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0 -124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0 --52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0 -134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0 --43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0 -144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0 --33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0 -153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0 --24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0 --14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0 -172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0 --4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0 -0.00,0.00,5.60,0.00,1.00,0.00,0.00,0 --177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0 --168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0 --158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0 -28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0 --148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0 --139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0 -48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0 --129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0 -57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0 --120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0 -67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0 --110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0 -76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0 --100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0 -86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0 --86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0 -96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0 --76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0 -105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0 --67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0 -115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0 --57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0 -124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0 --48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0 -134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0 --38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0 --28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0 -153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0 --19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0 --9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0 --0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0 --168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0 --158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0 --148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0 -33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0 --139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0 -43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0 --129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0 -52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0 --120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0 -62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0 --110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0 -72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0 --100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0 -81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0 --91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0 -96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0 --81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0 -105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0 --72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0 -115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0 --62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0 -124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0 --52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0 -134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0 --43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0 -144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0 --33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0 -153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0 --24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0 --14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0 --4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0 -0.00,0.00,11.21,0.00,1.00,0.00,0.00,0 --177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0 --168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0 --158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0 -28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0 --148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0 -38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0 --139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0 -48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0 --129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0 -57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0 --120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0 -67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0 --110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0 -76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0 --100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0 -86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0 --86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0 -96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0 --76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0 -105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0 --67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0 -115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0 --57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0 -124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0 --48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0 -134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0 --38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0 -144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0 --28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0 -153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0 --19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0 --9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0 --0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0 --168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0 --158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0 --148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0 --139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0 -43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0 --129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0 -52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0 --120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0 -62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0 --110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0 -72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0 --100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0 -81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0 --91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0 -96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0 --81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0 -105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0 --72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0 -115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0 --62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0 -124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0 --52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0 -134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0 --43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0 --33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0 -153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0 --24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0 -163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0 --14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0 --4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,3.99,0.00,1.00,0.00,0.00,0 --177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0 --168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0 -19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0 --158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0 --148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0 -33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0 --139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0 -43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0 --129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0 -52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0 --120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0 -62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0 --110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0 -76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0 --100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0 -86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0 --86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0 -96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0 --76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0 -105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0 --67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0 -120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0 --57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0 --48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0 -139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0 --38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0 -148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0 --28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0 -158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0 --19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0 -163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0 --9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0 --0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0 --168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0 --158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0 --153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0 --144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0 -43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0 --134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0 --124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0 -62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0 --110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0 -72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0 --100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0 -81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0 --91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0 -96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0 --81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0 -105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0 --72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0 -115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0 --57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0 -124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0 --48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0 -134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0 --38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0 --28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0 --24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0 --14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0 --4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,12.82,0.00,1.00,0.00,0.00,0 --177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0 --168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0 --158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0 --148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0 -33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0 --139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0 --129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0 --120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0 -62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0 --110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0 -76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0 --100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0 -86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0 --86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0 -96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0 --76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0 -110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0 --67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0 -120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0 --57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0 --48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0 --38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0 --28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0 --19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0 --9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0 --0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0 --168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0 --163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0 --153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0 -33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0 --144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0 -43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0 --134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0 --124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0 -62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0 --115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0 -72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0 --100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0 -81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0 --91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0 -96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0 --81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0 -105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0 --67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0 -115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0 --57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0 -124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0 --48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0 -134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0 --38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0 -144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0 --28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0 --19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0 --14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0 --4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,2.39,0.00,1.00,0.00,0.00,0 --177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0 --168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0 --158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0 --153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0 -33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0 --144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0 --134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0 --124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0 -62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0 --110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0 -72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0 --100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0 -86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0 --86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0 -96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0 --76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0 -110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0 --67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0 -120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0 --52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0 -129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0 --43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0 --33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0 --24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0 --19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0 --9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0 --0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0 --168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0 --163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0 --153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0 -28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0 --144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0 -38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0 --134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0 -48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0 --124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0 -57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0 --115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0 -72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0 --105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0 -81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0 --91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0 -96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0 --81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0 -105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0 --67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0 -120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0 --57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0 -129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0 --48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0 -139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0 --38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0 --28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0 -158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0 --19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0 --9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0 --4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0 -0.00,0.00,14.42,0.00,1.00,0.00,0.00,0 --177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0 --168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0 --163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0 -24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0 --153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0 -28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0 --144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0 -38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0 --134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0 -48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0 --124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0 -62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0 --115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0 -72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0 --100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0 -86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0 --86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0 -96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0 --76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0 -110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0 --62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0 -120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0 --52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0 -134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0 --43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0 --33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0 --24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0 -158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0 --14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0 --9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0 --0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0 --172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0 --163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0 --153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0 --148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0 -38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0 --139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0 -48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0 --129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0 --115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0 -67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0 --105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0 -81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0 --91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0 -96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0 --76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0 -105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0 --67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0 -120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0 --52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0 -129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0 --43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0 -139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0 --33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0 --28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0 --19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0 -163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0 --9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0 --4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0 -0.00,0.00,0.79,0.00,1.00,0.00,0.00,0 --177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0 -4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0 --168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0 --163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0 -19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0 --153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0 -28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0 --148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0 -38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0 --139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0 -48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0 --124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0 -57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0 --115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0 -72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0 --100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0 -86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0 --86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0 -100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0 --76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0 -110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0 --62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0 -124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0 --48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0 -134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0 --38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0 --28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0 --24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0 -163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0 --14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0 -168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0 --9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0 --0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0 --177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0 --172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0 -9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0 --163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0 --158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0 --148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0 -33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0 --139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0 -43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0 --129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0 --120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0 -67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0 --105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0 -81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0 --91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0 -96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0 --76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0 -110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0 --67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0 -120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0 --52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0 -134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0 --43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0 -144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0 --33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0 -153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0 --24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0 --19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0 -168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0 --9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0 --4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0 diff --git a/scripts/testv/stvOMASA_4ISM_1MASA2TC32c_ISM4.csv b/scripts/testv/stvOMASA_4ISM_1MASA2TC32c_ISM4.csv deleted file mode 100644 index 8a14c3413ddd2dd47415bf6de3e19631f65f8f6c..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_1MASA2TC32c_ISM4.csv +++ /dev/null @@ -1,1500 +0,0 @@ --0.00,0.00,0.00,0.00,1.00,0.00,4.80,0 --0.00,4.80,0.06,0.00,1.00,4.80,9.60,0 --0.00,9.60,0.13,0.00,1.00,9.60,14.40,0 --0.00,14.40,0.19,0.00,1.00,14.40,19.20,0 --0.00,19.20,0.26,0.00,1.00,19.20,24.00,0 --0.00,24.00,0.32,0.00,1.00,24.00,28.80,0 --0.00,28.80,0.39,0.00,1.00,28.80,33.60,0 --0.00,33.60,0.45,0.00,1.00,33.60,38.40,0 --0.00,38.40,0.51,0.00,1.00,38.40,43.20,0 --0.00,43.20,0.58,0.00,1.00,43.20,48.00,0 --0.00,48.00,0.64,0.00,1.00,48.00,52.80,0 --0.00,52.80,0.71,0.00,1.00,52.80,57.60,0 --0.00,57.60,0.77,0.00,1.00,57.60,62.40,0 --0.00,62.40,0.84,0.00,1.00,62.40,67.20,0 --0.00,67.20,0.90,0.00,1.00,67.20,72.00,0 --0.00,72.00,0.96,0.00,1.00,72.00,76.80,0 --0.00,76.80,1.03,0.00,1.00,76.80,81.60,0 --0.00,81.60,1.09,0.00,1.00,81.60,86.40,0 --0.00,86.40,1.16,0.00,1.00,86.40,86.40,0 --177.60,89.20,1.22,0.00,1.00,91.20,81.60,0 --177.60,86.40,1.29,0.00,1.00,96.00,76.80,0 --177.60,81.60,1.35,0.00,1.00,100.80,72.00,0 --177.60,76.80,1.41,0.00,1.00,105.60,67.20,0 --177.60,72.00,1.48,0.00,1.00,110.40,62.40,0 --177.60,67.20,1.54,0.00,1.00,115.20,57.60,0 -177.60,62.40,1.61,0.00,1.00,120.00,52.80,0 -177.60,57.60,1.67,0.00,1.00,124.80,48.00,0 -177.60,52.80,1.73,0.00,1.00,129.60,43.20,0 -177.60,48.00,1.80,0.00,1.00,134.40,38.40,0 -177.60,43.20,1.86,0.00,1.00,139.20,33.60,0 -177.60,38.40,1.93,0.00,1.00,144.00,28.80,0 -177.60,33.60,1.99,0.00,1.00,148.80,24.00,0 -177.60,28.80,2.06,0.00,1.00,153.60,19.20,0 -177.60,24.00,2.12,0.00,1.00,158.40,14.40,0 -177.60,19.20,2.18,0.00,1.00,163.20,9.60,0 -177.60,14.40,2.25,0.00,1.00,168.00,4.80,0 -177.60,9.60,2.31,0.00,1.00,172.80,0.00,0 -177.60,4.80,2.38,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,2.44,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,2.51,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,2.57,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,2.63,0.00,1.00,-163.20,-19.20,0 --177.60,-19.20,2.70,0.00,1.00,-158.40,-24.00,0 --177.60,-24.00,2.76,0.00,1.00,-153.60,-28.80,0 --177.60,-28.80,2.83,0.00,1.00,-148.80,-33.60,0 --177.60,-33.60,2.89,0.00,1.00,-144.00,-38.40,0 --177.60,-38.40,2.96,0.00,1.00,-139.20,-43.20,0 --177.60,-48.00,3.02,0.00,1.00,-134.40,-48.00,0 --177.60,-48.00,3.08,0.00,1.00,-129.60,-52.80,0 --177.60,-52.80,3.15,0.00,1.00,-124.80,-57.60,0 --177.60,-57.60,3.21,0.00,1.00,-120.00,-62.40,0 -177.60,-62.40,3.28,0.00,1.00,-115.20,-67.20,0 -177.60,-67.20,3.34,0.00,1.00,-110.40,-72.00,0 -177.60,-76.80,3.41,0.00,1.00,-105.60,-76.80,0 -177.60,-76.80,3.47,0.00,1.00,-100.80,-81.60,0 -177.60,-86.40,3.53,0.00,1.00,-96.00,-86.40,0 -177.60,-89.20,3.60,0.00,1.00,-91.20,-86.40,0 -0.00,-86.40,3.66,0.00,1.00,-86.40,-81.60,0 -0.00,-81.60,3.73,0.00,1.00,-81.60,-76.80,0 -0.00,-76.80,3.79,0.00,1.00,-76.80,-72.00,0 -0.00,-72.00,3.86,0.00,1.00,-72.00,-67.20,0 -0.00,-67.20,3.92,0.00,1.00,-67.20,-62.40,0 -0.00,-62.40,3.98,0.00,1.00,-62.40,-57.60,0 -0.00,-57.60,4.05,0.00,1.00,-57.60,-52.80,0 -0.00,-52.80,4.11,0.00,1.00,-52.80,-48.00,0 -0.00,-48.00,4.18,0.00,1.00,-48.00,-43.20,0 -0.00,-43.20,4.24,0.00,1.00,-43.20,-38.40,0 -0.00,-38.40,4.31,0.00,1.00,-38.40,-33.60,0 -0.00,-33.60,4.37,0.00,1.00,-33.60,-28.80,0 -0.00,-28.80,4.43,0.00,1.00,-28.80,-24.00,0 -0.00,-24.00,4.50,0.00,1.00,-24.00,-19.20,0 -0.00,-19.20,4.56,0.00,1.00,-19.20,-14.40,0 -0.00,-14.40,4.63,0.00,1.00,-14.40,-9.60,0 -0.00,-9.60,4.69,0.00,1.00,-9.60,-4.80,0 -0.00,-4.80,4.76,0.00,1.00,-4.80,0.00,0 -0.00,0.00,4.82,0.00,1.00,0.00,4.80,0 -0.00,4.80,4.88,0.00,1.00,4.80,9.60,0 -0.00,9.60,4.95,0.00,1.00,9.60,14.40,0 -0.00,14.40,5.01,0.00,1.00,14.40,19.20,0 -0.00,19.20,5.08,0.00,1.00,19.20,24.00,0 -0.00,24.00,5.14,0.00,1.00,24.00,28.80,0 -4.80,28.80,5.20,0.00,1.00,28.80,33.60,0 -4.80,33.60,5.27,0.00,1.00,33.60,38.40,0 -4.80,38.40,5.33,0.00,1.00,38.40,43.20,0 -4.80,43.20,5.40,0.00,1.00,43.20,48.00,0 -4.80,48.00,5.46,0.00,1.00,48.00,52.80,0 -4.80,52.80,5.53,0.00,1.00,52.80,57.60,0 -9.60,57.60,5.59,0.00,1.00,57.60,62.40,0 -9.60,62.40,5.65,0.00,1.00,62.40,67.20,0 -9.60,67.20,5.72,0.00,1.00,67.20,72.00,0 -14.40,72.00,5.78,0.00,1.00,72.00,76.80,0 -19.20,76.80,5.85,0.00,1.00,76.80,81.60,0 -28.80,81.60,5.91,0.00,1.00,81.60,86.40,0 -52.80,86.40,5.98,0.00,1.00,86.40,86.40,0 -105.60,86.40,6.04,0.00,1.00,91.20,81.60,0 -139.20,81.60,6.10,0.00,1.00,96.00,76.80,0 -158.40,76.80,6.17,0.00,1.00,100.80,72.00,0 -163.20,72.00,6.23,0.00,1.00,105.60,67.20,0 -168.00,67.20,6.30,0.00,1.00,110.40,62.40,0 -168.00,62.40,6.36,0.00,1.00,115.20,57.60,0 -172.80,57.60,6.43,0.00,1.00,120.00,52.80,0 -172.80,52.80,6.49,0.00,1.00,124.80,48.00,0 -172.80,48.00,6.55,0.00,1.00,129.60,43.20,0 -172.80,43.20,6.62,0.00,1.00,134.40,38.40,0 -177.60,38.40,6.68,0.00,1.00,139.20,33.60,0 -177.60,33.60,6.75,0.00,1.00,144.00,28.80,0 -177.60,28.80,6.81,0.00,1.00,148.80,24.00,0 -177.60,24.00,6.88,0.00,1.00,153.60,19.20,0 -177.60,19.20,6.94,0.00,1.00,158.40,14.40,0 -177.60,14.40,7.00,0.00,1.00,163.20,9.60,0 -177.60,9.60,7.07,0.00,1.00,168.00,4.80,0 -177.60,4.80,7.13,0.00,1.00,172.80,0.00,0 -177.60,0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,7.26,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,7.33,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,7.39,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,7.45,0.00,1.00,-163.20,-19.20,0 --177.60,-19.20,7.52,0.00,1.00,-158.40,-24.00,0 --177.60,-24.00,7.58,0.00,1.00,-153.60,-28.80,0 --177.60,-28.80,7.65,0.00,1.00,-148.80,-33.60,0 --177.60,-33.60,7.71,0.00,1.00,-144.00,-38.40,0 --177.60,-38.40,7.78,0.00,1.00,-139.20,-43.20,0 --172.80,-43.20,7.84,0.00,1.00,-134.40,-48.00,0 --172.80,-48.00,7.90,0.00,1.00,-129.60,-52.80,0 --172.80,-52.80,7.97,0.00,1.00,-124.80,-57.60,0 --172.80,-57.60,8.03,0.00,1.00,-120.00,-62.40,0 --168.00,-62.40,8.10,0.00,1.00,-115.20,-67.20,0 --168.00,-67.20,8.16,0.00,1.00,-110.40,-72.00,0 --163.20,-72.00,8.22,0.00,1.00,-105.60,-76.80,0 --158.40,-76.80,8.29,0.00,1.00,-100.80,-81.60,0 --139.20,-81.60,8.35,0.00,1.00,-96.00,-86.40,0 --105.60,-86.40,8.42,0.00,1.00,-91.20,-86.40,0 --52.80,-86.40,8.48,0.00,1.00,-86.40,-81.60,0 --28.80,-81.60,8.55,0.00,1.00,-81.60,-76.80,0 --19.20,-76.80,8.61,0.00,1.00,-76.80,-72.00,0 --14.40,-72.00,8.67,0.00,1.00,-72.00,-67.20,0 --9.60,-67.20,8.74,0.00,1.00,-67.20,-62.40,0 --9.60,-62.40,8.80,0.00,1.00,-62.40,-57.60,0 --9.60,-57.60,8.87,0.00,1.00,-57.60,-52.80,0 --4.80,-52.80,8.93,0.00,1.00,-52.80,-48.00,0 --4.80,-48.00,9.00,0.00,1.00,-48.00,-43.20,0 --4.80,-43.20,9.06,0.00,1.00,-43.20,-38.40,0 --4.80,-38.40,9.12,0.00,1.00,-38.40,-33.60,0 --4.80,-33.60,9.19,0.00,1.00,-33.60,-28.80,0 --4.80,-28.80,9.25,0.00,1.00,-28.80,-24.00,0 --0.00,-24.00,9.32,0.00,1.00,-24.00,-19.20,0 --0.00,-19.20,9.38,0.00,1.00,-19.20,-14.40,0 --0.00,-14.40,9.45,0.00,1.00,-14.40,-9.60,0 --0.00,-9.60,9.51,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,9.57,0.00,1.00,-4.80,0.00,0 -0.00,0.00,9.64,0.00,1.00,0.00,4.80,0 -0.00,4.80,9.70,0.00,1.00,4.80,9.60,0 -0.00,9.60,9.77,0.00,1.00,9.60,14.40,0 -4.80,14.40,9.83,0.00,1.00,14.40,19.20,0 -4.80,19.20,9.90,0.00,1.00,19.20,24.00,0 -4.80,24.00,9.96,0.00,1.00,24.00,28.80,0 -4.80,28.80,10.02,0.00,1.00,28.80,33.60,0 -4.80,33.60,10.09,0.00,1.00,33.60,38.40,0 -9.60,38.40,10.15,0.00,1.00,38.40,43.20,0 -9.60,43.20,10.22,0.00,1.00,43.20,48.00,0 -9.60,48.00,10.28,0.00,1.00,48.00,52.80,0 -14.40,52.80,10.35,0.00,1.00,52.80,57.60,0 -14.40,57.60,10.41,0.00,1.00,57.60,62.40,0 -19.20,62.40,10.47,0.00,1.00,62.40,67.20,0 -24.00,67.20,10.54,0.00,1.00,67.20,72.00,0 -28.80,72.00,10.60,0.00,1.00,72.00,72.00,0 -33.60,72.00,10.67,0.00,1.00,76.80,76.80,0 -48.00,76.80,10.73,0.00,1.00,81.60,81.60,0 -67.20,81.60,10.80,0.00,1.00,86.40,81.60,0 -96.00,81.60,10.86,0.00,1.00,91.20,81.60,0 -120.00,76.80,10.92,0.00,1.00,96.00,76.80,0 -139.20,76.80,10.99,0.00,1.00,100.80,72.00,0 -148.80,72.00,11.05,0.00,1.00,105.60,67.20,0 -153.60,67.20,11.12,0.00,1.00,110.40,62.40,0 -158.40,62.40,11.18,0.00,1.00,115.20,57.60,0 -163.20,57.60,11.24,0.00,1.00,120.00,52.80,0 -168.00,52.80,11.31,0.00,1.00,124.80,48.00,0 -168.00,48.00,11.37,0.00,1.00,129.60,43.20,0 -168.00,43.20,11.44,0.00,1.00,134.40,38.40,0 -172.80,38.40,11.50,0.00,1.00,139.20,33.60,0 -172.80,33.60,11.57,0.00,1.00,144.00,28.80,0 -172.80,28.80,11.63,0.00,1.00,148.80,24.00,0 -177.60,24.00,11.69,0.00,1.00,153.60,19.20,0 -177.60,19.20,11.76,0.00,1.00,158.40,14.40,0 -177.60,14.40,11.82,0.00,1.00,163.20,9.60,0 -177.60,9.60,11.89,0.00,1.00,168.00,4.80,0 -177.60,4.80,11.95,0.00,1.00,172.80,0.00,0 -177.60,0.00,12.02,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,12.08,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,12.14,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,12.21,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,12.27,0.00,1.00,-163.20,-19.20,0 --177.60,-19.20,12.34,0.00,1.00,-158.40,-24.00,0 --177.60,-24.00,12.40,0.00,1.00,-153.60,-28.80,0 --172.80,-28.80,12.47,0.00,1.00,-148.80,-33.60,0 --172.80,-33.60,12.53,0.00,1.00,-144.00,-38.40,0 --172.80,-38.40,12.59,0.00,1.00,-139.20,-43.20,0 --168.00,-43.20,12.66,0.00,1.00,-134.40,-48.00,0 --168.00,-48.00,12.72,0.00,1.00,-129.60,-52.80,0 --168.00,-52.80,12.79,0.00,1.00,-124.80,-57.60,0 --163.20,-57.60,12.85,0.00,1.00,-120.00,-62.40,0 --158.40,-62.40,12.92,0.00,1.00,-115.20,-67.20,0 --153.60,-67.20,12.98,0.00,1.00,-110.40,-72.00,0 --148.80,-72.00,13.04,0.00,1.00,-105.60,-76.80,0 --139.20,-76.80,13.11,0.00,1.00,-100.80,-81.60,0 --120.00,-76.80,13.17,0.00,1.00,-96.00,-81.60,0 --96.00,-81.60,13.24,0.00,1.00,-91.20,-81.60,0 --67.20,-81.60,13.30,0.00,1.00,-86.40,-76.80,0 --48.00,-76.80,13.37,0.00,1.00,-81.60,-72.00,0 --33.60,-72.00,13.43,0.00,1.00,-76.80,-72.00,0 --28.80,-72.00,13.49,0.00,1.00,-72.00,-67.20,0 --24.00,-67.20,13.56,0.00,1.00,-67.20,-62.40,0 --19.20,-62.40,13.62,0.00,1.00,-62.40,-57.60,0 --14.40,-57.60,13.69,0.00,1.00,-57.60,-52.80,0 --14.40,-52.80,13.75,0.00,1.00,-52.80,-48.00,0 --9.60,-48.00,13.82,0.00,1.00,-48.00,-43.20,0 --9.60,-43.20,13.88,0.00,1.00,-43.20,-38.40,0 --9.60,-38.40,13.94,0.00,1.00,-38.40,-33.60,0 --4.80,-33.60,14.01,0.00,1.00,-33.60,-28.80,0 --4.80,-28.80,14.07,0.00,1.00,-28.80,-24.00,0 --4.80,-24.00,14.14,0.00,1.00,-24.00,-19.20,0 --4.80,-19.20,14.20,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,14.27,0.00,1.00,-14.40,-9.60,0 --0.00,-9.60,14.33,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,14.39,0.00,1.00,-4.80,0.00,0 -0.00,0.00,14.46,0.00,1.00,0.00,4.80,0 -0.00,4.80,14.52,0.00,1.00,4.80,9.60,0 -4.80,9.60,14.59,0.00,1.00,9.60,14.40,0 -4.80,14.40,14.65,0.00,1.00,14.40,19.20,0 -4.80,19.20,14.71,0.00,1.00,19.20,24.00,0 -4.80,24.00,14.78,0.00,1.00,24.00,28.80,0 -9.60,28.80,14.84,0.00,1.00,28.80,33.60,0 -9.60,33.60,14.91,0.00,1.00,33.60,38.40,0 -9.60,38.40,14.97,0.00,1.00,38.40,43.20,0 -14.40,43.20,15.04,0.00,1.00,43.20,48.00,0 -14.40,48.00,15.10,0.00,1.00,48.00,52.80,0 -19.20,52.80,15.16,0.00,1.00,52.80,57.60,0 -19.20,52.80,15.23,0.00,1.00,57.60,57.60,0 -24.00,57.60,15.29,0.00,1.00,62.40,62.40,0 -28.80,62.40,15.36,0.00,1.00,67.20,67.20,0 -38.40,67.20,15.42,0.00,1.00,72.00,72.00,0 -48.00,72.00,15.49,0.00,1.00,76.80,72.00,0 -57.60,72.00,15.55,0.00,1.00,81.60,76.80,0 -76.80,76.80,15.61,0.00,1.00,86.40,76.80,0 -96.00,76.80,15.68,0.00,1.00,91.20,76.80,0 -115.20,76.80,15.74,0.00,1.00,96.00,72.00,0 -129.60,72.00,15.81,0.00,1.00,100.80,72.00,0 -139.20,67.20,15.87,0.00,1.00,105.60,67.20,0 -144.00,67.20,15.94,0.00,1.00,110.40,62.40,0 -153.60,62.40,16.00,0.00,1.00,115.20,57.60,0 -158.40,57.60,16.00,0.00,1.00,120.00,52.80,0 -158.40,52.80,15.94,0.00,1.00,124.80,48.00,0 -163.20,48.00,15.87,0.00,1.00,129.60,43.20,0 -168.00,43.20,15.81,0.00,1.00,134.40,38.40,0 -168.00,38.40,15.74,0.00,1.00,139.20,33.60,0 -168.00,33.60,15.68,0.00,1.00,144.00,28.80,0 -172.80,28.80,15.61,0.00,1.00,148.80,24.00,0 -172.80,24.00,15.55,0.00,1.00,153.60,19.20,0 -172.80,19.20,15.49,0.00,1.00,158.40,14.40,0 -177.60,14.40,15.42,0.00,1.00,163.20,9.60,0 -177.60,9.60,15.36,0.00,1.00,168.00,4.80,0 -177.60,4.80,15.29,0.00,1.00,172.80,0.00,0 -177.60,0.00,15.23,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,15.16,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,15.10,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,15.04,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,14.97,0.00,1.00,-163.20,-19.20,0 --172.80,-19.20,14.91,0.00,1.00,-158.40,-24.00,0 --172.80,-24.00,14.84,0.00,1.00,-153.60,-28.80,0 --172.80,-28.80,14.78,0.00,1.00,-148.80,-33.60,0 --168.00,-33.60,14.71,0.00,1.00,-144.00,-38.40,0 --168.00,-38.40,14.65,0.00,1.00,-139.20,-43.20,0 --168.00,-43.20,14.59,0.00,1.00,-134.40,-48.00,0 --163.20,-48.00,14.52,0.00,1.00,-129.60,-52.80,0 --158.40,-52.80,14.46,0.00,1.00,-124.80,-57.60,0 --158.40,-57.60,14.39,0.00,1.00,-120.00,-62.40,0 --153.60,-62.40,14.33,0.00,1.00,-115.20,-67.20,0 --144.00,-67.20,14.27,0.00,1.00,-110.40,-72.00,0 --139.20,-67.20,14.20,0.00,1.00,-105.60,-72.00,0 --129.60,-72.00,14.14,0.00,1.00,-100.80,-76.80,0 --115.20,-76.80,14.07,0.00,1.00,-96.00,-76.80,0 --96.00,-76.80,14.01,0.00,1.00,-91.20,-76.80,0 --76.80,-76.80,13.94,0.00,1.00,-86.40,-72.00,0 --57.60,-72.00,13.88,0.00,1.00,-81.60,-72.00,0 --48.00,-72.00,13.82,0.00,1.00,-76.80,-67.20,0 --38.40,-67.20,13.75,0.00,1.00,-72.00,-62.40,0 --28.80,-62.40,13.69,0.00,1.00,-67.20,-57.60,0 --24.00,-57.60,13.62,0.00,1.00,-62.40,-57.60,0 --19.20,-52.80,13.56,0.00,1.00,-57.60,-52.80,0 --19.20,-52.80,13.49,0.00,1.00,-52.80,-48.00,0 --14.40,-48.00,13.43,0.00,1.00,-48.00,-43.20,0 --14.40,-43.20,13.37,0.00,1.00,-43.20,-38.40,0 --9.60,-38.40,13.30,0.00,1.00,-38.40,-33.60,0 --9.60,-33.60,13.24,0.00,1.00,-33.60,-28.80,0 --9.60,-28.80,13.17,0.00,1.00,-28.80,-24.00,0 --4.80,-24.00,13.11,0.00,1.00,-24.00,-19.20,0 --4.80,-19.20,13.04,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,12.98,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,12.92,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,12.85,0.00,1.00,-4.80,0.00,0 -0.00,0.00,12.79,0.00,1.00,0.00,4.80,0 -0.00,4.80,12.72,0.00,1.00,4.80,9.60,0 -4.80,9.60,12.66,0.00,1.00,9.60,14.40,0 -4.80,14.40,12.59,0.00,1.00,14.40,19.20,0 -4.80,19.20,12.53,0.00,1.00,19.20,24.00,0 -9.60,24.00,12.47,0.00,1.00,24.00,28.80,0 -9.60,28.80,12.40,0.00,1.00,28.80,33.60,0 -14.40,33.60,12.34,0.00,1.00,33.60,38.40,0 -14.40,33.60,12.27,0.00,1.00,38.40,38.40,0 -19.20,38.40,12.21,0.00,1.00,43.20,43.20,0 -19.20,43.20,12.14,0.00,1.00,48.00,48.00,0 -24.00,48.00,12.08,0.00,1.00,52.80,52.80,0 -28.80,52.80,12.02,0.00,1.00,57.60,57.60,0 -33.60,57.60,11.95,0.00,1.00,62.40,62.40,0 -38.40,62.40,11.89,0.00,1.00,67.20,62.40,0 -43.20,62.40,11.82,0.00,1.00,72.00,67.20,0 -52.80,67.20,11.76,0.00,1.00,76.80,72.00,0 -67.20,67.20,11.69,0.00,1.00,81.60,72.00,0 -76.80,72.00,11.63,0.00,1.00,86.40,72.00,0 -96.00,72.00,11.57,0.00,1.00,91.20,72.00,0 -105.60,72.00,11.50,0.00,1.00,96.00,67.20,0 -120.00,67.20,11.44,0.00,1.00,100.80,67.20,0 -129.60,67.20,11.37,0.00,1.00,105.60,62.40,0 -139.20,62.40,11.31,0.00,1.00,110.40,57.60,0 -144.00,57.60,11.24,0.00,1.00,115.20,57.60,0 -148.80,52.80,11.18,0.00,1.00,120.00,52.80,0 -153.60,52.80,11.12,0.00,1.00,124.80,48.00,0 -158.40,48.00,11.05,0.00,1.00,129.60,43.20,0 -163.20,43.20,10.99,0.00,1.00,134.40,38.40,0 -163.20,38.40,10.92,0.00,1.00,139.20,33.60,0 -168.00,33.60,10.86,0.00,1.00,144.00,28.80,0 -168.00,28.80,10.80,0.00,1.00,148.80,24.00,0 -172.80,24.00,10.73,0.00,1.00,153.60,19.20,0 -172.80,19.20,10.67,0.00,1.00,158.40,14.40,0 -172.80,14.40,10.60,0.00,1.00,163.20,9.60,0 -177.60,9.60,10.54,0.00,1.00,168.00,4.80,0 -177.60,4.80,10.47,0.00,1.00,172.80,0.00,0 -177.60,0.00,10.41,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.35,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,10.28,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,10.22,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,10.15,0.00,1.00,-163.20,-19.20,0 --172.80,-19.20,10.09,0.00,1.00,-158.40,-24.00,0 --172.80,-24.00,10.02,0.00,1.00,-153.60,-28.80,0 --168.00,-28.80,9.96,0.00,1.00,-148.80,-33.60,0 --168.00,-33.60,9.90,0.00,1.00,-144.00,-38.40,0 --163.20,-38.40,9.83,0.00,1.00,-139.20,-43.20,0 --163.20,-43.20,9.77,0.00,1.00,-134.40,-48.00,0 --158.40,-48.00,9.70,0.00,1.00,-129.60,-52.80,0 --153.60,-52.80,9.64,0.00,1.00,-124.80,-57.60,0 --148.80,-52.80,9.57,0.00,1.00,-120.00,-57.60,0 --144.00,-57.60,9.51,0.00,1.00,-115.20,-62.40,0 --139.20,-62.40,9.45,0.00,1.00,-110.40,-67.20,0 --129.60,-67.20,9.38,0.00,1.00,-105.60,-67.20,0 --120.00,-67.20,9.32,0.00,1.00,-100.80,-72.00,0 --105.60,-72.00,9.25,0.00,1.00,-96.00,-72.00,0 --96.00,-72.00,9.19,0.00,1.00,-91.20,-72.00,0 --76.80,-72.00,9.12,0.00,1.00,-86.40,-72.00,0 --67.20,-67.20,9.06,0.00,1.00,-81.60,-67.20,0 --52.80,-67.20,9.00,0.00,1.00,-76.80,-62.40,0 --43.20,-62.40,8.93,0.00,1.00,-72.00,-62.40,0 --38.40,-62.40,8.87,0.00,1.00,-67.20,-57.60,0 --33.60,-57.60,8.80,0.00,1.00,-62.40,-52.80,0 --28.80,-52.80,8.74,0.00,1.00,-57.60,-48.00,0 --24.00,-48.00,8.67,0.00,1.00,-52.80,-43.20,0 --19.20,-43.20,8.61,0.00,1.00,-48.00,-38.40,0 --19.20,-38.40,8.55,0.00,1.00,-43.20,-38.40,0 --14.40,-33.60,8.48,0.00,1.00,-38.40,-33.60,0 --14.40,-33.60,8.42,0.00,1.00,-33.60,-28.80,0 --9.60,-28.80,8.35,0.00,1.00,-28.80,-24.00,0 --9.60,-24.00,8.29,0.00,1.00,-24.00,-19.20,0 --4.80,-19.20,8.22,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,8.16,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,8.10,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,8.03,0.00,1.00,-4.80,0.00,0 -0.00,0.00,7.97,0.00,1.00,0.00,4.80,0 -0.00,4.80,7.90,0.00,1.00,4.80,9.60,0 -4.80,9.60,7.84,0.00,1.00,9.60,14.40,0 -4.80,14.40,7.78,0.00,1.00,14.40,19.20,0 -9.60,19.20,7.71,0.00,1.00,19.20,24.00,0 -9.60,24.00,7.65,0.00,1.00,24.00,24.00,0 -14.40,24.00,7.58,0.00,1.00,28.80,28.80,0 -14.40,28.80,7.52,0.00,1.00,33.60,33.60,0 -19.20,33.60,7.45,0.00,1.00,33.60,38.40,0 -19.20,38.40,7.39,0.00,1.00,38.40,43.20,0 -24.00,43.20,7.33,0.00,1.00,43.20,48.00,0 -28.80,48.00,7.26,0.00,1.00,48.00,52.80,0 -33.60,52.80,7.20,0.00,1.00,57.60,52.80,0 -38.40,52.80,7.13,0.00,1.00,62.40,57.60,0 -43.20,57.60,7.07,0.00,1.00,67.20,62.40,0 -52.80,62.40,7.00,0.00,1.00,72.00,62.40,0 -62.40,62.40,6.94,0.00,1.00,76.80,67.20,0 -72.00,62.40,6.88,0.00,1.00,81.60,67.20,0 -81.60,67.20,6.81,0.00,1.00,86.40,67.20,0 -91.20,67.20,6.75,0.00,1.00,91.20,67.20,0 -105.60,67.20,6.68,0.00,1.00,96.00,67.20,0 -115.20,62.40,6.62,0.00,1.00,100.80,62.40,0 -124.80,62.40,6.55,0.00,1.00,105.60,57.60,0 -134.40,57.60,6.49,0.00,1.00,110.40,57.60,0 -139.20,57.60,6.43,0.00,1.00,115.20,52.80,0 -144.00,52.80,6.36,0.00,1.00,120.00,48.00,0 -148.80,48.00,6.30,0.00,1.00,129.60,43.20,0 -153.60,43.20,6.23,0.00,1.00,134.40,43.20,0 -158.40,38.40,6.17,0.00,1.00,139.20,38.40,0 -158.40,38.40,6.10,0.00,1.00,144.00,33.60,0 -163.20,33.60,6.04,0.00,1.00,148.80,28.80,0 -168.00,28.80,5.98,0.00,1.00,148.80,24.00,0 -168.00,24.00,5.91,0.00,1.00,153.60,19.20,0 -172.80,19.20,5.85,0.00,1.00,158.40,14.40,0 -172.80,14.40,5.78,0.00,1.00,163.20,9.60,0 -172.80,9.60,5.72,0.00,1.00,168.00,4.80,0 -177.60,4.80,5.65,0.00,1.00,172.80,0.00,0 -177.60,0.00,5.59,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,5.53,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,5.46,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,5.40,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,5.33,0.00,1.00,-163.20,-19.20,0 --172.80,-19.20,5.27,0.00,1.00,-158.40,-24.00,0 --168.00,-24.00,5.20,0.00,1.00,-153.60,-28.80,0 --168.00,-28.80,5.14,0.00,1.00,-148.80,-33.60,0 --163.20,-33.60,5.08,0.00,1.00,-148.80,-38.40,0 --158.40,-38.40,5.01,0.00,1.00,-144.00,-43.20,0 --158.40,-38.40,4.95,0.00,1.00,-139.20,-43.20,0 --153.60,-43.20,4.88,0.00,1.00,-134.40,-48.00,0 --148.80,-48.00,4.82,0.00,1.00,-129.60,-52.80,0 --144.00,-52.80,4.76,0.00,1.00,-120.00,-57.60,0 --139.20,-57.60,4.69,0.00,1.00,-115.20,-57.60,0 --134.40,-57.60,4.63,0.00,1.00,-110.40,-62.40,0 --124.80,-62.40,4.56,0.00,1.00,-105.60,-67.20,0 --115.20,-62.40,4.50,0.00,1.00,-100.80,-67.20,0 --105.60,-67.20,4.43,0.00,1.00,-96.00,-67.20,0 --91.20,-67.20,4.37,0.00,1.00,-91.20,-67.20,0 --81.60,-67.20,4.31,0.00,1.00,-86.40,-67.20,0 --72.00,-62.40,4.24,0.00,1.00,-81.60,-62.40,0 --62.40,-62.40,4.18,0.00,1.00,-76.80,-62.40,0 --52.80,-62.40,4.11,0.00,1.00,-72.00,-57.60,0 --43.20,-57.60,4.05,0.00,1.00,-67.20,-52.80,0 --38.40,-52.80,3.98,0.00,1.00,-62.40,-52.80,0 --33.60,-52.80,3.92,0.00,1.00,-57.60,-48.00,0 --28.80,-48.00,3.86,0.00,1.00,-48.00,-43.20,0 --24.00,-43.20,3.79,0.00,1.00,-43.20,-38.40,0 --19.20,-38.40,3.73,0.00,1.00,-38.40,-33.60,0 --19.20,-33.60,3.66,0.00,1.00,-33.60,-28.80,0 --14.40,-28.80,3.60,0.00,1.00,-33.60,-24.00,0 --14.40,-24.00,3.53,0.00,1.00,-28.80,-24.00,0 --9.60,-24.00,3.47,0.00,1.00,-24.00,-19.20,0 --9.60,-19.20,3.41,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,3.34,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,3.28,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,3.21,0.00,1.00,-4.80,0.00,0 -0.00,0.00,3.15,0.00,1.00,0.00,4.80,0 -0.00,4.80,3.08,0.00,1.00,4.80,9.60,0 -4.80,9.60,3.02,0.00,1.00,9.60,14.40,0 -4.80,14.40,2.96,0.00,1.00,14.40,19.20,0 -9.60,14.40,2.89,0.00,1.00,19.20,19.20,0 -14.40,19.20,2.83,0.00,1.00,19.20,24.00,0 -14.40,24.00,2.76,0.00,1.00,24.00,28.80,0 -19.20,28.80,2.70,0.00,1.00,28.80,33.60,0 -19.20,33.60,2.63,0.00,1.00,33.60,38.40,0 -24.00,38.40,2.57,0.00,1.00,38.40,43.20,0 -28.80,38.40,2.51,0.00,1.00,43.20,43.20,0 -33.60,43.20,2.44,0.00,1.00,48.00,48.00,0 -38.40,48.00,2.38,0.00,1.00,52.80,52.80,0 -43.20,52.80,2.31,0.00,1.00,57.60,52.80,0 -48.00,52.80,2.25,0.00,1.00,62.40,57.60,0 -57.60,57.60,2.18,0.00,1.00,72.00,57.60,0 -62.40,57.60,2.12,0.00,1.00,76.80,62.40,0 -72.00,62.40,2.06,0.00,1.00,81.60,62.40,0 -81.60,62.40,1.99,0.00,1.00,86.40,62.40,0 -91.20,62.40,1.93,0.00,1.00,91.20,62.40,0 -100.80,62.40,1.86,0.00,1.00,96.00,62.40,0 -110.40,57.60,1.80,0.00,1.00,100.80,57.60,0 -120.00,57.60,1.73,0.00,1.00,105.60,57.60,0 -129.60,57.60,1.67,0.00,1.00,115.20,52.80,0 -134.40,52.80,1.61,0.00,1.00,120.00,48.00,0 -139.20,48.00,1.54,0.00,1.00,124.80,48.00,0 -144.00,48.00,1.48,0.00,1.00,129.60,43.20,0 -148.80,43.20,1.41,0.00,1.00,134.40,38.40,0 -153.60,38.40,1.35,0.00,1.00,139.20,33.60,0 -158.40,33.60,1.29,0.00,1.00,144.00,33.60,0 -158.40,28.80,1.22,0.00,1.00,148.80,28.80,0 -163.20,28.80,1.16,0.00,1.00,153.60,24.00,0 -168.00,24.00,1.09,0.00,1.00,158.40,19.20,0 -168.00,19.20,1.03,0.00,1.00,163.20,14.40,0 -172.80,14.40,0.96,0.00,1.00,163.20,9.60,0 -172.80,9.60,0.90,0.00,1.00,168.00,4.80,0 -177.60,4.80,0.84,0.00,1.00,172.80,0.00,0 -177.60,0.00,0.77,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,0.71,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,0.64,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,0.58,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,0.51,0.00,1.00,-163.20,-19.20,0 --168.00,-19.20,0.45,0.00,1.00,-163.20,-24.00,0 --168.00,-24.00,0.39,0.00,1.00,-158.40,-28.80,0 --163.20,-28.80,0.32,0.00,1.00,-153.60,-33.60,0 --158.40,-28.80,0.26,0.00,1.00,-148.80,-33.60,0 --158.40,-33.60,0.19,0.00,1.00,-144.00,-38.40,0 --153.60,-38.40,0.13,0.00,1.00,-139.20,-43.20,0 --148.80,-43.20,0.06,0.00,1.00,-134.40,-48.00,0 --144.00,-48.00,0.00,0.00,1.00,-129.60,-48.00,0 --139.20,-48.00,0.00,0.00,1.00,-124.80,-52.80,0 --134.40,-52.80,0.16,0.00,1.00,-120.00,-57.60,0 --129.60,-57.60,0.32,0.00,1.00,-115.20,-57.60,0 --120.00,-57.60,0.48,0.00,1.00,-105.60,-62.40,0 --110.40,-57.60,0.65,0.00,1.00,-100.80,-62.40,0 --100.80,-62.40,0.81,0.00,1.00,-96.00,-62.40,0 --91.20,-62.40,0.97,0.00,1.00,-91.20,-62.40,0 --81.60,-62.40,1.13,0.00,1.00,-86.40,-62.40,0 --72.00,-62.40,1.29,0.00,1.00,-81.60,-57.60,0 --62.40,-57.60,1.45,0.00,1.00,-76.80,-57.60,0 --57.60,-57.60,1.62,0.00,1.00,-72.00,-52.80,0 --48.00,-52.80,1.78,0.00,1.00,-62.40,-52.80,0 --43.20,-52.80,1.94,0.00,1.00,-57.60,-48.00,0 --38.40,-48.00,2.10,0.00,1.00,-52.80,-43.20,0 --33.60,-43.20,2.26,0.00,1.00,-48.00,-43.20,0 --28.80,-38.40,2.42,0.00,1.00,-43.20,-38.40,0 --24.00,-38.40,2.59,0.00,1.00,-38.40,-33.60,0 --19.20,-33.60,2.75,0.00,1.00,-33.60,-28.80,0 --19.20,-28.80,2.91,0.00,1.00,-28.80,-24.00,0 --14.40,-24.00,3.07,0.00,1.00,-24.00,-19.20,0 --14.40,-19.20,3.23,0.00,1.00,-19.20,-19.20,0 --9.60,-14.40,3.39,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,3.56,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,3.72,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,3.88,0.00,1.00,-4.80,0.00,0 -0.00,0.00,4.04,0.00,1.00,0.00,4.80,0 -4.80,4.80,4.20,0.00,1.00,4.80,9.60,0 -4.80,9.60,4.36,0.00,1.00,9.60,14.40,0 -9.60,9.60,4.53,0.00,1.00,14.40,14.40,0 -9.60,14.40,4.69,0.00,1.00,14.40,19.20,0 -14.40,19.20,4.85,0.00,1.00,19.20,24.00,0 -19.20,24.00,5.01,0.00,1.00,24.00,28.80,0 -19.20,28.80,5.17,0.00,1.00,28.80,33.60,0 -24.00,28.80,5.33,0.00,1.00,33.60,33.60,0 -28.80,33.60,5.49,0.00,1.00,38.40,38.40,0 -33.60,38.40,5.66,0.00,1.00,43.20,43.20,0 -38.40,43.20,5.82,0.00,1.00,48.00,43.20,0 -43.20,43.20,5.98,0.00,1.00,52.80,48.00,0 -48.00,48.00,6.14,0.00,1.00,57.60,52.80,0 -52.80,48.00,6.30,0.00,1.00,62.40,52.80,0 -57.60,52.80,6.46,0.00,1.00,67.20,57.60,0 -67.20,52.80,6.63,0.00,1.00,72.00,57.60,0 -76.80,57.60,6.79,0.00,1.00,81.60,57.60,0 -81.60,57.60,6.95,0.00,1.00,86.40,57.60,0 -91.20,57.60,7.11,0.00,1.00,91.20,57.60,0 -100.80,57.60,7.27,0.00,1.00,96.00,57.60,0 -110.40,52.80,7.43,0.00,1.00,100.80,52.80,0 -115.20,52.80,7.60,0.00,1.00,110.40,52.80,0 -124.80,52.80,7.76,0.00,1.00,115.20,48.00,0 -129.60,48.00,7.92,0.00,1.00,120.00,48.00,0 -134.40,48.00,8.08,0.00,1.00,124.80,43.20,0 -139.20,43.20,8.24,0.00,1.00,129.60,38.40,0 -144.00,38.40,8.40,0.00,1.00,134.40,38.40,0 -148.80,38.40,8.57,0.00,1.00,139.20,33.60,0 -153.60,33.60,8.73,0.00,1.00,144.00,28.80,0 -158.40,28.80,8.89,0.00,1.00,148.80,24.00,0 -163.20,24.00,9.05,0.00,1.00,153.60,24.00,0 -163.20,24.00,9.21,0.00,1.00,158.40,19.20,0 -168.00,19.20,9.37,0.00,1.00,163.20,14.40,0 -172.80,14.40,9.54,0.00,1.00,168.00,9.60,0 -172.80,9.60,9.70,0.00,1.00,168.00,4.80,0 -177.60,4.80,9.86,0.00,1.00,172.80,0.00,0 -177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.18,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,10.34,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,10.51,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,10.67,0.00,1.00,-168.00,-19.20,0 --168.00,-19.20,10.83,0.00,1.00,-163.20,-24.00,0 --163.20,-24.00,10.99,0.00,1.00,-158.40,-24.00,0 --163.20,-24.00,11.15,0.00,1.00,-153.60,-28.80,0 --158.40,-28.80,11.31,0.00,1.00,-148.80,-33.60,0 --153.60,-33.60,11.47,0.00,1.00,-144.00,-38.40,0 --148.80,-38.40,11.64,0.00,1.00,-139.20,-38.40,0 --144.00,-38.40,11.80,0.00,1.00,-134.40,-43.20,0 --139.20,-43.20,11.96,0.00,1.00,-129.60,-48.00,0 --134.40,-48.00,12.12,0.00,1.00,-124.80,-48.00,0 --129.60,-48.00,12.28,0.00,1.00,-120.00,-52.80,0 --124.80,-52.80,12.44,0.00,1.00,-115.20,-52.80,0 --115.20,-52.80,12.61,0.00,1.00,-110.40,-57.60,0 --110.40,-52.80,12.77,0.00,1.00,-100.80,-57.60,0 --100.80,-57.60,12.93,0.00,1.00,-96.00,-57.60,0 --91.20,-57.60,13.09,0.00,1.00,-91.20,-57.60,0 --81.60,-57.60,13.25,0.00,1.00,-86.40,-57.60,0 --76.80,-57.60,13.41,0.00,1.00,-81.60,-57.60,0 --67.20,-52.80,13.58,0.00,1.00,-72.00,-52.80,0 --57.60,-52.80,13.74,0.00,1.00,-67.20,-52.80,0 --52.80,-48.00,13.90,0.00,1.00,-62.40,-48.00,0 --48.00,-48.00,14.06,0.00,1.00,-57.60,-43.20,0 --43.20,-43.20,14.22,0.00,1.00,-52.80,-43.20,0 --38.40,-43.20,14.38,0.00,1.00,-48.00,-38.40,0 --33.60,-38.40,14.55,0.00,1.00,-43.20,-33.60,0 --28.80,-33.60,14.71,0.00,1.00,-38.40,-33.60,0 --24.00,-28.80,14.87,0.00,1.00,-33.60,-28.80,0 --19.20,-28.80,15.03,0.00,1.00,-28.80,-24.00,0 --19.20,-24.00,15.19,0.00,1.00,-24.00,-19.20,0 --14.40,-19.20,15.35,0.00,1.00,-19.20,-14.40,0 --9.60,-14.40,15.52,0.00,1.00,-14.40,-14.40,0 --9.60,-9.60,15.68,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,15.84,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,16.00,0.00,1.00,-4.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,0.00,4.80,0 -4.80,4.80,15.84,0.00,1.00,4.80,9.60,0 -4.80,9.60,15.68,0.00,1.00,9.60,9.60,0 -9.60,9.60,15.52,0.00,1.00,9.60,14.40,0 -14.40,14.40,15.35,0.00,1.00,14.40,19.20,0 -14.40,19.20,15.19,0.00,1.00,19.20,24.00,0 -19.20,24.00,15.03,0.00,1.00,24.00,24.00,0 -24.00,24.00,14.87,0.00,1.00,28.80,28.80,0 -24.00,28.80,14.71,0.00,1.00,33.60,33.60,0 -28.80,33.60,14.55,0.00,1.00,38.40,38.40,0 -33.60,33.60,14.38,0.00,1.00,43.20,38.40,0 -38.40,38.40,14.22,0.00,1.00,48.00,43.20,0 -43.20,43.20,14.06,0.00,1.00,52.80,43.20,0 -48.00,43.20,13.90,0.00,1.00,57.60,48.00,0 -57.60,48.00,13.74,0.00,1.00,62.40,48.00,0 -62.40,48.00,13.58,0.00,1.00,67.20,52.80,0 -67.20,48.00,13.41,0.00,1.00,72.00,52.80,0 -76.80,52.80,13.25,0.00,1.00,81.60,52.80,0 -86.40,52.80,13.09,0.00,1.00,86.40,52.80,0 -91.20,52.80,12.93,0.00,1.00,91.20,52.80,0 -100.80,52.80,12.77,0.00,1.00,96.00,52.80,0 -105.60,48.00,12.61,0.00,1.00,105.60,48.00,0 -115.20,48.00,12.44,0.00,1.00,110.40,48.00,0 -120.00,48.00,12.28,0.00,1.00,115.20,48.00,0 -124.80,43.20,12.12,0.00,1.00,120.00,43.20,0 -134.40,43.20,11.96,0.00,1.00,124.80,43.20,0 -139.20,38.40,11.80,0.00,1.00,129.60,38.40,0 -144.00,38.40,11.64,0.00,1.00,134.40,33.60,0 -148.80,33.60,11.47,0.00,1.00,139.20,33.60,0 -153.60,28.80,11.31,0.00,1.00,144.00,28.80,0 -153.60,28.80,11.15,0.00,1.00,148.80,24.00,0 -158.40,24.00,10.99,0.00,1.00,153.60,19.20,0 -163.20,19.20,10.83,0.00,1.00,158.40,19.20,0 -168.00,14.40,10.67,0.00,1.00,163.20,14.40,0 -168.00,14.40,10.51,0.00,1.00,168.00,9.60,0 -172.80,9.60,10.34,0.00,1.00,172.80,4.80,0 -177.60,4.80,10.18,0.00,1.00,172.80,0.00,0 -177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,9.86,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,9.70,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,9.54,0.00,1.00,-172.80,-14.40,0 --168.00,-14.40,9.37,0.00,1.00,-168.00,-19.20,0 --168.00,-14.40,9.21,0.00,1.00,-163.20,-19.20,0 --163.20,-19.20,9.05,0.00,1.00,-158.40,-24.00,0 --158.40,-24.00,8.89,0.00,1.00,-153.60,-28.80,0 --153.60,-28.80,8.73,0.00,1.00,-148.80,-33.60,0 --153.60,-28.80,8.57,0.00,1.00,-144.00,-33.60,0 --148.80,-33.60,8.40,0.00,1.00,-139.20,-38.40,0 --144.00,-38.40,8.24,0.00,1.00,-134.40,-43.20,0 --139.20,-38.40,8.08,0.00,1.00,-129.60,-43.20,0 --134.40,-43.20,7.92,0.00,1.00,-124.80,-48.00,0 --124.80,-43.20,7.76,0.00,1.00,-120.00,-48.00,0 --120.00,-48.00,7.60,0.00,1.00,-115.20,-48.00,0 --115.20,-48.00,7.43,0.00,1.00,-110.40,-52.80,0 --105.60,-48.00,7.27,0.00,1.00,-105.60,-52.80,0 --100.80,-52.80,7.11,0.00,1.00,-96.00,-52.80,0 --91.20,-52.80,6.95,0.00,1.00,-91.20,-52.80,0 --86.40,-52.80,6.79,0.00,1.00,-86.40,-52.80,0 --76.80,-52.80,6.63,0.00,1.00,-81.60,-52.80,0 --67.20,-48.00,6.46,0.00,1.00,-72.00,-48.00,0 --62.40,-48.00,6.30,0.00,1.00,-67.20,-48.00,0 --57.60,-48.00,6.14,0.00,1.00,-62.40,-43.20,0 --48.00,-43.20,5.98,0.00,1.00,-57.60,-43.20,0 --43.20,-43.20,5.82,0.00,1.00,-52.80,-38.40,0 --38.40,-38.40,5.66,0.00,1.00,-48.00,-38.40,0 --33.60,-33.60,5.49,0.00,1.00,-43.20,-33.60,0 --28.80,-33.60,5.33,0.00,1.00,-38.40,-28.80,0 --24.00,-28.80,5.17,0.00,1.00,-33.60,-24.00,0 --24.00,-24.00,5.01,0.00,1.00,-28.80,-24.00,0 --19.20,-24.00,4.85,0.00,1.00,-24.00,-19.20,0 --14.40,-19.20,4.69,0.00,1.00,-19.20,-14.40,0 --14.40,-14.40,4.53,0.00,1.00,-14.40,-9.60,0 --9.60,-9.60,4.36,0.00,1.00,-9.60,-9.60,0 --4.80,-9.60,4.20,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,4.04,0.00,1.00,-4.80,0.00,0 -0.00,0.00,3.88,0.00,1.00,0.00,4.80,0 -4.80,4.80,3.72,0.00,1.00,4.80,4.80,0 -4.80,4.80,3.56,0.00,1.00,4.80,9.60,0 -9.60,9.60,3.39,0.00,1.00,9.60,14.40,0 -14.40,14.40,3.23,0.00,1.00,14.40,19.20,0 -19.20,19.20,3.07,0.00,1.00,19.20,19.20,0 -19.20,19.20,2.91,0.00,1.00,24.00,24.00,0 -24.00,24.00,2.75,0.00,1.00,24.00,28.80,0 -28.80,28.80,2.59,0.00,1.00,28.80,28.80,0 -33.60,28.80,2.42,0.00,1.00,33.60,33.60,0 -38.40,33.60,2.26,0.00,1.00,38.40,38.40,0 -43.20,33.60,2.10,0.00,1.00,43.20,38.40,0 -48.00,38.40,1.94,0.00,1.00,48.00,43.20,0 -52.80,38.40,1.78,0.00,1.00,52.80,43.20,0 -57.60,43.20,1.62,0.00,1.00,62.40,43.20,0 -62.40,43.20,1.45,0.00,1.00,67.20,48.00,0 -72.00,43.20,1.29,0.00,1.00,72.00,48.00,0 -76.80,48.00,1.13,0.00,1.00,76.80,48.00,0 -86.40,48.00,0.97,0.00,1.00,86.40,48.00,0 -91.20,48.00,0.81,0.00,1.00,91.20,48.00,0 -100.80,48.00,0.65,0.00,1.00,96.00,48.00,0 -105.60,48.00,0.48,0.00,1.00,105.60,48.00,0 -110.40,43.20,0.32,0.00,1.00,110.40,43.20,0 -120.00,43.20,0.16,0.00,1.00,115.20,43.20,0 -124.80,43.20,0.00,0.00,1.00,124.80,38.40,0 -129.60,38.40,0.00,0.00,1.00,129.60,38.40,0 -134.40,38.40,0.04,0.00,1.00,134.40,33.60,0 -139.20,33.60,0.08,0.00,1.00,139.20,33.60,0 -144.00,33.60,0.12,0.00,1.00,144.00,28.80,0 -148.80,28.80,0.16,0.00,1.00,148.80,24.00,0 -153.60,24.00,0.20,0.00,1.00,153.60,24.00,0 -158.40,24.00,0.24,0.00,1.00,158.40,19.20,0 -163.20,19.20,0.28,0.00,1.00,158.40,14.40,0 -163.20,14.40,0.32,0.00,1.00,163.20,14.40,0 -168.00,14.40,0.36,0.00,1.00,168.00,9.60,0 -172.80,9.60,0.40,0.00,1.00,172.80,4.80,0 -172.80,4.80,0.44,0.00,1.00,172.80,0.00,0 -177.60,0.00,0.48,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,0.52,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,0.56,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,0.60,0.00,1.00,-172.80,-14.40,0 --168.00,-14.40,0.64,0.00,1.00,-168.00,-14.40,0 --163.20,-14.40,0.68,0.00,1.00,-163.20,-19.20,0 --163.20,-19.20,0.72,0.00,1.00,-158.40,-24.00,0 --158.40,-24.00,0.76,0.00,1.00,-158.40,-24.00,0 --153.60,-24.00,0.80,0.00,1.00,-153.60,-28.80,0 --148.80,-28.80,0.84,0.00,1.00,-148.80,-33.60,0 --144.00,-33.60,0.88,0.00,1.00,-144.00,-33.60,0 --139.20,-33.60,0.92,0.00,1.00,-139.20,-38.40,0 --134.40,-38.40,0.96,0.00,1.00,-134.40,-38.40,0 --129.60,-38.40,1.00,0.00,1.00,-129.60,-43.20,0 --124.80,-43.20,1.04,0.00,1.00,-124.80,-43.20,0 --120.00,-43.20,1.08,0.00,1.00,-115.20,-48.00,0 --110.40,-43.20,1.12,0.00,1.00,-110.40,-48.00,0 --105.60,-48.00,1.16,0.00,1.00,-105.60,-48.00,0 --100.80,-48.00,1.20,0.00,1.00,-96.00,-48.00,0 --91.20,-48.00,1.24,0.00,1.00,-91.20,-48.00,0 --86.40,-48.00,1.28,0.00,1.00,-86.40,-48.00,0 --76.80,-48.00,1.32,0.00,1.00,-76.80,-48.00,0 --72.00,-43.20,1.36,0.00,1.00,-72.00,-43.20,0 --62.40,-43.20,1.40,0.00,1.00,-67.20,-43.20,0 --57.60,-43.20,1.44,0.00,1.00,-62.40,-43.20,0 --52.80,-38.40,1.48,0.00,1.00,-52.80,-38.40,0 --48.00,-38.40,1.52,0.00,1.00,-48.00,-38.40,0 --43.20,-33.60,1.56,0.00,1.00,-43.20,-33.60,0 --38.40,-33.60,1.60,0.00,1.00,-38.40,-28.80,0 --33.60,-28.80,1.64,0.00,1.00,-33.60,-28.80,0 --28.80,-28.80,1.68,0.00,1.00,-28.80,-24.00,0 --24.00,-24.00,1.72,0.00,1.00,-24.00,-19.20,0 --19.20,-19.20,1.76,0.00,1.00,-24.00,-19.20,0 --19.20,-19.20,1.80,0.00,1.00,-19.20,-14.40,0 --14.40,-14.40,1.84,0.00,1.00,-14.40,-9.60,0 --9.60,-9.60,1.88,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,1.92,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,1.96,0.00,1.00,-4.80,0.00,0 -0.00,0.00,2.01,0.00,1.00,0.00,4.80,0 -4.80,4.80,2.05,0.00,1.00,4.80,4.80,0 -4.80,4.80,2.09,0.00,1.00,4.80,9.60,0 -9.60,9.60,2.13,0.00,1.00,9.60,14.40,0 -14.40,14.40,2.17,0.00,1.00,14.40,14.40,0 -19.20,14.40,2.21,0.00,1.00,14.40,19.20,0 -24.00,19.20,2.25,0.00,1.00,19.20,24.00,0 -24.00,24.00,2.29,0.00,1.00,24.00,24.00,0 -28.80,24.00,2.33,0.00,1.00,28.80,28.80,0 -33.60,28.80,2.37,0.00,1.00,33.60,28.80,0 -38.40,28.80,2.41,0.00,1.00,38.40,33.60,0 -43.20,33.60,2.45,0.00,1.00,43.20,33.60,0 -48.00,33.60,2.49,0.00,1.00,48.00,38.40,0 -52.80,38.40,2.53,0.00,1.00,52.80,38.40,0 -62.40,38.40,2.57,0.00,1.00,57.60,38.40,0 -67.20,38.40,2.61,0.00,1.00,62.40,43.20,0 -72.00,38.40,2.65,0.00,1.00,72.00,43.20,0 -76.80,43.20,2.69,0.00,1.00,76.80,43.20,0 -86.40,43.20,2.73,0.00,1.00,86.40,43.20,0 -91.20,43.20,2.77,0.00,1.00,91.20,43.20,0 -96.00,43.20,2.81,0.00,1.00,100.80,43.20,0 -105.60,43.20,2.85,0.00,1.00,105.60,43.20,0 -110.40,38.40,2.89,0.00,1.00,110.40,38.40,0 -115.20,38.40,2.93,0.00,1.00,120.00,38.40,0 -120.00,38.40,2.97,0.00,1.00,124.80,38.40,0 -129.60,33.60,3.01,0.00,1.00,129.60,33.60,0 -134.40,33.60,3.05,0.00,1.00,134.40,33.60,0 -139.20,28.80,3.09,0.00,1.00,139.20,28.80,0 -144.00,28.80,3.13,0.00,1.00,144.00,28.80,0 -148.80,24.00,3.17,0.00,1.00,148.80,24.00,0 -153.60,24.00,3.21,0.00,1.00,153.60,19.20,0 -153.60,19.20,3.25,0.00,1.00,158.40,19.20,0 -158.40,19.20,3.29,0.00,1.00,163.20,14.40,0 -163.20,14.40,3.33,0.00,1.00,163.20,9.60,0 -168.00,9.60,3.37,0.00,1.00,168.00,9.60,0 -172.80,9.60,3.41,0.00,1.00,172.80,4.80,0 -172.80,4.80,3.45,0.00,1.00,172.80,0.00,0 -177.60,0.00,3.49,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,3.53,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,3.57,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,3.61,0.00,1.00,-172.80,-9.60,0 --168.00,-9.60,3.65,0.00,1.00,-168.00,-14.40,0 --163.20,-14.40,3.69,0.00,1.00,-163.20,-19.20,0 --158.40,-19.20,3.73,0.00,1.00,-163.20,-19.20,0 --153.60,-19.20,3.77,0.00,1.00,-158.40,-24.00,0 --153.60,-24.00,3.81,0.00,1.00,-153.60,-28.80,0 --148.80,-24.00,3.85,0.00,1.00,-148.80,-28.80,0 --144.00,-28.80,3.89,0.00,1.00,-144.00,-33.60,0 --139.20,-28.80,3.93,0.00,1.00,-139.20,-33.60,0 --134.40,-33.60,3.97,0.00,1.00,-134.40,-38.40,0 --129.60,-33.60,4.01,0.00,1.00,-129.60,-38.40,0 --120.00,-38.40,4.05,0.00,1.00,-124.80,-38.40,0 --115.20,-38.40,4.09,0.00,1.00,-120.00,-43.20,0 --110.40,-38.40,4.13,0.00,1.00,-110.40,-43.20,0 --105.60,-43.20,4.17,0.00,1.00,-105.60,-43.20,0 --96.00,-43.20,4.21,0.00,1.00,-100.80,-43.20,0 --91.20,-43.20,4.25,0.00,1.00,-91.20,-43.20,0 --86.40,-43.20,4.29,0.00,1.00,-86.40,-43.20,0 --76.80,-43.20,4.33,0.00,1.00,-76.80,-43.20,0 --72.00,-38.40,4.37,0.00,1.00,-72.00,-38.40,0 --67.20,-38.40,4.41,0.00,1.00,-62.40,-38.40,0 --62.40,-38.40,4.45,0.00,1.00,-57.60,-38.40,0 --52.80,-38.40,4.49,0.00,1.00,-52.80,-33.60,0 --48.00,-33.60,4.53,0.00,1.00,-48.00,-33.60,0 --43.20,-33.60,4.57,0.00,1.00,-43.20,-28.80,0 --38.40,-28.80,4.61,0.00,1.00,-38.40,-28.80,0 --33.60,-28.80,4.65,0.00,1.00,-33.60,-24.00,0 --28.80,-24.00,4.69,0.00,1.00,-28.80,-24.00,0 --24.00,-24.00,4.73,0.00,1.00,-24.00,-19.20,0 --24.00,-19.20,4.77,0.00,1.00,-19.20,-14.40,0 --19.20,-14.40,4.81,0.00,1.00,-14.40,-14.40,0 --14.40,-14.40,4.85,0.00,1.00,-14.40,-9.60,0 --9.60,-9.60,4.89,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,4.93,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,4.97,0.00,1.00,-4.80,0.00,0 -0.00,0.00,5.01,0.00,1.00,0.00,4.80,0 -4.80,4.80,5.05,0.00,1.00,4.80,4.80,0 -9.60,4.80,5.09,0.00,1.00,4.80,9.60,0 -9.60,9.60,5.13,0.00,1.00,9.60,9.60,0 -14.40,9.60,5.17,0.00,1.00,9.60,14.40,0 -19.20,14.40,5.21,0.00,1.00,14.40,19.20,0 -24.00,19.20,5.25,0.00,1.00,19.20,19.20,0 -28.80,19.20,5.29,0.00,1.00,24.00,24.00,0 -33.60,24.00,5.33,0.00,1.00,24.00,24.00,0 -38.40,24.00,5.37,0.00,1.00,28.80,28.80,0 -43.20,28.80,5.41,0.00,1.00,33.60,28.80,0 -48.00,28.80,5.45,0.00,1.00,38.40,33.60,0 -52.80,28.80,5.49,0.00,1.00,43.20,33.60,0 -57.60,33.60,5.53,0.00,1.00,48.00,33.60,0 -62.40,33.60,5.57,0.00,1.00,52.80,38.40,0 -67.20,33.60,5.61,0.00,1.00,62.40,38.40,0 -72.00,38.40,5.65,0.00,1.00,67.20,38.40,0 -81.60,38.40,5.69,0.00,1.00,76.80,38.40,0 -86.40,38.40,5.73,0.00,1.00,86.40,38.40,0 -91.20,38.40,5.77,0.00,1.00,91.20,38.40,0 -96.00,38.40,5.81,0.00,1.00,100.80,38.40,0 -105.60,38.40,5.85,0.00,1.00,105.60,38.40,0 -110.40,33.60,5.89,0.00,1.00,115.20,33.60,0 -115.20,33.60,5.93,0.00,1.00,120.00,33.60,0 -120.00,33.60,5.97,0.00,1.00,129.60,33.60,0 -124.80,33.60,6.02,0.00,1.00,134.40,28.80,0 -129.60,28.80,6.06,0.00,1.00,139.20,28.80,0 -134.40,28.80,6.10,0.00,1.00,144.00,24.00,0 -139.20,24.00,6.14,0.00,1.00,148.80,24.00,0 -144.00,24.00,6.18,0.00,1.00,153.60,19.20,0 -148.80,19.20,6.22,0.00,1.00,158.40,19.20,0 -153.60,19.20,6.26,0.00,1.00,158.40,14.40,0 -158.40,14.40,6.30,0.00,1.00,163.20,14.40,0 -163.20,14.40,6.34,0.00,1.00,168.00,9.60,0 -168.00,9.60,6.38,0.00,1.00,168.00,9.60,0 -168.00,9.60,6.42,0.00,1.00,172.80,4.80,0 -172.80,4.80,6.46,0.00,1.00,177.60,0.00,0 -177.60,0.00,6.50,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,6.54,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,6.58,0.00,1.00,-177.60,-9.60,0 --168.00,-9.60,6.62,0.00,1.00,-172.80,-9.60,0 --168.00,-9.60,6.66,0.00,1.00,-168.00,-14.40,0 --163.20,-14.40,6.70,0.00,1.00,-168.00,-14.40,0 --158.40,-14.40,6.74,0.00,1.00,-163.20,-19.20,0 --153.60,-19.20,6.78,0.00,1.00,-158.40,-19.20,0 --148.80,-19.20,6.82,0.00,1.00,-158.40,-24.00,0 --144.00,-24.00,6.86,0.00,1.00,-153.60,-24.00,0 --139.20,-24.00,6.90,0.00,1.00,-148.80,-28.80,0 --134.40,-28.80,6.94,0.00,1.00,-144.00,-28.80,0 --129.60,-28.80,6.98,0.00,1.00,-139.20,-33.60,0 --124.80,-33.60,7.02,0.00,1.00,-134.40,-33.60,0 --120.00,-33.60,7.06,0.00,1.00,-129.60,-33.60,0 --115.20,-33.60,7.10,0.00,1.00,-120.00,-38.40,0 --110.40,-33.60,7.14,0.00,1.00,-115.20,-38.40,0 --105.60,-38.40,7.18,0.00,1.00,-105.60,-38.40,0 --96.00,-38.40,7.22,0.00,1.00,-100.80,-38.40,0 --91.20,-38.40,7.26,0.00,1.00,-91.20,-38.40,0 --86.40,-38.40,7.30,0.00,1.00,-86.40,-38.40,0 --81.60,-38.40,7.34,0.00,1.00,-76.80,-38.40,0 --72.00,-38.40,7.38,0.00,1.00,-67.20,-38.40,0 --67.20,-33.60,7.42,0.00,1.00,-62.40,-33.60,0 --62.40,-33.60,7.46,0.00,1.00,-52.80,-33.60,0 --57.60,-33.60,7.50,0.00,1.00,-48.00,-33.60,0 --52.80,-28.80,7.54,0.00,1.00,-43.20,-28.80,0 --48.00,-28.80,7.58,0.00,1.00,-38.40,-28.80,0 --43.20,-28.80,7.62,0.00,1.00,-33.60,-24.00,0 --38.40,-24.00,7.66,0.00,1.00,-28.80,-24.00,0 --33.60,-24.00,7.70,0.00,1.00,-24.00,-19.20,0 --28.80,-19.20,7.74,0.00,1.00,-24.00,-19.20,0 --24.00,-19.20,7.78,0.00,1.00,-19.20,-14.40,0 --19.20,-14.40,7.82,0.00,1.00,-14.40,-9.60,0 --14.40,-9.60,7.86,0.00,1.00,-9.60,-9.60,0 --9.60,-9.60,7.90,0.00,1.00,-9.60,-4.80,0 --9.60,-4.80,7.94,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,7.98,0.00,1.00,-4.80,0.00,0 -0.00,0.00,8.02,0.00,1.00,0.00,4.80,0 -4.80,4.80,8.06,0.00,1.00,4.80,4.80,0 -9.60,4.80,8.10,0.00,1.00,4.80,9.60,0 -14.40,9.60,8.14,0.00,1.00,9.60,9.60,0 -14.40,9.60,8.18,0.00,1.00,9.60,14.40,0 -19.20,14.40,8.22,0.00,1.00,14.40,14.40,0 -24.00,14.40,8.26,0.00,1.00,14.40,19.20,0 -28.80,19.20,8.30,0.00,1.00,19.20,19.20,0 -33.60,19.20,8.34,0.00,1.00,24.00,24.00,0 -38.40,19.20,8.38,0.00,1.00,28.80,24.00,0 -43.20,24.00,8.42,0.00,1.00,28.80,24.00,0 -48.00,24.00,8.46,0.00,1.00,33.60,28.80,0 -52.80,28.80,8.50,0.00,1.00,38.40,28.80,0 -57.60,28.80,8.54,0.00,1.00,48.00,28.80,0 -62.40,28.80,8.58,0.00,1.00,52.80,33.60,0 -67.20,28.80,8.62,0.00,1.00,57.60,33.60,0 -76.80,33.60,8.66,0.00,1.00,67.20,33.60,0 -81.60,33.60,8.70,0.00,1.00,76.80,33.60,0 -86.40,33.60,8.74,0.00,1.00,81.60,33.60,0 -91.20,33.60,8.78,0.00,1.00,91.20,33.60,0 -96.00,33.60,8.82,0.00,1.00,100.80,33.60,0 -100.80,33.60,8.86,0.00,1.00,110.40,33.60,0 -110.40,28.80,8.90,0.00,1.00,115.20,33.60,0 -115.20,28.80,8.94,0.00,1.00,124.80,28.80,0 -120.00,28.80,8.98,0.00,1.00,129.60,28.80,0 -124.80,28.80,9.02,0.00,1.00,139.20,28.80,0 -129.60,24.00,9.06,0.00,1.00,144.00,24.00,0 -134.40,24.00,9.10,0.00,1.00,148.80,24.00,0 -139.20,24.00,9.14,0.00,1.00,153.60,19.20,0 -144.00,19.20,9.18,0.00,1.00,153.60,19.20,0 -148.80,19.20,9.22,0.00,1.00,158.40,14.40,0 -153.60,14.40,9.26,0.00,1.00,163.20,14.40,0 -158.40,14.40,9.30,0.00,1.00,163.20,9.60,0 -163.20,9.60,9.34,0.00,1.00,168.00,9.60,0 -168.00,9.60,9.38,0.00,1.00,172.80,4.80,0 -168.00,4.80,9.42,0.00,1.00,172.80,4.80,0 -172.80,4.80,9.46,0.00,1.00,177.60,0.00,0 -177.60,0.00,9.50,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,9.54,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,9.58,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,9.62,0.00,1.00,-172.80,-9.60,0 --168.00,-9.60,9.66,0.00,1.00,-172.80,-9.60,0 --163.20,-9.60,9.70,0.00,1.00,-168.00,-14.40,0 --158.40,-14.40,9.74,0.00,1.00,-163.20,-14.40,0 --153.60,-14.40,9.78,0.00,1.00,-163.20,-19.20,0 --148.80,-19.20,9.82,0.00,1.00,-158.40,-19.20,0 --144.00,-19.20,9.86,0.00,1.00,-153.60,-24.00,0 --139.20,-24.00,9.90,0.00,1.00,-153.60,-24.00,0 --134.40,-24.00,9.94,0.00,1.00,-148.80,-28.80,0 --129.60,-24.00,9.98,0.00,1.00,-144.00,-28.80,0 --124.80,-28.80,10.03,0.00,1.00,-139.20,-28.80,0 --120.00,-28.80,10.07,0.00,1.00,-129.60,-33.60,0 --115.20,-28.80,10.11,0.00,1.00,-124.80,-33.60,0 --110.40,-28.80,10.15,0.00,1.00,-115.20,-33.60,0 --100.80,-33.60,10.19,0.00,1.00,-110.40,-33.60,0 --96.00,-33.60,10.23,0.00,1.00,-100.80,-33.60,0 --91.20,-33.60,10.27,0.00,1.00,-91.20,-33.60,0 --86.40,-33.60,10.31,0.00,1.00,-81.60,-33.60,0 --81.60,-33.60,10.35,0.00,1.00,-76.80,-33.60,0 --76.80,-33.60,10.39,0.00,1.00,-67.20,-33.60,0 --67.20,-28.80,10.43,0.00,1.00,-57.60,-28.80,0 --62.40,-28.80,10.47,0.00,1.00,-52.80,-28.80,0 --57.60,-28.80,10.51,0.00,1.00,-48.00,-28.80,0 --52.80,-28.80,10.55,0.00,1.00,-38.40,-24.00,0 --48.00,-24.00,10.59,0.00,1.00,-33.60,-24.00,0 --43.20,-24.00,10.63,0.00,1.00,-28.80,-24.00,0 --38.40,-19.20,10.67,0.00,1.00,-28.80,-19.20,0 --33.60,-19.20,10.71,0.00,1.00,-24.00,-19.20,0 --28.80,-19.20,10.75,0.00,1.00,-19.20,-14.40,0 --24.00,-14.40,10.79,0.00,1.00,-14.40,-14.40,0 --19.20,-14.40,10.83,0.00,1.00,-14.40,-9.60,0 --14.40,-9.60,10.87,0.00,1.00,-9.60,-9.60,0 --14.40,-9.60,10.91,0.00,1.00,-9.60,-4.80,0 --9.60,-4.80,10.95,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,10.99,0.00,1.00,-4.80,0.00,0 -0.00,0.00,11.03,0.00,1.00,0.00,0.00,0 -4.80,0.00,11.07,0.00,1.00,0.00,4.80,0 -9.60,4.80,11.11,0.00,1.00,4.80,4.80,0 -14.40,4.80,11.15,0.00,1.00,4.80,9.60,0 -19.20,9.60,11.19,0.00,1.00,9.60,9.60,0 -19.20,9.60,11.23,0.00,1.00,9.60,14.40,0 -24.00,14.40,11.27,0.00,1.00,14.40,14.40,0 -28.80,14.40,11.31,0.00,1.00,19.20,19.20,0 -33.60,14.40,11.35,0.00,1.00,19.20,19.20,0 -38.40,19.20,11.39,0.00,1.00,24.00,19.20,0 -43.20,19.20,11.43,0.00,1.00,28.80,24.00,0 -48.00,24.00,11.47,0.00,1.00,33.60,24.00,0 -52.80,24.00,11.51,0.00,1.00,38.40,24.00,0 -57.60,24.00,11.55,0.00,1.00,43.20,24.00,0 -62.40,24.00,11.59,0.00,1.00,48.00,28.80,0 -72.00,24.00,11.63,0.00,1.00,52.80,28.80,0 -76.80,28.80,11.67,0.00,1.00,62.40,28.80,0 -81.60,28.80,11.71,0.00,1.00,72.00,28.80,0 -86.40,28.80,11.75,0.00,1.00,81.60,28.80,0 -91.20,28.80,11.79,0.00,1.00,91.20,28.80,0 -96.00,28.80,11.83,0.00,1.00,100.80,28.80,0 -100.80,28.80,11.87,0.00,1.00,110.40,28.80,0 -105.60,28.80,11.91,0.00,1.00,120.00,28.80,0 -110.40,24.00,11.95,0.00,1.00,129.60,24.00,0 -120.00,24.00,11.99,0.00,1.00,134.40,24.00,0 -124.80,24.00,12.03,0.00,1.00,139.20,24.00,0 -129.60,24.00,12.07,0.00,1.00,144.00,24.00,0 -134.40,19.20,12.11,0.00,1.00,148.80,19.20,0 -139.20,19.20,12.15,0.00,1.00,153.60,19.20,0 -144.00,19.20,12.19,0.00,1.00,158.40,14.40,0 -148.80,14.40,12.23,0.00,1.00,163.20,14.40,0 -153.60,14.40,12.27,0.00,1.00,163.20,14.40,0 -158.40,9.60,12.31,0.00,1.00,168.00,9.60,0 -158.40,9.60,12.35,0.00,1.00,168.00,9.60,0 -163.20,9.60,12.39,0.00,1.00,172.80,4.80,0 -168.00,4.80,12.43,0.00,1.00,172.80,4.80,0 -172.80,4.80,12.47,0.00,1.00,177.60,0.00,0 -177.60,0.00,12.51,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,12.55,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,12.59,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,12.63,0.00,1.00,-172.80,-9.60,0 --163.20,-9.60,12.67,0.00,1.00,-172.80,-9.60,0 --158.40,-9.60,12.71,0.00,1.00,-168.00,-14.40,0 --158.40,-9.60,12.75,0.00,1.00,-168.00,-14.40,0 --153.60,-14.40,12.79,0.00,1.00,-163.20,-14.40,0 --148.80,-14.40,12.83,0.00,1.00,-163.20,-19.20,0 --144.00,-19.20,12.87,0.00,1.00,-158.40,-19.20,0 --139.20,-19.20,12.91,0.00,1.00,-153.60,-24.00,0 --134.40,-19.20,12.95,0.00,1.00,-148.80,-24.00,0 --129.60,-24.00,12.99,0.00,1.00,-144.00,-24.00,0 --124.80,-24.00,13.03,0.00,1.00,-139.20,-24.00,0 --120.00,-24.00,13.07,0.00,1.00,-134.40,-28.80,0 --110.40,-24.00,13.11,0.00,1.00,-129.60,-28.80,0 --105.60,-28.80,13.15,0.00,1.00,-120.00,-28.80,0 --100.80,-28.80,13.19,0.00,1.00,-110.40,-28.80,0 --96.00,-28.80,13.23,0.00,1.00,-100.80,-28.80,0 --91.20,-28.80,13.27,0.00,1.00,-91.20,-28.80,0 --86.40,-28.80,13.31,0.00,1.00,-81.60,-28.80,0 --81.60,-28.80,13.35,0.00,1.00,-72.00,-28.80,0 --76.80,-28.80,13.39,0.00,1.00,-62.40,-28.80,0 --72.00,-24.00,13.43,0.00,1.00,-52.80,-24.00,0 --62.40,-24.00,13.47,0.00,1.00,-48.00,-24.00,0 --57.60,-24.00,13.51,0.00,1.00,-43.20,-24.00,0 --52.80,-24.00,13.55,0.00,1.00,-38.40,-24.00,0 --48.00,-24.00,13.59,0.00,1.00,-33.60,-19.20,0 --43.20,-19.20,13.63,0.00,1.00,-28.80,-19.20,0 --38.40,-19.20,13.67,0.00,1.00,-24.00,-19.20,0 --33.60,-14.40,13.71,0.00,1.00,-19.20,-14.40,0 --28.80,-14.40,13.75,0.00,1.00,-19.20,-14.40,0 --24.00,-14.40,13.79,0.00,1.00,-14.40,-9.60,0 --19.20,-9.60,13.83,0.00,1.00,-9.60,-9.60,0 --19.20,-9.60,13.87,0.00,1.00,-9.60,-4.80,0 --14.40,-4.80,13.91,0.00,1.00,-4.80,-4.80,0 --9.60,-4.80,13.95,0.00,1.00,-4.80,-0.00,0 --4.80,-0.00,13.99,0.00,1.00,-0.00,0.00,0 -0.00,0.00,14.04,0.00,1.00,0.00,0.00,0 -4.80,0.00,14.08,0.00,1.00,0.00,4.80,0 -9.60,4.80,14.12,0.00,1.00,4.80,4.80,0 -14.40,4.80,14.16,0.00,1.00,4.80,9.60,0 -19.20,9.60,14.20,0.00,1.00,9.60,9.60,0 -24.00,9.60,14.24,0.00,1.00,9.60,9.60,0 -28.80,9.60,14.28,0.00,1.00,14.40,14.40,0 -33.60,14.40,14.32,0.00,1.00,14.40,14.40,0 -38.40,14.40,14.36,0.00,1.00,19.20,14.40,0 -43.20,14.40,14.40,0.00,1.00,19.20,19.20,0 -48.00,14.40,14.44,0.00,1.00,24.00,19.20,0 -52.80,19.20,14.48,0.00,1.00,28.80,19.20,0 -57.60,19.20,14.52,0.00,1.00,33.60,19.20,0 -62.40,19.20,14.56,0.00,1.00,38.40,24.00,0 -67.20,19.20,14.60,0.00,1.00,43.20,24.00,0 -72.00,24.00,14.64,0.00,1.00,48.00,24.00,0 -76.80,24.00,14.68,0.00,1.00,57.60,24.00,0 -81.60,24.00,14.72,0.00,1.00,67.20,24.00,0 -86.40,24.00,14.76,0.00,1.00,81.60,24.00,0 -91.20,24.00,14.80,0.00,1.00,91.20,24.00,0 -96.00,24.00,14.84,0.00,1.00,105.60,24.00,0 -100.80,24.00,14.88,0.00,1.00,115.20,24.00,0 -105.60,24.00,14.92,0.00,1.00,124.80,24.00,0 -110.40,19.20,14.96,0.00,1.00,134.40,19.20,0 -115.20,19.20,15.00,0.00,1.00,139.20,19.20,0 -120.00,19.20,15.04,0.00,1.00,144.00,19.20,0 -124.80,19.20,15.08,0.00,1.00,148.80,19.20,0 -129.60,19.20,15.12,0.00,1.00,153.60,19.20,0 -134.40,14.40,15.16,0.00,1.00,158.40,14.40,0 -139.20,14.40,15.20,0.00,1.00,163.20,14.40,0 -144.00,14.40,15.24,0.00,1.00,163.20,14.40,0 -148.80,9.60,15.28,0.00,1.00,168.00,9.60,0 -153.60,9.60,15.32,0.00,1.00,168.00,9.60,0 -158.40,9.60,15.36,0.00,1.00,172.80,4.80,0 -163.20,4.80,15.40,0.00,1.00,172.80,4.80,0 -168.00,4.80,15.44,0.00,1.00,177.60,4.80,0 -172.80,4.80,15.48,0.00,1.00,177.60,0.00,0 -177.60,0.00,15.52,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,15.56,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,15.60,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,15.64,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,15.68,0.00,1.00,-172.80,-9.60,0 --158.40,-9.60,15.72,0.00,1.00,-172.80,-9.60,0 --153.60,-9.60,15.76,0.00,1.00,-168.00,-14.40,0 --148.80,-9.60,15.80,0.00,1.00,-168.00,-14.40,0 --144.00,-14.40,15.84,0.00,1.00,-163.20,-14.40,0 --139.20,-14.40,15.88,0.00,1.00,-163.20,-19.20,0 --134.40,-14.40,15.92,0.00,1.00,-158.40,-19.20,0 --129.60,-19.20,15.96,0.00,1.00,-153.60,-19.20,0 --124.80,-19.20,16.00,0.00,1.00,-148.80,-19.20,0 --120.00,-19.20,16.00,0.00,1.00,-144.00,-19.20,0 --115.20,-19.20,15.96,0.00,1.00,-139.20,-24.00,0 --110.40,-19.20,15.92,0.00,1.00,-134.40,-24.00,0 --105.60,-24.00,15.88,0.00,1.00,-124.80,-24.00,0 --100.80,-24.00,15.84,0.00,1.00,-115.20,-24.00,0 --96.00,-24.00,15.80,0.00,1.00,-105.60,-24.00,0 --91.20,-24.00,15.76,0.00,1.00,-91.20,-24.00,0 --86.40,-24.00,15.72,0.00,1.00,-81.60,-24.00,0 --81.60,-24.00,15.68,0.00,1.00,-67.20,-24.00,0 --76.80,-24.00,15.64,0.00,1.00,-57.60,-24.00,0 --72.00,-24.00,15.60,0.00,1.00,-48.00,-24.00,0 --67.20,-19.20,15.56,0.00,1.00,-43.20,-19.20,0 --62.40,-19.20,15.52,0.00,1.00,-38.40,-19.20,0 --57.60,-19.20,15.48,0.00,1.00,-33.60,-19.20,0 --52.80,-19.20,15.44,0.00,1.00,-28.80,-19.20,0 --48.00,-14.40,15.40,0.00,1.00,-24.00,-14.40,0 --43.20,-14.40,15.36,0.00,1.00,-19.20,-14.40,0 --38.40,-14.40,15.32,0.00,1.00,-19.20,-14.40,0 --33.60,-14.40,15.28,0.00,1.00,-14.40,-9.60,0 --28.80,-9.60,15.24,0.00,1.00,-14.40,-9.60,0 --24.00,-9.60,15.20,0.00,1.00,-9.60,-9.60,0 --19.20,-9.60,15.16,0.00,1.00,-9.60,-4.80,0 --14.40,-4.80,15.12,0.00,1.00,-4.80,-4.80,0 --9.60,-4.80,15.08,0.00,1.00,-4.80,-0.00,0 --4.80,-0.00,15.04,0.00,1.00,-0.00,0.00,0 -0.00,0.00,15.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,14.96,0.00,1.00,0.00,4.80,0 -9.60,4.80,14.92,0.00,1.00,4.80,4.80,0 -14.40,4.80,14.88,0.00,1.00,4.80,4.80,0 -19.20,4.80,14.84,0.00,1.00,4.80,9.60,0 -24.00,9.60,14.80,0.00,1.00,9.60,9.60,0 -28.80,9.60,14.76,0.00,1.00,9.60,9.60,0 -33.60,9.60,14.72,0.00,1.00,9.60,9.60,0 -38.40,9.60,14.68,0.00,1.00,14.40,14.40,0 -43.20,14.40,14.64,0.00,1.00,14.40,14.40,0 -48.00,14.40,14.60,0.00,1.00,19.20,14.40,0 -52.80,14.40,14.56,0.00,1.00,24.00,14.40,0 -57.60,14.40,14.52,0.00,1.00,24.00,19.20,0 -62.40,14.40,14.48,0.00,1.00,28.80,19.20,0 -67.20,14.40,14.44,0.00,1.00,38.40,19.20,0 -72.00,19.20,14.40,0.00,1.00,43.20,19.20,0 -76.80,19.20,14.36,0.00,1.00,52.80,19.20,0 -81.60,19.20,14.32,0.00,1.00,62.40,19.20,0 -86.40,19.20,14.28,0.00,1.00,76.80,19.20,0 -91.20,19.20,14.24,0.00,1.00,96.00,19.20,0 -96.00,19.20,14.20,0.00,1.00,110.40,19.20,0 -100.80,19.20,14.16,0.00,1.00,120.00,19.20,0 -105.60,19.20,14.12,0.00,1.00,134.40,19.20,0 -110.40,19.20,14.08,0.00,1.00,139.20,19.20,0 -115.20,14.40,14.04,0.00,1.00,148.80,14.40,0 -120.00,14.40,13.99,0.00,1.00,153.60,14.40,0 -124.80,14.40,13.95,0.00,1.00,158.40,14.40,0 -129.60,14.40,13.91,0.00,1.00,158.40,14.40,0 -134.40,14.40,13.87,0.00,1.00,163.20,14.40,0 -139.20,9.60,13.83,0.00,1.00,163.20,9.60,0 -144.00,9.60,13.79,0.00,1.00,168.00,9.60,0 -148.80,9.60,13.75,0.00,1.00,168.00,9.60,0 -153.60,9.60,13.71,0.00,1.00,172.80,4.80,0 -158.40,4.80,13.67,0.00,1.00,172.80,4.80,0 -163.20,4.80,13.63,0.00,1.00,172.80,4.80,0 -168.00,4.80,13.59,0.00,1.00,177.60,0.00,0 -172.80,0.00,13.55,0.00,1.00,177.60,0.00,0 -177.60,0.00,13.51,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,13.47,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,13.43,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,13.39,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,13.35,0.00,1.00,-172.80,-4.80,0 --158.40,-4.80,13.31,0.00,1.00,-172.80,-9.60,0 --153.60,-9.60,13.27,0.00,1.00,-172.80,-9.60,0 --148.80,-9.60,13.23,0.00,1.00,-168.00,-9.60,0 --144.00,-9.60,13.19,0.00,1.00,-168.00,-14.40,0 --139.20,-9.60,13.15,0.00,1.00,-163.20,-14.40,0 --134.40,-14.40,13.11,0.00,1.00,-163.20,-14.40,0 --129.60,-14.40,13.07,0.00,1.00,-158.40,-14.40,0 --124.80,-14.40,13.03,0.00,1.00,-158.40,-14.40,0 --120.00,-14.40,12.99,0.00,1.00,-153.60,-19.20,0 --115.20,-14.40,12.95,0.00,1.00,-148.80,-19.20,0 --110.40,-19.20,12.91,0.00,1.00,-139.20,-19.20,0 --105.60,-19.20,12.87,0.00,1.00,-134.40,-19.20,0 --100.80,-19.20,12.83,0.00,1.00,-120.00,-19.20,0 --96.00,-19.20,12.79,0.00,1.00,-110.40,-19.20,0 --91.20,-19.20,12.75,0.00,1.00,-96.00,-19.20,0 --86.40,-19.20,12.71,0.00,1.00,-76.80,-19.20,0 --81.60,-19.20,12.67,0.00,1.00,-62.40,-19.20,0 --76.80,-19.20,12.63,0.00,1.00,-52.80,-19.20,0 --72.00,-19.20,12.59,0.00,1.00,-43.20,-19.20,0 --67.20,-14.40,12.55,0.00,1.00,-38.40,-19.20,0 --62.40,-14.40,12.51,0.00,1.00,-28.80,-14.40,0 --57.60,-14.40,12.47,0.00,1.00,-24.00,-14.40,0 --52.80,-14.40,12.43,0.00,1.00,-24.00,-14.40,0 --48.00,-14.40,12.39,0.00,1.00,-19.20,-14.40,0 --43.20,-14.40,12.35,0.00,1.00,-14.40,-9.60,0 --38.40,-9.60,12.31,0.00,1.00,-14.40,-9.60,0 --33.60,-9.60,12.27,0.00,1.00,-9.60,-9.60,0 --28.80,-9.60,12.23,0.00,1.00,-9.60,-9.60,0 --24.00,-9.60,12.19,0.00,1.00,-9.60,-4.80,0 --19.20,-4.80,12.15,0.00,1.00,-4.80,-4.80,0 --14.40,-4.80,12.11,0.00,1.00,-4.80,-4.80,0 --9.60,-4.80,12.07,0.00,1.00,-4.80,-0.00,0 --4.80,-0.00,12.03,0.00,1.00,-0.00,0.00,0 -0.00,0.00,11.99,0.00,1.00,0.00,0.00,0 -4.80,0.00,11.95,0.00,1.00,0.00,0.00,0 -9.60,0.00,11.91,0.00,1.00,0.00,4.80,0 -14.40,4.80,11.87,0.00,1.00,4.80,4.80,0 -19.20,4.80,11.83,0.00,1.00,4.80,4.80,0 -24.00,4.80,11.79,0.00,1.00,4.80,4.80,0 -28.80,4.80,11.75,0.00,1.00,4.80,9.60,0 -33.60,9.60,11.71,0.00,1.00,9.60,9.60,0 -38.40,9.60,11.67,0.00,1.00,9.60,9.60,0 -43.20,9.60,11.63,0.00,1.00,14.40,9.60,0 -48.00,9.60,11.59,0.00,1.00,14.40,9.60,0 -52.80,9.60,11.55,0.00,1.00,14.40,14.40,0 -57.60,9.60,11.51,0.00,1.00,19.20,14.40,0 -62.40,9.60,11.47,0.00,1.00,24.00,14.40,0 -67.20,14.40,11.43,0.00,1.00,28.80,14.40,0 -72.00,14.40,11.39,0.00,1.00,33.60,14.40,0 -76.80,14.40,11.35,0.00,1.00,43.20,14.40,0 -81.60,14.40,11.31,0.00,1.00,57.60,14.40,0 -86.40,14.40,11.27,0.00,1.00,76.80,14.40,0 -91.20,14.40,11.23,0.00,1.00,96.00,14.40,0 -96.00,14.40,11.19,0.00,1.00,115.20,14.40,0 -100.80,14.40,11.15,0.00,1.00,129.60,14.40,0 -105.60,14.40,11.11,0.00,1.00,139.20,14.40,0 -110.40,14.40,11.07,0.00,1.00,148.80,14.40,0 -115.20,9.60,11.03,0.00,1.00,153.60,14.40,0 -120.00,9.60,10.99,0.00,1.00,158.40,9.60,0 -124.80,9.60,10.95,0.00,1.00,163.20,9.60,0 -129.60,9.60,10.91,0.00,1.00,163.20,9.60,0 -134.40,9.60,10.87,0.00,1.00,168.00,9.60,0 -139.20,9.60,10.83,0.00,1.00,168.00,9.60,0 -144.00,9.60,10.79,0.00,1.00,172.80,9.60,0 -148.80,4.80,10.75,0.00,1.00,172.80,4.80,0 -153.60,4.80,10.71,0.00,1.00,172.80,4.80,0 -158.40,4.80,10.67,0.00,1.00,172.80,4.80,0 -163.20,4.80,10.63,0.00,1.00,177.60,4.80,0 -168.00,4.80,10.59,0.00,1.00,177.60,0.00,0 -172.80,0.00,10.55,0.00,1.00,177.60,0.00,0 -177.60,0.00,10.51,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.47,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,10.43,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,10.39,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,10.35,0.00,1.00,-177.60,-4.80,0 --158.40,-4.80,10.31,0.00,1.00,-172.80,-4.80,0 --153.60,-4.80,10.27,0.00,1.00,-172.80,-9.60,0 --148.80,-4.80,10.23,0.00,1.00,-172.80,-9.60,0 --144.00,-9.60,10.19,0.00,1.00,-172.80,-9.60,0 --139.20,-9.60,10.15,0.00,1.00,-168.00,-9.60,0 --134.40,-9.60,10.11,0.00,1.00,-168.00,-9.60,0 --129.60,-9.60,10.07,0.00,1.00,-163.20,-9.60,0 --124.80,-9.60,10.03,0.00,1.00,-163.20,-14.40,0 --120.00,-9.60,9.98,0.00,1.00,-158.40,-14.40,0 --115.20,-9.60,9.94,0.00,1.00,-153.60,-14.40,0 --110.40,-14.40,9.90,0.00,1.00,-148.80,-14.40,0 --105.60,-14.40,9.86,0.00,1.00,-139.20,-14.40,0 --100.80,-14.40,9.82,0.00,1.00,-129.60,-14.40,0 --96.00,-14.40,9.78,0.00,1.00,-115.20,-14.40,0 --91.20,-14.40,9.74,0.00,1.00,-96.00,-14.40,0 --86.40,-14.40,9.70,0.00,1.00,-76.80,-14.40,0 --81.60,-14.40,9.66,0.00,1.00,-57.60,-14.40,0 --76.80,-14.40,9.62,0.00,1.00,-43.20,-14.40,0 --72.00,-14.40,9.58,0.00,1.00,-33.60,-14.40,0 --67.20,-14.40,9.54,0.00,1.00,-28.80,-14.40,0 --62.40,-9.60,9.50,0.00,1.00,-24.00,-14.40,0 --57.60,-9.60,9.46,0.00,1.00,-19.20,-9.60,0 --52.80,-9.60,9.42,0.00,1.00,-14.40,-9.60,0 --48.00,-9.60,9.38,0.00,1.00,-14.40,-9.60,0 --43.20,-9.60,9.34,0.00,1.00,-14.40,-9.60,0 --38.40,-9.60,9.30,0.00,1.00,-9.60,-9.60,0 --33.60,-9.60,9.26,0.00,1.00,-9.60,-4.80,0 --28.80,-4.80,9.22,0.00,1.00,-4.80,-4.80,0 --24.00,-4.80,9.18,0.00,1.00,-4.80,-4.80,0 --19.20,-4.80,9.14,0.00,1.00,-4.80,-4.80,0 --14.40,-4.80,9.10,0.00,1.00,-4.80,-0.00,0 --9.60,-0.00,9.06,0.00,1.00,-0.00,-0.00,0 --4.80,-0.00,9.02,0.00,1.00,-0.00,0.00,0 -0.00,0.00,8.98,0.00,1.00,0.00,0.00,0 -4.80,0.00,8.94,0.00,1.00,0.00,0.00,0 -9.60,0.00,8.90,0.00,1.00,0.00,0.00,0 -14.40,0.00,8.86,0.00,1.00,0.00,4.80,0 -19.20,4.80,8.82,0.00,1.00,4.80,4.80,0 -24.00,4.80,8.78,0.00,1.00,4.80,4.80,0 -28.80,4.80,8.74,0.00,1.00,4.80,4.80,0 -33.60,4.80,8.70,0.00,1.00,4.80,4.80,0 -38.40,4.80,8.66,0.00,1.00,4.80,4.80,0 -43.20,4.80,8.62,0.00,1.00,9.60,4.80,0 -48.00,4.80,8.58,0.00,1.00,9.60,9.60,0 -52.80,4.80,8.54,0.00,1.00,9.60,9.60,0 -57.60,4.80,8.50,0.00,1.00,14.40,9.60,0 -62.40,9.60,8.46,0.00,1.00,14.40,9.60,0 -67.20,9.60,8.42,0.00,1.00,19.20,9.60,0 -72.00,9.60,8.38,0.00,1.00,24.00,9.60,0 -76.80,9.60,8.34,0.00,1.00,33.60,9.60,0 -81.60,9.60,8.30,0.00,1.00,43.20,9.60,0 -86.40,9.60,8.26,0.00,1.00,67.20,9.60,0 -91.20,9.60,8.22,0.00,1.00,96.00,9.60,0 -96.00,9.60,8.18,0.00,1.00,124.80,9.60,0 -100.80,9.60,8.14,0.00,1.00,144.00,9.60,0 -105.60,9.60,8.10,0.00,1.00,153.60,9.60,0 -110.40,9.60,8.06,0.00,1.00,158.40,9.60,0 -115.20,9.60,8.02,0.00,1.00,163.20,9.60,0 -120.00,9.60,7.98,0.00,1.00,168.00,9.60,0 -124.80,4.80,7.94,0.00,1.00,168.00,9.60,0 -129.60,4.80,7.90,0.00,1.00,168.00,4.80,0 -134.40,4.80,7.86,0.00,1.00,172.80,4.80,0 -139.20,4.80,7.82,0.00,1.00,172.80,4.80,0 -144.00,4.80,7.78,0.00,1.00,172.80,4.80,0 -148.80,4.80,7.74,0.00,1.00,172.80,4.80,0 -153.60,4.80,7.70,0.00,1.00,177.60,4.80,0 -158.40,4.80,7.66,0.00,1.00,177.60,4.80,0 -163.20,4.80,7.62,0.00,1.00,177.60,0.00,0 -168.00,0.00,7.58,0.00,1.00,177.60,0.00,0 -172.80,0.00,7.54,0.00,1.00,177.60,0.00,0 -177.60,0.00,7.50,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,7.46,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,7.42,0.00,1.00,-177.60,-0.00,0 --168.00,-0.00,7.38,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,7.34,0.00,1.00,-177.60,-4.80,0 --158.40,-4.80,7.30,0.00,1.00,-177.60,-4.80,0 --153.60,-4.80,7.26,0.00,1.00,-177.60,-4.80,0 --148.80,-4.80,7.22,0.00,1.00,-172.80,-4.80,0 --144.00,-4.80,7.18,0.00,1.00,-172.80,-4.80,0 --139.20,-4.80,7.14,0.00,1.00,-172.80,-4.80,0 --134.40,-4.80,7.10,0.00,1.00,-172.80,-9.60,0 --129.60,-4.80,7.06,0.00,1.00,-168.00,-9.60,0 --124.80,-4.80,7.02,0.00,1.00,-168.00,-9.60,0 --120.00,-9.60,6.98,0.00,1.00,-168.00,-9.60,0 --115.20,-9.60,6.94,0.00,1.00,-163.20,-9.60,0 --110.40,-9.60,6.90,0.00,1.00,-158.40,-9.60,0 --105.60,-9.60,6.86,0.00,1.00,-153.60,-9.60,0 --100.80,-9.60,6.82,0.00,1.00,-144.00,-9.60,0 --96.00,-9.60,6.78,0.00,1.00,-124.80,-9.60,0 --91.20,-9.60,6.74,0.00,1.00,-96.00,-9.60,0 --86.40,-9.60,6.70,0.00,1.00,-67.20,-9.60,0 --81.60,-9.60,6.66,0.00,1.00,-43.20,-9.60,0 --76.80,-9.60,6.62,0.00,1.00,-33.60,-9.60,0 --72.00,-9.60,6.58,0.00,1.00,-24.00,-9.60,0 --67.20,-9.60,6.54,0.00,1.00,-19.20,-9.60,0 --62.40,-9.60,6.50,0.00,1.00,-14.40,-9.60,0 --57.60,-4.80,6.46,0.00,1.00,-14.40,-9.60,0 --52.80,-4.80,6.42,0.00,1.00,-9.60,-4.80,0 --48.00,-4.80,6.38,0.00,1.00,-9.60,-4.80,0 --43.20,-4.80,6.34,0.00,1.00,-9.60,-4.80,0 --38.40,-4.80,6.30,0.00,1.00,-4.80,-4.80,0 --33.60,-4.80,6.26,0.00,1.00,-4.80,-4.80,0 --28.80,-4.80,6.22,0.00,1.00,-4.80,-4.80,0 --24.00,-4.80,6.18,0.00,1.00,-4.80,-4.80,0 --19.20,-4.80,6.14,0.00,1.00,-4.80,-0.00,0 --14.40,-0.00,6.10,0.00,1.00,-0.00,-0.00,0 --9.60,-0.00,6.06,0.00,1.00,-0.00,-0.00,0 --4.80,-0.00,6.02,0.00,1.00,-0.00,0.00,0 -0.00,0.00,5.97,0.00,1.00,0.00,0.00,0 -4.80,0.00,5.93,0.00,1.00,0.00,0.00,0 -9.60,0.00,5.89,0.00,1.00,0.00,0.00,0 -14.40,0.00,5.85,0.00,1.00,0.00,0.00,0 -19.20,0.00,5.81,0.00,1.00,0.00,0.00,0 -24.00,0.00,5.77,0.00,1.00,0.00,0.00,0 -28.80,0.00,5.73,0.00,1.00,0.00,4.80,0 -33.60,0.00,5.69,0.00,1.00,0.00,4.80,0 -38.40,0.00,5.65,0.00,1.00,4.80,4.80,0 -43.20,4.80,5.61,0.00,1.00,4.80,4.80,0 -48.00,4.80,5.57,0.00,1.00,4.80,4.80,0 -52.80,4.80,5.53,0.00,1.00,4.80,4.80,0 -57.60,4.80,5.49,0.00,1.00,4.80,4.80,0 -62.40,4.80,5.45,0.00,1.00,4.80,4.80,0 -67.20,4.80,5.41,0.00,1.00,9.60,4.80,0 -72.00,4.80,5.37,0.00,1.00,9.60,4.80,0 -76.80,4.80,5.33,0.00,1.00,14.40,4.80,0 -81.60,4.80,5.29,0.00,1.00,24.00,4.80,0 -86.40,4.80,5.25,0.00,1.00,43.20,4.80,0 -91.20,4.80,5.21,0.00,1.00,110.40,4.80,0 -96.00,4.80,5.17,0.00,1.00,148.80,4.80,0 -100.80,4.80,5.13,0.00,1.00,163.20,4.80,0 -105.60,4.80,5.09,0.00,1.00,168.00,4.80,0 -110.40,4.80,5.05,0.00,1.00,172.80,4.80,0 -115.20,4.80,5.01,0.00,1.00,172.80,4.80,0 -120.00,4.80,4.97,0.00,1.00,172.80,4.80,0 -124.80,4.80,4.93,0.00,1.00,172.80,4.80,0 -129.60,4.80,4.89,0.00,1.00,177.60,4.80,0 -134.40,4.80,4.85,0.00,1.00,177.60,4.80,0 -139.20,0.00,4.81,0.00,1.00,177.60,4.80,0 -144.00,0.00,4.77,0.00,1.00,177.60,4.80,0 -148.80,0.00,4.73,0.00,1.00,177.60,0.00,0 -153.60,0.00,4.69,0.00,1.00,177.60,0.00,0 -158.40,0.00,4.65,0.00,1.00,177.60,0.00,0 -163.20,0.00,4.61,0.00,1.00,177.60,0.00,0 -168.00,0.00,4.57,0.00,1.00,177.60,0.00,0 -172.80,0.00,4.53,0.00,1.00,177.60,0.00,0 -177.60,0.00,4.49,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,4.45,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,4.41,0.00,1.00,-177.60,-0.00,0 --168.00,-0.00,4.37,0.00,1.00,-177.60,-0.00,0 --163.20,-0.00,4.33,0.00,1.00,-177.60,-0.00,0 --158.40,-0.00,4.29,0.00,1.00,-177.60,-0.00,0 --153.60,-0.00,4.25,0.00,1.00,-177.60,-4.80,0 --148.80,-0.00,4.21,0.00,1.00,-177.60,-4.80,0 --144.00,-0.00,4.17,0.00,1.00,-177.60,-4.80,0 --139.20,-0.00,4.13,0.00,1.00,-177.60,-4.80,0 --134.40,-4.80,4.09,0.00,1.00,-177.60,-4.80,0 --129.60,-4.80,4.05,0.00,1.00,-177.60,-4.80,0 --124.80,-4.80,4.01,0.00,1.00,-172.80,-4.80,0 --120.00,-4.80,3.97,0.00,1.00,-172.80,-4.80,0 --115.20,-4.80,3.93,0.00,1.00,-172.80,-4.80,0 --110.40,-4.80,3.89,0.00,1.00,-172.80,-4.80,0 --105.60,-4.80,3.85,0.00,1.00,-168.00,-4.80,0 --100.80,-4.80,3.81,0.00,1.00,-163.20,-4.80,0 --96.00,-4.80,3.77,0.00,1.00,-148.80,-4.80,0 --91.20,-4.80,3.73,0.00,1.00,-110.40,-4.80,0 --86.40,-4.80,3.69,0.00,1.00,-43.20,-4.80,0 --81.60,-4.80,3.65,0.00,1.00,-24.00,-4.80,0 --76.80,-4.80,3.61,0.00,1.00,-14.40,-4.80,0 --72.00,-4.80,3.57,0.00,1.00,-9.60,-4.80,0 --67.20,-4.80,3.53,0.00,1.00,-9.60,-4.80,0 --62.40,-4.80,3.49,0.00,1.00,-4.80,-4.80,0 --57.60,-4.80,3.45,0.00,1.00,-4.80,-4.80,0 --52.80,-4.80,3.41,0.00,1.00,-4.80,-4.80,0 --48.00,-4.80,3.37,0.00,1.00,-4.80,-4.80,0 --43.20,-4.80,3.33,0.00,1.00,-4.80,-4.80,0 --38.40,-0.00,3.29,0.00,1.00,-4.80,-4.80,0 --33.60,-0.00,3.25,0.00,1.00,-0.00,-0.00,0 --28.80,-0.00,3.21,0.00,1.00,-0.00,-0.00,0 --24.00,-0.00,3.17,0.00,1.00,-0.00,-0.00,0 --19.20,-0.00,3.13,0.00,1.00,-0.00,-0.00,0 --14.40,-0.00,3.09,0.00,1.00,-0.00,-0.00,0 --9.60,-0.00,3.05,0.00,1.00,-0.00,-0.00,0 --4.80,-0.00,3.01,0.00,1.00,-0.00,0.00,0 -0.00,0.00,2.97,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,2.93,0.00,1.00,-0.00,0.00,0 -9.60,-0.00,2.89,0.00,1.00,-0.00,0.00,0 -14.40,-0.00,2.85,0.00,1.00,-0.00,0.00,0 -19.20,-0.00,2.81,0.00,1.00,-0.00,0.00,0 -24.00,-0.00,2.77,0.00,1.00,-0.00,0.00,0 -28.80,-0.00,2.73,0.00,1.00,-0.00,0.00,0 -33.60,-0.00,2.69,0.00,1.00,-0.00,0.00,0 -38.40,-0.00,2.65,0.00,1.00,-0.00,0.00,0 -43.20,-0.00,2.61,0.00,1.00,-0.00,0.00,0 -48.00,-0.00,2.57,0.00,1.00,-0.00,0.00,0 -52.80,-0.00,2.53,0.00,1.00,-0.00,0.00,0 -57.60,-0.00,2.49,0.00,1.00,-0.00,0.00,0 -62.40,-0.00,2.45,0.00,1.00,-0.00,0.00,0 -67.20,-0.00,2.41,0.00,1.00,-4.80,0.00,0 -72.00,-0.00,2.37,0.00,1.00,-4.80,0.00,0 -76.80,-0.00,2.33,0.00,1.00,-4.80,0.00,0 -81.60,-0.00,2.29,0.00,1.00,-9.60,0.00,0 -86.40,-0.00,2.25,0.00,1.00,-19.20,0.00,0 -91.20,-0.00,2.21,0.00,1.00,-134.40,0.00,0 -96.00,-0.00,2.17,0.00,1.00,-168.00,0.00,0 -100.80,-0.00,2.13,0.00,1.00,-172.80,0.00,0 -105.60,-0.00,2.09,0.00,1.00,-177.60,0.00,0 -110.40,-0.00,2.05,0.00,1.00,-177.60,0.00,0 -115.20,-0.00,2.01,0.00,1.00,-177.60,0.00,0 -120.00,-0.00,1.96,0.00,1.00,-177.60,0.00,0 -124.80,-0.00,1.92,0.00,1.00,-177.60,0.00,0 -129.60,-0.00,1.88,0.00,1.00,-177.60,0.00,0 -134.40,-0.00,1.84,0.00,1.00,-177.60,0.00,0 -139.20,-0.00,1.80,0.00,1.00,-177.60,0.00,0 -144.00,-0.00,1.76,0.00,1.00,-177.60,0.00,0 -148.80,-0.00,1.72,0.00,1.00,-177.60,0.00,0 -153.60,-0.00,1.68,0.00,1.00,-177.60,0.00,0 -158.40,-0.00,1.64,0.00,1.00,-177.60,0.00,0 -163.20,-0.00,1.60,0.00,1.00,-177.60,0.00,0 -168.00,-0.00,1.56,0.00,1.00,-177.60,0.00,0 -172.80,-0.00,1.52,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,1.48,0.00,1.00,-177.60,0.00,0 --177.60,0.00,1.44,0.00,1.00,177.60,0.00,0 --172.80,0.00,1.40,0.00,1.00,177.60,0.00,0 --168.00,0.00,1.36,0.00,1.00,177.60,0.00,0 --163.20,0.00,1.32,0.00,1.00,177.60,0.00,0 --158.40,0.00,1.28,0.00,1.00,177.60,0.00,0 --153.60,0.00,1.24,0.00,1.00,177.60,0.00,0 --148.80,0.00,1.20,0.00,1.00,177.60,0.00,0 --144.00,0.00,1.16,0.00,1.00,177.60,0.00,0 --139.20,0.00,1.12,0.00,1.00,177.60,0.00,0 --134.40,0.00,1.08,0.00,1.00,177.60,0.00,0 --129.60,0.00,1.04,0.00,1.00,177.60,0.00,0 --124.80,0.00,1.00,0.00,1.00,177.60,0.00,0 --120.00,0.00,0.96,0.00,1.00,177.60,0.00,0 --115.20,0.00,0.92,0.00,1.00,177.60,0.00,0 --110.40,0.00,0.88,0.00,1.00,177.60,0.00,0 --105.60,0.00,0.84,0.00,1.00,177.60,0.00,0 --100.80,0.00,0.80,0.00,1.00,172.80,0.00,0 --96.00,0.00,0.76,0.00,1.00,168.00,0.00,0 --91.20,0.00,0.72,0.00,1.00,134.40,0.00,0 --86.40,0.00,0.68,0.00,1.00,19.20,0.00,0 --81.60,0.00,0.64,0.00,1.00,9.60,0.00,0 --76.80,0.00,0.60,0.00,1.00,4.80,0.00,0 --72.00,0.00,0.56,0.00,1.00,4.80,0.00,0 --67.20,0.00,0.52,0.00,1.00,4.80,0.00,0 --62.40,0.00,0.48,0.00,1.00,0.00,0.00,0 --57.60,0.00,0.44,0.00,1.00,0.00,0.00,0 --52.80,0.00,0.40,0.00,1.00,0.00,0.00,0 --48.00,0.00,0.36,0.00,1.00,0.00,0.00,0 --43.20,0.00,0.32,0.00,1.00,0.00,0.00,0 --38.40,0.00,0.28,0.00,1.00,0.00,0.00,0 --33.60,0.00,0.24,0.00,1.00,0.00,0.00,0 --28.80,0.00,0.20,0.00,1.00,0.00,0.00,0 --24.00,0.00,0.16,0.00,1.00,0.00,0.00,0 --19.20,0.00,0.12,0.00,1.00,0.00,0.00,0 --14.40,0.00,0.08,0.00,1.00,0.00,0.00,0 --9.60,0.00,0.04,0.00,1.00,0.00,0.00,0 --4.80,0.00,0.00,0.00,1.00,0.00,0.00,0 diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC16c.met b/scripts/testv/stvOMASA_4ISM_2MASA1TC16c.met deleted file mode 100644 index 64688774087538a671ebfda830ff11b4f836f438..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_2MASA1TC16c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d125a4c4e3989ac55f9c2617f464431feae4ede9b2e15d087d3271c0a4a56303 -size 319800 diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC16c.wav b/scripts/testv/stvOMASA_4ISM_2MASA1TC16c.wav deleted file mode 100644 index 9520d5e5a92c86799578f69410460d3616d2898b..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_2MASA1TC16c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1b378e677deb8d7cdec4c36d1608c2f39094df74a777313c2ba17d781f5908ee -size 960080 diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC16c_ISM1.csv b/scripts/testv/stvOMASA_4ISM_2MASA1TC16c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_2MASA1TC16c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC16c_ISM2.csv b/scripts/testv/stvOMASA_4ISM_2MASA1TC16c_ISM2.csv deleted file mode 100644 index f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_2MASA1TC16c_ISM2.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,4.80,16.00,0.00,1.00,0.00,0.00,0 -0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0 -0.00,14.40,15.96,0.00,1.00,4.80,9.60,0 -0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0 -0.00,24.00,15.91,0.00,1.00,14.40,19.20,0 -0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0 -0.00,33.60,15.87,0.00,1.00,19.20,28.80,0 -0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0 -0.00,43.20,15.83,0.00,1.00,28.80,38.40,0 -0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0 -0.00,52.80,15.79,0.00,1.00,38.40,48.00,0 -0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0 -0.00,62.40,15.74,0.00,1.00,48.00,57.60,0 -4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0 -4.80,72.00,15.70,0.00,1.00,57.60,67.20,0 -4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0 -9.60,81.60,15.66,0.00,1.00,72.00,76.80,0 -19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0 -134.40,86.40,15.62,0.00,1.00,86.40,86.40,0 -168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0 -172.80,76.80,15.57,0.00,1.00,100.80,86.40,0 -177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0 -177.60,67.20,15.53,0.00,1.00,110.40,76.80,0 -177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0 -177.60,57.60,15.49,0.00,1.00,124.80,67.20,0 -177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0 -177.60,48.00,15.44,0.00,1.00,134.40,57.60,0 -177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0 -177.60,38.40,15.40,0.00,1.00,144.00,48.00,0 -177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0 -177.60,28.80,15.36,0.00,1.00,153.60,38.40,0 -177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0 -177.60,19.20,15.32,0.00,1.00,158.40,28.80,0 -177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0 -177.60,9.60,15.27,0.00,1.00,168.00,19.20,0 -177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0 -177.60,0.00,15.23,0.00,1.00,172.80,9.60,0 --177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0 --177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0 --177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0 --177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0 --177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0 --177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0 --177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0 --177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0 --177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0 --177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0 --177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0 --177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0 --177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0 --177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0 --177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0 --177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0 --172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0 --168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0 --134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0 --19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0 --9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0 --4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0 --4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0 --4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0 --0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0 --0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0 --0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0 --0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0 --0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0 --0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0 --0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0 --0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0 --0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0 --0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0 --0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0 --0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0 --0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0 --0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,14.40,0.00,1.00,0.00,0.00,0 --0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0 --0.00,14.40,14.36,0.00,1.00,9.60,9.60,0 --0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0 --0.00,24.00,14.31,0.00,1.00,14.40,19.20,0 --0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0 --0.00,33.60,14.27,0.00,1.00,24.00,28.80,0 --4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0 --4.80,43.20,14.23,0.00,1.00,28.80,38.40,0 --4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0 --4.80,52.80,14.18,0.00,1.00,38.40,48.00,0 --4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0 --4.80,62.40,14.14,0.00,1.00,48.00,57.60,0 --9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0 --9.60,72.00,14.10,0.00,1.00,62.40,67.20,0 --14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0 --24.00,81.60,14.06,0.00,1.00,72.00,76.80,0 --43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0 --110.40,86.40,14.01,0.00,1.00,86.40,86.40,0 --148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0 --163.20,76.80,13.97,0.00,1.00,96.00,81.60,0 --168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0 --172.80,67.20,13.93,0.00,1.00,110.40,72.00,0 --172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0 --172.80,57.60,13.89,0.00,1.00,120.00,62.40,0 --172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0 --177.60,48.00,13.84,0.00,1.00,134.40,52.80,0 --177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0 --177.60,38.40,13.80,0.00,1.00,144.00,43.20,0 --177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0 --177.60,28.80,13.76,0.00,1.00,148.80,33.60,0 --177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0 --177.60,19.20,13.71,0.00,1.00,158.40,24.00,0 --177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0 --177.60,9.60,13.67,0.00,1.00,168.00,14.40,0 --177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0 --177.60,0.00,13.63,0.00,1.00,172.80,4.80,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0 -177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0 -177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0 -177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0 -177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0 -177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0 -177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0 -172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0 -172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0 -172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0 -172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0 -168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0 -163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0 -148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0 -110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0 -43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0 -24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0 -14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0 -9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0 -9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0 -4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0 -4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0 -4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0 -4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0 -4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0 -0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0 -0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0 -0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0 -0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0 -0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,12.80,0.00,1.00,0.00,0.00,0 --0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0 --0.00,14.40,12.75,0.00,1.00,9.60,9.60,0 --4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0 --4.80,24.00,12.71,0.00,1.00,14.40,19.20,0 --4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0 --4.80,33.60,12.67,0.00,1.00,24.00,28.80,0 --4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0 --9.60,43.20,12.62,0.00,1.00,33.60,38.40,0 --9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0 --9.60,52.80,12.58,0.00,1.00,43.20,48.00,0 --14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0 --14.40,62.40,12.54,0.00,1.00,52.80,57.60,0 --19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0 --24.00,72.00,12.50,0.00,1.00,62.40,67.20,0 --33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0 --43.20,76.80,12.45,0.00,1.00,72.00,72.00,0 --67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0 --96.00,81.60,12.41,0.00,1.00,86.40,81.60,0 --124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0 --144.00,76.80,12.37,0.00,1.00,96.00,76.80,0 --153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0 --158.40,67.20,12.33,0.00,1.00,110.40,72.00,0 --163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0 --168.00,57.60,12.28,0.00,1.00,120.00,62.40,0 --168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0 --168.00,48.00,12.24,0.00,1.00,129.60,52.80,0 --172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0 --172.80,38.40,12.20,0.00,1.00,139.20,43.20,0 --172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0 --172.80,28.80,12.15,0.00,1.00,148.80,33.60,0 --177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0 --177.60,19.20,12.11,0.00,1.00,158.40,24.00,0 --177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0 --177.60,9.60,12.07,0.00,1.00,168.00,14.40,0 --177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0 --177.60,0.00,12.03,0.00,1.00,172.80,4.80,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0 -177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0 -172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0 -172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0 -168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0 -168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0 -168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0 -163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0 -158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0 -153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0 -144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0 -124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0 -96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0 -67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0 -43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0 -33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0 -24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0 -19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0 -14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0 -14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0 -9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0 -9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0 -9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0 -4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0 -4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0 -0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,11.19,0.00,1.00,0.00,0.00,0 --0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0 --4.80,14.40,11.15,0.00,1.00,9.60,9.60,0 --4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0 --4.80,24.00,11.11,0.00,1.00,14.40,19.20,0 --4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0 --9.60,33.60,11.07,0.00,1.00,24.00,28.80,0 --9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0 --14.40,43.20,11.02,0.00,1.00,33.60,38.40,0 --14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0 --14.40,52.80,10.98,0.00,1.00,43.20,48.00,0 --19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0 --24.00,57.60,10.94,0.00,1.00,52.80,52.80,0 --28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0 --33.60,67.20,10.89,0.00,1.00,62.40,62.40,0 --43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0 --57.60,72.00,10.85,0.00,1.00,76.80,72.00,0 --76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0 --96.00,76.80,10.81,0.00,1.00,86.40,76.80,0 --115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0 --129.60,72.00,10.77,0.00,1.00,96.00,76.80,0 --139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0 --148.80,67.20,10.72,0.00,1.00,105.60,67.20,0 --153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0 --158.40,57.60,10.68,0.00,1.00,120.00,62.40,0 --163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0 --163.20,48.00,10.64,0.00,1.00,129.60,52.80,0 --168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0 --168.00,38.40,10.60,0.00,1.00,139.20,43.20,0 --172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0 --172.80,28.80,10.55,0.00,1.00,148.80,33.60,0 --172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0 --172.80,19.20,10.51,0.00,1.00,158.40,24.00,0 --177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0 --177.60,9.60,10.47,0.00,1.00,163.20,14.40,0 --177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0 --177.60,0.00,10.42,0.00,1.00,172.80,4.80,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0 -168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0 -168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0 -163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0 -163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0 -158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0 -153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0 -148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0 -139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0 -129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0 -115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0 -96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0 -76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0 -57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0 -43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0 -33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0 -28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0 -24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0 -19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0 -14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0 -14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0 -14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0 -9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0 -9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0 -4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0 -4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0 -0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,9.59,0.00,1.00,0.00,0.00,0 --4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0 --4.80,14.40,9.55,0.00,1.00,9.60,9.60,0 --4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0 --9.60,24.00,9.51,0.00,1.00,19.20,19.20,0 --9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0 --9.60,33.60,9.46,0.00,1.00,24.00,28.80,0 --14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0 --14.40,38.40,9.42,0.00,1.00,33.60,33.60,0 --19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0 --24.00,48.00,9.38,0.00,1.00,43.20,43.20,0 --24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0 --28.80,57.60,9.34,0.00,1.00,52.80,52.80,0 --38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0 --43.20,62.40,9.29,0.00,1.00,67.20,62.40,0 --52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0 --62.40,72.00,9.25,0.00,1.00,76.80,67.20,0 --76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0 --96.00,72.00,9.21,0.00,1.00,86.40,72.00,0 --110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0 --120.00,67.20,9.16,0.00,1.00,96.00,72.00,0 --134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0 --139.20,62.40,9.12,0.00,1.00,105.60,67.20,0 --148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0 --153.60,57.60,9.08,0.00,1.00,115.20,57.60,0 --158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0 --158.40,48.00,9.04,0.00,1.00,129.60,52.80,0 --163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0 --163.20,38.40,8.99,0.00,1.00,139.20,43.20,0 --168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0 --168.00,28.80,8.95,0.00,1.00,148.80,33.60,0 --172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0 --172.80,19.20,8.91,0.00,1.00,153.60,24.00,0 --172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0 --177.60,9.60,8.87,0.00,1.00,163.20,14.40,0 --177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0 --177.60,0.00,8.82,0.00,1.00,172.80,4.80,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0 -168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0 -163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0 -163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0 -158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0 -158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0 -153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0 -148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0 -139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0 -134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0 -120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0 -110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0 -96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0 -76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0 -62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0 -52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0 -43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0 -38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0 -28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0 -24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0 -24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0 -19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0 -14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0 -14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0 -9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0 -9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0 -9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0 -0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,7.99,0.00,1.00,0.00,0.00,0 --4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0 --4.80,14.40,7.95,0.00,1.00,9.60,9.60,0 --9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0 --9.60,24.00,7.90,0.00,1.00,19.20,19.20,0 --14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0 --14.40,28.80,7.86,0.00,1.00,28.80,24.00,0 --19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0 --19.20,38.40,7.82,0.00,1.00,38.40,33.60,0 --24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0 --28.80,48.00,7.78,0.00,1.00,48.00,43.20,0 --33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0 --38.40,52.80,7.73,0.00,1.00,57.60,52.80,0 --43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0 --48.00,62.40,7.69,0.00,1.00,67.20,57.60,0 --57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0 --67.20,67.20,7.65,0.00,1.00,76.80,62.40,0 --81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0 --91.20,67.20,7.60,0.00,1.00,86.40,67.20,0 --105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0 --115.20,67.20,7.56,0.00,1.00,96.00,67.20,0 --124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0 --134.40,57.60,7.52,0.00,1.00,105.60,62.40,0 --139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0 --144.00,52.80,7.48,0.00,1.00,115.20,57.60,0 --148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0 --153.60,43.20,7.43,0.00,1.00,124.80,48.00,0 --158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0 --163.20,38.40,7.39,0.00,1.00,134.40,38.40,0 --163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0 --168.00,28.80,7.35,0.00,1.00,144.00,33.60,0 --168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0 --172.80,19.20,7.31,0.00,1.00,153.60,24.00,0 --172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0 --177.60,9.60,7.26,0.00,1.00,163.20,14.40,0 --177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0 --177.60,0.00,7.22,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0 -163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0 -158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0 -153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0 -148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0 -144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0 -139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0 -134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0 -124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0 -115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0 -105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0 -91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0 -81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0 -67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0 -57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0 -48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0 -43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0 -38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0 -33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0 -28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0 -24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0 -19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0 -19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0 -14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0 -9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0 -0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,6.39,0.00,1.00,0.00,0.00,0 --4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0 --4.80,14.40,6.34,0.00,1.00,9.60,9.60,0 --9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0 --9.60,19.20,6.30,0.00,1.00,19.20,14.40,0 --14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0 --19.20,28.80,6.26,0.00,1.00,28.80,24.00,0 --19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0 --24.00,38.40,6.22,0.00,1.00,38.40,33.60,0 --28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0 --33.60,43.20,6.17,0.00,1.00,48.00,38.40,0 --38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0 --43.20,52.80,6.13,0.00,1.00,57.60,48.00,0 --48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0 --52.80,57.60,6.09,0.00,1.00,67.20,52.80,0 --62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0 --72.00,62.40,6.05,0.00,1.00,76.80,57.60,0 --81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0 --91.20,62.40,6.00,0.00,1.00,86.40,62.40,0 --100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0 --110.40,62.40,5.96,0.00,1.00,96.00,62.40,0 --120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0 --129.60,57.60,5.92,0.00,1.00,105.60,57.60,0 --134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0 --139.20,48.00,5.87,0.00,1.00,115.20,52.80,0 --144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0 --148.80,43.20,5.83,0.00,1.00,124.80,48.00,0 --153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0 --158.40,33.60,5.79,0.00,1.00,134.40,38.40,0 --163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0 --163.20,28.80,5.75,0.00,1.00,144.00,28.80,0 --168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0 --168.00,19.20,5.70,0.00,1.00,153.60,24.00,0 --172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0 --172.80,9.60,5.66,0.00,1.00,163.20,14.40,0 --177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0 --177.60,0.00,5.62,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0 -163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0 -158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0 -148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0 -144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0 -139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0 -134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0 -129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0 -120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0 -110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0 -100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0 -91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0 -81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0 -72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0 -62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0 -52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0 -48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0 -43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0 -38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0 -33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0 -28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0 -24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0 -19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0 -19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0 -9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0 -4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0 -0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,4.79,0.00,1.00,0.00,0.00,0 --4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0 --9.60,14.40,4.74,0.00,1.00,9.60,9.60,0 --9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0 --14.40,19.20,4.70,0.00,1.00,19.20,14.40,0 --14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0 --19.20,28.80,4.66,0.00,1.00,28.80,24.00,0 --24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0 --28.80,33.60,4.61,0.00,1.00,38.40,28.80,0 --28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0 --33.60,43.20,4.57,0.00,1.00,48.00,38.40,0 --38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0 --48.00,48.00,4.53,0.00,1.00,57.60,43.20,0 --52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0 --57.60,52.80,4.49,0.00,1.00,67.20,48.00,0 --67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0 --76.80,57.60,4.44,0.00,1.00,76.80,52.80,0 --81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0 --91.20,57.60,4.40,0.00,1.00,86.40,57.60,0 --100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0 --110.40,57.60,4.36,0.00,1.00,96.00,57.60,0 --115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0 --124.80,52.80,4.32,0.00,1.00,105.60,52.80,0 --129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0 --139.20,48.00,4.27,0.00,1.00,115.20,48.00,0 --144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0 --148.80,38.40,4.23,0.00,1.00,124.80,43.20,0 --153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0 --153.60,33.60,4.19,0.00,1.00,134.40,38.40,0 --158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0 --163.20,24.00,4.14,0.00,1.00,144.00,28.80,0 --163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0 --168.00,19.20,4.10,0.00,1.00,153.60,24.00,0 --172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0 --172.80,9.60,4.06,0.00,1.00,163.20,14.40,0 --177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0 --177.60,0.00,4.02,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0 -163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0 -163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0 -158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0 -148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0 -144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0 -139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0 -129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0 -124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0 -115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0 -110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0 -100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0 -91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0 -81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0 -76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0 -67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0 -57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0 -52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0 -48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0 -38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0 -33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0 -28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0 -28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0 -24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0 -19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0 -14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0 -14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0 -9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0 -0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.18,0.00,1.00,0.00,0.00,0 --4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0 --9.60,9.60,3.14,0.00,1.00,9.60,9.60,0 --9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0 --14.40,19.20,3.10,0.00,1.00,19.20,14.40,0 --19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0 --24.00,24.00,3.05,0.00,1.00,28.80,24.00,0 --24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0 --28.80,33.60,3.01,0.00,1.00,38.40,28.80,0 --33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0 --38.40,38.40,2.97,0.00,1.00,48.00,33.60,0 --43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0 --48.00,43.20,2.93,0.00,1.00,57.60,43.20,0 --52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0 --62.40,48.00,2.88,0.00,1.00,67.20,48.00,0 --67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0 --76.80,52.80,2.84,0.00,1.00,76.80,48.00,0 --86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0 --91.20,52.80,2.80,0.00,1.00,86.40,52.80,0 --100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0 --105.60,52.80,2.76,0.00,1.00,96.00,52.80,0 --115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0 --120.00,48.00,2.71,0.00,1.00,105.60,48.00,0 --129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0 --134.40,43.20,2.67,0.00,1.00,115.20,43.20,0 --139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0 --144.00,38.40,2.63,0.00,1.00,124.80,38.40,0 --148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0 --153.60,33.60,2.58,0.00,1.00,134.40,33.60,0 --158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0 --158.40,24.00,2.54,0.00,1.00,144.00,28.80,0 --163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0 --168.00,19.20,2.50,0.00,1.00,153.60,19.20,0 --168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.46,0.00,1.00,163.20,14.40,0 --177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.41,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0 -158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0 -148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0 -144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0 -139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0 -134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0 -129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0 -120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0 -115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0 -105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0 -100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0 -91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0 -86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0 -76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0 -67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0 -62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0 -52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0 -48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0 -43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0 -38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0 -33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0 -28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0 -24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0 -24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0 -19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0 -0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.58,0.00,1.00,0.00,0.00,0 --4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.54,0.00,1.00,9.60,4.80,0 --14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0 --14.40,19.20,1.50,0.00,1.00,19.20,14.40,0 --19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0 --24.00,24.00,1.45,0.00,1.00,28.80,19.20,0 --28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0 --33.60,28.80,1.41,0.00,1.00,38.40,28.80,0 --38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0 --43.20,38.40,1.37,0.00,1.00,48.00,33.60,0 --48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0 --52.80,43.20,1.32,0.00,1.00,57.60,38.40,0 --57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0 --62.40,43.20,1.28,0.00,1.00,67.20,43.20,0 --72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0 --76.80,48.00,1.24,0.00,1.00,76.80,43.20,0 --86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0 --91.20,48.00,1.20,0.00,1.00,86.40,48.00,0 --100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0 --105.60,48.00,1.15,0.00,1.00,96.00,48.00,0 --110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0 --120.00,43.20,1.11,0.00,1.00,105.60,43.20,0 --124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0 --129.60,38.40,1.07,0.00,1.00,115.20,43.20,0 --134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0 --139.20,33.60,1.03,0.00,1.00,124.80,38.40,0 --144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0 --148.80,28.80,0.98,0.00,1.00,134.40,33.60,0 --153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0 --158.40,24.00,0.94,0.00,1.00,144.00,24.00,0 --163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0 --163.20,14.40,0.90,0.00,1.00,153.60,19.20,0 --168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.85,0.00,1.00,163.20,14.40,0 --172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.81,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0 -148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0 -144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0 -139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0 -134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0 -129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0 -124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0 -120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0 -110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0 -105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0 -100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0 -91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0 -86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0 -76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0 -72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0 -62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0 -57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0 -52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0 -48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0 -43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0 -38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0 -28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0 -19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0 -0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,0.00,0.00,1.00,0.00,0.00,0 --4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0 --9.60,9.60,0.04,0.00,1.00,9.60,4.80,0 --14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0 --19.20,14.40,0.09,0.00,1.00,19.20,14.40,0 --24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0 --24.00,24.00,0.13,0.00,1.00,28.80,19.20,0 --28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0 --33.60,28.80,0.17,0.00,1.00,38.40,24.00,0 --38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0 --43.20,33.60,0.21,0.00,1.00,48.00,28.80,0 --48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0 --52.80,38.40,0.26,0.00,1.00,57.60,33.60,0 --62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0 --67.20,38.40,0.30,0.00,1.00,67.20,38.40,0 --72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0 --76.80,43.20,0.34,0.00,1.00,76.80,38.40,0 --86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0 --91.20,43.20,0.38,0.00,1.00,86.40,43.20,0 --96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0 --105.60,43.20,0.43,0.00,1.00,96.00,43.20,0 --110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0 --115.20,38.40,0.47,0.00,1.00,105.60,38.40,0 --124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0 --129.60,38.40,0.51,0.00,1.00,115.20,38.40,0 --134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0 --139.20,33.60,0.56,0.00,1.00,124.80,33.60,0 --144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0 --148.80,28.80,0.60,0.00,1.00,134.40,28.80,0 --153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0 --158.40,19.20,0.64,0.00,1.00,144.00,24.00,0 --158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0 --163.20,14.40,0.68,0.00,1.00,153.60,19.20,0 --168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.73,0.00,1.00,163.20,9.60,0 --172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.77,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0 -158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0 -158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0 -148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0 -144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0 -139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0 -134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0 -129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0 -124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0 -115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0 -110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0 -105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0 -96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0 -91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0 -86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0 -76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0 -72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0 -67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0 -62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0 -52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0 -48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0 -43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0 -38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0 -28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0 -19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0 -0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.60,0.00,1.00,0.00,0.00,0 --9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.64,0.00,1.00,9.60,4.80,0 --14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0 --19.20,14.40,1.69,0.00,1.00,19.20,9.60,0 --24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0 --28.80,19.20,1.73,0.00,1.00,28.80,19.20,0 --33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0 --38.40,24.00,1.77,0.00,1.00,38.40,24.00,0 --43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0 --48.00,28.80,1.82,0.00,1.00,48.00,28.80,0 --52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0 --57.60,33.60,1.86,0.00,1.00,57.60,28.80,0 --62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0 --67.20,38.40,1.90,0.00,1.00,67.20,33.60,0 --72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0 --81.60,38.40,1.94,0.00,1.00,76.80,38.40,0 --86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0 --91.20,38.40,1.99,0.00,1.00,86.40,38.40,0 --96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0 --105.60,38.40,2.03,0.00,1.00,96.00,38.40,0 --110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0 --115.20,33.60,2.07,0.00,1.00,105.60,33.60,0 --120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0 --124.80,33.60,2.11,0.00,1.00,115.20,33.60,0 --129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0 --134.40,28.80,2.16,0.00,1.00,124.80,28.80,0 --139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0 --144.00,24.00,2.20,0.00,1.00,134.40,24.00,0 --148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0 --153.60,19.20,2.24,0.00,1.00,144.00,19.20,0 --158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0 --163.20,14.40,2.29,0.00,1.00,153.60,14.40,0 --168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.33,0.00,1.00,163.20,9.60,0 --172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.37,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0 -153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0 -144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0 -134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0 -124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0 -120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0 -115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0 -110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0 -105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0 -96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0 -91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0 -86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0 -81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0 -72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0 -67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0 -62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0 -57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0 -52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0 -48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0 -43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0 -38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0 -33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0 -28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0 -14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.20,0.00,1.00,0.00,0.00,0 --9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0 --14.40,9.60,3.25,0.00,1.00,9.60,4.80,0 --14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0 --19.20,14.40,3.29,0.00,1.00,19.20,9.60,0 --24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0 --28.80,19.20,3.33,0.00,1.00,28.80,14.40,0 --33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0 --38.40,24.00,3.38,0.00,1.00,38.40,19.20,0 --43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0 --48.00,24.00,3.42,0.00,1.00,48.00,24.00,0 --52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0 --57.60,28.80,3.46,0.00,1.00,57.60,28.80,0 --62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0 --67.20,33.60,3.50,0.00,1.00,67.20,28.80,0 --72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0 --81.60,33.60,3.55,0.00,1.00,76.80,33.60,0 --86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0 --91.20,33.60,3.59,0.00,1.00,86.40,33.60,0 --96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0 --100.80,33.60,3.63,0.00,1.00,96.00,33.60,0 --110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0 --115.20,33.60,3.67,0.00,1.00,105.60,28.80,0 --120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0 --124.80,28.80,3.72,0.00,1.00,115.20,28.80,0 --129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0 --134.40,24.00,3.76,0.00,1.00,124.80,24.00,0 --139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0 --144.00,19.20,3.80,0.00,1.00,134.40,24.00,0 --148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0 --153.60,14.40,3.85,0.00,1.00,144.00,19.20,0 --158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0 --163.20,9.60,3.89,0.00,1.00,153.60,14.40,0 --168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0 --168.00,4.80,3.93,0.00,1.00,163.20,9.60,0 --172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0 --177.60,0.00,3.97,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0 -124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0 -120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0 -115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0 -110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0 -100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0 -96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0 -91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0 -86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0 -81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0 -72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0 -67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0 -62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0 -57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0 -52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0 -48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0 -43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0 -38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0 -33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0 -28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0 -24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0 -14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0 -14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0 --4.80,0.00,4.81,0.00,1.00,0.00,0.00,0 --9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0 --14.40,4.80,4.85,0.00,1.00,9.60,4.80,0 --19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0 --19.20,9.60,4.89,0.00,1.00,19.20,9.60,0 --24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0 --28.80,14.40,4.93,0.00,1.00,28.80,14.40,0 --33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0 --38.40,19.20,4.98,0.00,1.00,38.40,14.40,0 --43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0 --48.00,24.00,5.02,0.00,1.00,48.00,19.20,0 --52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0 --57.60,24.00,5.06,0.00,1.00,57.60,24.00,0 --62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0 --72.00,28.80,5.11,0.00,1.00,67.20,24.00,0 --76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0 --81.60,28.80,5.15,0.00,1.00,76.80,28.80,0 --86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0 --91.20,28.80,5.19,0.00,1.00,86.40,28.80,0 --96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0 --100.80,28.80,5.23,0.00,1.00,96.00,28.80,0 --105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0 --115.20,28.80,5.28,0.00,1.00,105.60,28.80,0 --120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0 --124.80,24.00,5.32,0.00,1.00,115.20,24.00,0 --129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0 --134.40,24.00,5.36,0.00,1.00,124.80,24.00,0 --139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0 --144.00,19.20,5.40,0.00,1.00,134.40,19.20,0 --148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0 --153.60,14.40,5.45,0.00,1.00,144.00,14.40,0 --158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0 --163.20,9.60,5.49,0.00,1.00,153.60,9.60,0 --163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0 --168.00,4.80,5.53,0.00,1.00,163.20,9.60,0 --172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0 --177.60,0.00,5.58,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0 -163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0 -129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0 -124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0 -120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0 -115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0 -105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0 -100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0 -96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0 -91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0 -86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0 -81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0 -76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0 -72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0 -62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0 -57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0 -52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0 -48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0 -43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0 -38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0 -33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0 -28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0 -24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0 -19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0 -19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0 -0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,6.41,0.00,1.00,0.00,0.00,0 --9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0 --14.40,4.80,6.45,0.00,1.00,9.60,4.80,0 --19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0 --24.00,9.60,6.49,0.00,1.00,19.20,9.60,0 --28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0 --33.60,14.40,6.54,0.00,1.00,28.80,9.60,0 --33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0 --38.40,14.40,6.58,0.00,1.00,38.40,14.40,0 --43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0 --48.00,19.20,6.62,0.00,1.00,48.00,14.40,0 --57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0 --62.40,19.20,6.66,0.00,1.00,57.60,19.20,0 --67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0 --72.00,24.00,6.71,0.00,1.00,67.20,19.20,0 --76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0 --81.60,24.00,6.75,0.00,1.00,76.80,24.00,0 --86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0 --91.20,24.00,6.79,0.00,1.00,86.40,24.00,0 --96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0 --100.80,24.00,6.84,0.00,1.00,96.00,24.00,0 --105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0 --110.40,24.00,6.88,0.00,1.00,105.60,24.00,0 --115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0 --120.00,19.20,6.92,0.00,1.00,115.20,19.20,0 --129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0 --134.40,19.20,6.96,0.00,1.00,124.80,19.20,0 --139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0 --144.00,14.40,7.01,0.00,1.00,134.40,14.40,0 --148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0 --148.80,14.40,7.05,0.00,1.00,144.00,14.40,0 --153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0 --158.40,9.60,7.09,0.00,1.00,153.60,9.60,0 --163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0 --168.00,4.80,7.13,0.00,1.00,163.20,4.80,0 --172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0 --177.60,0.00,7.18,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0 -163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0 -158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0 -148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0 -144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0 -134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0 -129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0 -120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0 -115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0 -110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0 -105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0 -100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0 -96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0 -91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0 -86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0 -81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0 -76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0 -72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0 -67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0 -62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0 -57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0 -48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0 -43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0 -38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0 -33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0 -33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0 -28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0 -24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0 -19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0 -0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,8.01,0.00,1.00,0.00,0.00,0 --9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0 --14.40,4.80,8.05,0.00,1.00,9.60,4.80,0 --19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0 --24.00,9.60,8.10,0.00,1.00,19.20,4.80,0 --28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0 --33.60,9.60,8.14,0.00,1.00,24.00,9.60,0 --38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0 --43.20,14.40,8.18,0.00,1.00,33.60,9.60,0 --48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0 --52.80,14.40,8.22,0.00,1.00,43.20,14.40,0 --57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0 --62.40,19.20,8.27,0.00,1.00,52.80,14.40,0 --67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0 --72.00,19.20,8.31,0.00,1.00,62.40,14.40,0 --76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0 --81.60,19.20,8.35,0.00,1.00,76.80,19.20,0 --86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0 --91.20,19.20,8.40,0.00,1.00,86.40,19.20,0 --96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0 --100.80,19.20,8.44,0.00,1.00,96.00,19.20,0 --105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0 --110.40,19.20,8.48,0.00,1.00,105.60,19.20,0 --115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0 --120.00,14.40,8.52,0.00,1.00,120.00,14.40,0 --124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0 --129.60,14.40,8.57,0.00,1.00,129.60,14.40,0 --134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0 --139.20,14.40,8.61,0.00,1.00,139.20,14.40,0 --144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0 --148.80,9.60,8.65,0.00,1.00,148.80,9.60,0 --153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0 --158.40,4.80,8.69,0.00,1.00,158.40,9.60,0 --163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0 --168.00,4.80,8.74,0.00,1.00,163.20,4.80,0 --172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0 -148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0 -144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0 -139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0 -134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0 -129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0 -124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0 -120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0 -115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0 -110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0 -105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0 -100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0 -96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0 -91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0 -86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0 -81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0 -76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0 -72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0 -67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0 -62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0 -52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0 -48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0 -43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0 -38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0 -33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0 -28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0 -24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0 -19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0 -9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0 -0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,9.61,0.00,1.00,0.00,0.00,0 --9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0 --14.40,4.80,9.66,0.00,1.00,9.60,0.00,0 --19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0 --24.00,4.80,9.70,0.00,1.00,14.40,4.80,0 --28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0 --33.60,9.60,9.74,0.00,1.00,24.00,4.80,0 --38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0 --43.20,9.60,9.78,0.00,1.00,33.60,9.60,0 --48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0 --52.80,9.60,9.83,0.00,1.00,43.20,9.60,0 --57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0 --62.40,14.40,9.87,0.00,1.00,52.80,9.60,0 --67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0 --72.00,14.40,9.91,0.00,1.00,62.40,14.40,0 --76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0 --81.60,14.40,9.95,0.00,1.00,76.80,14.40,0 --86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0 --91.20,14.40,10.00,0.00,1.00,86.40,14.40,0 --96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0 --100.80,14.40,10.04,0.00,1.00,96.00,14.40,0 --105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0 --110.40,14.40,10.08,0.00,1.00,110.40,14.40,0 --115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0 --120.00,14.40,10.13,0.00,1.00,120.00,9.60,0 --124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0 --129.60,9.60,10.17,0.00,1.00,129.60,9.60,0 --134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0 --139.20,9.60,10.21,0.00,1.00,139.20,9.60,0 --144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0 --148.80,9.60,10.25,0.00,1.00,148.80,9.60,0 --153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0 --158.40,4.80,10.30,0.00,1.00,158.40,4.80,0 --163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0 --168.00,4.80,10.34,0.00,1.00,168.00,4.80,0 --172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0 -148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0 -144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0 -139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0 -134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0 -129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0 -124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0 -120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0 -115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0 -110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0 -105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0 -100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0 -96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0 -91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0 -86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0 -81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0 -76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0 -72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0 -67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0 -62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0 -48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0 -43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0 -38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0 -33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0 -28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0 -24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0 -19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0 -14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,11.21,0.00,1.00,0.00,0.00,0 --9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0 --14.40,0.00,11.26,0.00,1.00,9.60,0.00,0 --19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0 --24.00,4.80,11.30,0.00,1.00,14.40,4.80,0 --28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0 --33.60,4.80,11.34,0.00,1.00,24.00,4.80,0 --38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0 --43.20,4.80,11.39,0.00,1.00,33.60,4.80,0 --48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0 --52.80,9.60,11.43,0.00,1.00,43.20,4.80,0 --57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0 --62.40,9.60,11.47,0.00,1.00,52.80,4.80,0 --67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0 --72.00,9.60,11.51,0.00,1.00,62.40,9.60,0 --76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0 --81.60,9.60,11.56,0.00,1.00,72.00,9.60,0 --86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0 --91.20,9.60,11.60,0.00,1.00,86.40,9.60,0 --96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0 --100.80,9.60,11.64,0.00,1.00,96.00,9.60,0 --105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0 --110.40,9.60,11.68,0.00,1.00,110.40,9.60,0 --115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0 --120.00,9.60,11.73,0.00,1.00,120.00,9.60,0 --124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0 --129.60,9.60,11.77,0.00,1.00,129.60,4.80,0 --134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0 --139.20,4.80,11.81,0.00,1.00,139.20,4.80,0 --144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0 --148.80,4.80,11.86,0.00,1.00,148.80,4.80,0 --153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0 --158.40,4.80,11.90,0.00,1.00,158.40,4.80,0 --163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0 --168.00,0.00,11.94,0.00,1.00,168.00,4.80,0 --172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0 -158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0 -148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0 -144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0 -139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0 -134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0 -129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0 -124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0 -120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0 -115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0 -110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0 -105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0 -100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0 -96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0 -91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0 -86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0 -81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0 -76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0 -72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0 -67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0 -62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0 -57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0 -43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0 -33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0 -28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0 -24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0 -19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,12.82,0.00,1.00,0.00,0.00,0 --9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0 --14.40,0.00,12.86,0.00,1.00,9.60,0.00,0 --19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0 --24.00,0.00,12.90,0.00,1.00,14.40,0.00,0 --28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0 --33.60,4.80,12.95,0.00,1.00,24.00,0.00,0 --38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0 --43.20,4.80,12.99,0.00,1.00,28.80,0.00,0 --48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0 --52.80,4.80,13.03,0.00,1.00,38.40,4.80,0 --57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0 --62.40,4.80,13.07,0.00,1.00,48.00,4.80,0 --67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0 --72.00,4.80,13.12,0.00,1.00,62.40,4.80,0 --76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0 --81.60,4.80,13.16,0.00,1.00,72.00,4.80,0 --86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0 --91.20,4.80,13.20,0.00,1.00,86.40,4.80,0 --96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0 --100.80,4.80,13.24,0.00,1.00,96.00,4.80,0 --105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0 --110.40,4.80,13.29,0.00,1.00,110.40,4.80,0 --115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0 --120.00,4.80,13.33,0.00,1.00,120.00,4.80,0 --124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0 --129.60,4.80,13.37,0.00,1.00,134.40,4.80,0 --134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0 --139.20,4.80,13.42,0.00,1.00,144.00,4.80,0 --144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0 --148.80,4.80,13.46,0.00,1.00,153.60,0.00,0 --153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0 --158.40,0.00,13.50,0.00,1.00,158.40,0.00,0 --163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0 --168.00,0.00,13.54,0.00,1.00,168.00,0.00,0 --172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0 -163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0 -158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0 -153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0 -148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0 -144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0 -139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0 -134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0 -129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0 -124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0 -120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0 -115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0 -110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0 -105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0 -100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0 -96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0 -91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0 -86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0 -81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0 -76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0 -72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0 -67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0 -57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0 -52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0 -43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0 -33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0 -28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0 -24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0 -19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0 -14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0 -9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,14.42,0.00,1.00,0.00,0.00,0 --9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0 --14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0 --19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0 --24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0 --28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0 --33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0 --38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0 --43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0 --48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0 --52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0 --57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0 --62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0 --67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0 --72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0 --76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0 --81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0 --86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0 --91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0 --96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0 --100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0 --105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0 --110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0 --115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0 --120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0 --124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0 --129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0 --134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0 --139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0 --144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0 --148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0 --153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0 --158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0 --163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0 --168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0 --172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0 -177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0 -172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0 -168.00,0.00,15.25,0.00,1.00,4.80,0.00,0 -163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0 -158.40,0.00,15.30,0.00,1.00,9.60,0.00,0 -153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0 -148.80,0.00,15.34,0.00,1.00,19.20,0.00,0 -144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0 -139.20,0.00,15.38,0.00,1.00,28.80,0.00,0 -134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0 -129.60,0.00,15.42,0.00,1.00,33.60,0.00,0 -124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0 -120.00,0.00,15.47,0.00,1.00,43.20,0.00,0 -115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0 -110.40,0.00,15.51,0.00,1.00,57.60,0.00,0 -105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0 -100.80,0.00,15.55,0.00,1.00,67.20,0.00,0 -96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0 -91.20,0.00,15.59,0.00,1.00,81.60,0.00,0 -86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0 -81.60,0.00,15.64,0.00,1.00,96.00,0.00,0 -76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0 -72.00,0.00,15.68,0.00,1.00,110.40,0.00,0 -67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0 -62.40,0.00,15.72,0.00,1.00,120.00,0.00,0 -57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0 -52.80,0.00,15.77,0.00,1.00,134.40,0.00,0 -48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0 -43.20,0.00,15.81,0.00,1.00,144.00,0.00,0 -38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0 -33.60,0.00,15.85,0.00,1.00,153.60,0.00,0 -28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0 -24.00,0.00,15.89,0.00,1.00,158.40,0.00,0 -19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0 -14.40,0.00,15.94,0.00,1.00,168.00,0.00,0 -9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0 -4.80,0.00,15.98,0.00,1.00,172.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC16c_ISM3.csv b/scripts/testv/stvOMASA_4ISM_2MASA1TC16c_ISM3.csv deleted file mode 100644 index 14eee9b693b536fa2fd22d2813d7f588b8930b06..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_2MASA1TC16c_ISM3.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0 --177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0 -4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0 --168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0 -14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0 --163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0 -19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0 --153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0 -28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0 --148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0 -38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0 --139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0 -48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0 --124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0 -57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0 --115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0 -72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0 --100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0 -86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0 --86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0 -100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0 --76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0 -110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0 --62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0 -124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0 --52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0 -134.40,33.60,0.28,0.00,1.00,177.60,0.00,0 --38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0 -144.00,28.80,0.30,0.00,1.00,177.60,0.00,0 --33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0 -153.60,24.00,0.32,0.00,1.00,177.60,0.00,0 --24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0 -158.40,19.20,0.34,0.00,1.00,177.60,0.00,0 --14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0 -168.00,9.60,0.36,0.00,1.00,177.60,0.00,0 --9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0 -172.80,4.80,0.38,0.00,1.00,177.60,0.00,0 --0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0 --177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0 -4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0 -14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0 -19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0 --158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0 -28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0 --148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0 -33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0 --139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0 -43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0 --129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0 -57.60,38.40,15.47,0.00,1.00,177.60,0.00,0 --120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0 -67.20,43.20,15.44,0.00,1.00,177.60,0.00,0 --105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0 -81.60,43.20,15.42,0.00,1.00,177.60,0.00,0 --91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0 -96.00,43.20,15.40,0.00,1.00,0.00,0.00,0 --76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0 -110.40,43.20,15.38,0.00,1.00,0.00,0.00,0 --67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0 -120.00,38.40,15.36,0.00,1.00,0.00,0.00,0 --52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0 -129.60,38.40,15.34,0.00,1.00,0.00,0.00,0 --43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0 -144.00,33.60,15.32,0.00,1.00,0.00,0.00,0 --33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0 -148.80,24.00,15.30,0.00,1.00,0.00,0.00,0 --24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0 -158.40,19.20,15.27,0.00,1.00,0.00,0.00,0 --19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0 -168.00,14.40,15.25,0.00,1.00,0.00,0.00,0 --9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0 -172.80,4.80,15.23,0.00,1.00,0.00,0.00,0 --4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0 -0.00,0.00,15.21,0.00,1.00,0.00,0.00,0 --177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0 -9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0 -14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0 --163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0 -24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0 --153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0 -28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0 --144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0 -38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0 --134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0 -48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0 --124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0 -62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0 --115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0 -72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0 --100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0 -86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0 --86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0 -96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0 --76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0 -110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0 --62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0 -120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0 --52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0 -134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0 --43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0 -144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0 --33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0 -148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0 --24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0 -158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0 --19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0 -168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0 --9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0 -172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0 -4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0 -14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0 -19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0 --153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0 -28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0 --148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0 -38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0 --139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0 -48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0 --124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0 -57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0 --115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0 -72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0 --105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0 -81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0 --91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0 -96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0 --76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0 -105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0 --67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0 -120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0 --57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0 -129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0 --43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0 -139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0 --33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0 -148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0 --28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0 -158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0 --19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0 -163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0 --9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0 -172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0 -0.00,0.00,1.60,0.00,1.00,0.00,0.00,0 --177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0 -9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0 -14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0 --158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0 -24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0 --153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0 -33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0 --144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0 -43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0 --134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0 -52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0 --124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0 -62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0 --110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0 -72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0 --100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0 -86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0 --86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0 -96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0 --76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0 -110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0 --67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0 -120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0 --52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0 -129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0 --43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0 -139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0 --33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0 -148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0 --24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0 -158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0 --19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0 -168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0 -172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0 -4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0 -14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0 --163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0 -24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0 --153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0 -28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0 --144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0 -38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0 --134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0 -48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0 --124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0 -62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0 --115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0 -72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0 --100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0 -81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0 --91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0 -96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0 --81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0 -105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0 --67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0 -115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0 --57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0 -129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0 --48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0 -139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0 --38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0 -148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0 --28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0 -153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0 --19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0 -163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0 --9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0 -172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0 -0.00,0.00,13.61,0.00,1.00,0.00,0.00,0 --177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0 -9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0 --168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0 -24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0 --148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0 -33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0 --139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0 -43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0 --129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0 -52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0 --120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0 -62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0 --110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0 -76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0 --100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0 -86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0 --86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0 -96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0 --76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0 -105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0 --67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0 -120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0 --57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0 -129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0 --48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0 -139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0 --38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0 -148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0 -158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0 --19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0 -163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0 -172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0 -4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0 -14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0 --163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0 -24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0 --153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0 -33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0 --144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0 -43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0 --134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0 -52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0 --124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0 -62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0 --115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0 -72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0 --100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0 -81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0 --91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0 -96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0 --81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0 -105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0 --67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0 -115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0 --57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0 -124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0 --48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0 -134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0 --38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0 -144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0 --28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0 -153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0 --19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0 -163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0 --14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0 -172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0 --4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0 -0.00,0.00,3.20,0.00,1.00,0.00,0.00,0 --177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0 -9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0 -19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0 -24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0 --148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0 -33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0 --139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0 -43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0 --129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0 -52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0 --120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0 -67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0 --110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0 -76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0 --100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0 -86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0 --86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0 -96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0 --76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0 -105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0 --67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0 -115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0 --57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0 -129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0 --48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0 -139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0 --38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0 -148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0 -153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0 --19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0 -163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0 -172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0 -4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0 -14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0 -24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0 --153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0 -33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0 --144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0 -43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0 --134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0 -52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0 --124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0 -62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0 --110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0 -72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0 --100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0 -81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0 --91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0 -96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0 --81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0 -105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0 --72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0 -115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0 --57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0 -124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0 --48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0 -134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0 --38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0 -144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0 --28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0 -153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0 --24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0 -163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0 --14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0 -172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -0.00,0.00,12.01,0.00,1.00,0.00,0.00,0 --177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0 -9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0 --158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0 -28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0 --148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0 -38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0 --139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0 -48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0 --129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0 -57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0 --120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0 -67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0 --110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0 -76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0 --100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0 -86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0 --86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0 -96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0 --76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0 -105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0 --67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0 -115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0 --57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0 -124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0 --48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0 -134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0 --38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0 -144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0 --28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0 -153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0 --19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0 -163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0 -172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0 -4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0 -14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0 -24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0 --148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0 -33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0 --139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0 -43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0 --129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0 -52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0 --120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0 -62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0 --110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0 -72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0 --100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0 -81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0 --91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0 -96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0 --81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0 -105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0 --72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0 -115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0 --62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0 -124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0 --52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0 -134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0 --43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0 -144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0 --33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0 -153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0 --24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0 -163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0 -172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0 -0.00,0.00,4.81,0.00,1.00,0.00,0.00,0 --177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0 -9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0 -19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0 -28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0 --148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0 -38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0 --139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0 -48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0 --129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0 -57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0 --120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0 -67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0 --110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0 -76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0 --100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0 -86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0 --86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0 -96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0 --76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0 -105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0 --67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0 -115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0 --57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0 -124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0 --48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0 -134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0 --38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0 -144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0 --28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0 -153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0 --19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0 -163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0 --9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0 -172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0 -4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0 -14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0 -24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0 --148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0 -33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0 --139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0 -43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0 --129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0 -52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0 --120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0 -62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0 --110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0 -72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0 --100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0 -81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0 --91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0 -96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0 --81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0 -105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0 --72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0 -115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0 --62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0 -124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0 --52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0 -134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0 --43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0 -144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0 --33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0 -153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0 --24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0 -163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0 -172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -0.00,0.00,10.40,0.00,1.00,0.00,0.00,0 --177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0 -9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0 -19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0 -28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0 --148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0 -38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0 --139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0 -48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0 --129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0 -57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0 --120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0 -67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0 --110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0 -76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0 --100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0 -86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0 --86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0 -96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0 --76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0 -105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0 --67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0 -115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0 --57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0 -124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0 --48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0 -134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0 --38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0 -144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0 --28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0 -153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0 -163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0 --9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0 -172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0 -4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0 -14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0 -24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0 -33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0 --139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0 -43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0 --129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0 -52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0 --120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0 -62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0 --110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0 -72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0 --100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0 -81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0 --91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0 -96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0 --81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0 -105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0 --72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0 -115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0 --62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0 -124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0 --52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0 -134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0 --43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0 -144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0 --33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0 -153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0 --24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0 -163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0 -172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,6.41,0.00,1.00,0.00,0.00,0 --177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0 -9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0 -19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0 --158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0 -28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0 --148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0 -38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0 --139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0 -48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0 --129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0 -57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0 --120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0 -67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0 --110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0 -76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0 --100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0 -86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0 --86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0 -96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0 --76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0 -105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0 --67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0 -115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0 --57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0 -124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0 --48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0 -134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0 --38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0 -144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0 --28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0 -153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0 -163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0 -172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0 -4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0 -14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0 --158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0 -24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0 -33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0 --139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0 -43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0 --129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0 -52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0 --120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0 -62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0 --110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0 -72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0 --100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0 -81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0 --91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0 -96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0 --81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0 -105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0 --72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0 -115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0 --62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0 -124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0 --52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0 -134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0 --43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0 -144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0 --33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0 -153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0 --24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0 -163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0 --14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0 -172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.80,0.00,1.00,0.00,0.00,0 --177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0 -9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0 -19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0 --158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0 -28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0 --148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0 -38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0 --139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0 -48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0 --129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0 -57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0 --120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0 -67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0 --110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0 -76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0 --100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0 -86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0 --86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0 -96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0 --76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0 -105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0 --67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0 -115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0 --57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0 -124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0 --48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0 -134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0 --38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0 -144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0 --28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0 -153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0 --19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0 -163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0 -172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0 --0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0 -4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0 --168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0 -14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0 --158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0 -24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0 --148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0 -33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0 --139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0 -43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0 --129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0 -52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0 --120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0 -62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0 --110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0 -72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0 --100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0 -81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0 --91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0 -96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0 --81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0 -105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0 --72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0 -115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0 --62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0 -124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0 --52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0 -134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0 --43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0 -144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0 --33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0 -153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0 --24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0 -163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0 --14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0 -172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.01,0.00,1.00,0.00,0.00,0 --177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0 --168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0 -19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0 --158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0 -28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0 --148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0 -38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0 --139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0 -48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0 --129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0 -57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0 --120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0 -67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0 --110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0 -76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0 --100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0 -86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0 --86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0 -96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0 --76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0 -105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0 --67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0 -115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0 --57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0 -124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0 --48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0 -134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0 --38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0 -144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0 --28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0 -153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0 --19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0 -163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0 --9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0 -172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0 --0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0 --168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0 -14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0 --158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0 -24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0 --148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0 -33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0 --139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0 -43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0 --129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0 -52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0 --120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0 -62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0 --110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0 -72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0 --100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0 -81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0 --91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0 -96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0 --81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0 -105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0 --72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0 -115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0 --62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0 -124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0 --52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0 -134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0 --43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0 -144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0 --33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0 -153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0 --24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0 -163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0 --14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0 --4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0 -0.00,0.00,7.20,0.00,1.00,0.00,0.00,0 --177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0 --168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0 -19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0 --158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0 --148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0 -38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0 --139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0 -48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0 --129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0 -57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0 --120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0 -67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0 --110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0 -76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0 --100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0 -86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0 --86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0 -96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0 --76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0 -105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0 --67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0 -115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0 --57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0 -124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0 --48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0 -134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0 --38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0 -144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0 --28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0 --19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0 -163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0 --9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0 --0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0 --168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0 -14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0 --158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0 --148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0 -33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0 --139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0 -43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0 --129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0 -52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0 --120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0 -62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0 --110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0 -72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0 --100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0 -81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0 --91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0 -96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0 --81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0 -105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0 --72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0 -115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0 --62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0 -124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0 --52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0 -134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0 --43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0 -144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0 --33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0 -153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0 --24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0 --14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0 --4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0 -0.00,0.00,9.61,0.00,1.00,0.00,0.00,0 --177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0 --168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0 --158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0 --148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0 --139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0 -48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0 --129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0 -57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0 --120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0 -67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0 --110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0 -76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0 --100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0 -86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0 --86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0 -96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0 --76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0 -105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0 --67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0 -115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0 --57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0 -124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0 --48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0 -134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0 --38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0 --28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0 --19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0 -163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0 --9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0 --0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0 --168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0 --158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0 --148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0 -33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0 --139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0 -43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0 --129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0 -52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0 --120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0 -62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0 --110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0 -72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0 --100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0 -81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0 --91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0 -96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0 --81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0 -105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0 --72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0 -115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0 --62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0 -124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0 --52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0 -134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0 --43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0 -144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0 --33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0 -153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0 --24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0 --14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0 -172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0 --4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0 -0.00,0.00,5.60,0.00,1.00,0.00,0.00,0 --177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0 --168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0 --158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0 -28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0 --148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0 --139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0 -48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0 --129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0 -57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0 --120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0 -67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0 --110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0 -76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0 --100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0 -86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0 --86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0 -96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0 --76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0 -105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0 --67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0 -115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0 --57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0 -124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0 --48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0 -134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0 --38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0 --28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0 -153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0 --19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0 --9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0 --0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0 --168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0 --158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0 --148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0 -33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0 --139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0 -43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0 --129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0 -52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0 --120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0 -62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0 --110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0 -72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0 --100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0 -81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0 --91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0 -96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0 --81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0 -105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0 --72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0 -115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0 --62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0 -124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0 --52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0 -134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0 --43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0 -144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0 --33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0 -153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0 --24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0 --14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0 --4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0 -0.00,0.00,11.21,0.00,1.00,0.00,0.00,0 --177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0 --168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0 --158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0 -28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0 --148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0 -38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0 --139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0 -48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0 --129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0 -57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0 --120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0 -67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0 --110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0 -76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0 --100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0 -86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0 --86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0 -96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0 --76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0 -105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0 --67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0 -115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0 --57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0 -124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0 --48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0 -134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0 --38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0 -144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0 --28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0 -153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0 --19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0 --9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0 --0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0 --168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0 --158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0 --148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0 --139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0 -43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0 --129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0 -52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0 --120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0 -62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0 --110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0 -72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0 --100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0 -81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0 --91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0 -96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0 --81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0 -105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0 --72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0 -115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0 --62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0 -124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0 --52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0 -134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0 --43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0 --33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0 -153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0 --24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0 -163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0 --14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0 --4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,3.99,0.00,1.00,0.00,0.00,0 --177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0 --168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0 -19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0 --158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0 --148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0 -33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0 --139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0 -43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0 --129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0 -52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0 --120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0 -62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0 --110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0 -76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0 --100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0 -86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0 --86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0 -96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0 --76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0 -105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0 --67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0 -120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0 --57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0 --48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0 -139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0 --38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0 -148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0 --28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0 -158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0 --19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0 -163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0 --9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0 --0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0 --168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0 --158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0 --153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0 --144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0 -43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0 --134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0 --124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0 -62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0 --110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0 -72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0 --100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0 -81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0 --91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0 -96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0 --81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0 -105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0 --72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0 -115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0 --57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0 -124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0 --48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0 -134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0 --38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0 --28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0 --24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0 --14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0 --4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,12.82,0.00,1.00,0.00,0.00,0 --177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0 --168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0 --158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0 --148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0 -33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0 --139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0 --129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0 --120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0 -62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0 --110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0 -76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0 --100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0 -86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0 --86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0 -96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0 --76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0 -110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0 --67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0 -120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0 --57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0 --48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0 --38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0 --28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0 --19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0 --9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0 --0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0 --168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0 --163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0 --153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0 -33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0 --144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0 -43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0 --134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0 --124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0 -62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0 --115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0 -72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0 --100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0 -81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0 --91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0 -96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0 --81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0 -105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0 --67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0 -115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0 --57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0 -124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0 --48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0 -134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0 --38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0 -144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0 --28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0 --19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0 --14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0 --4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,2.39,0.00,1.00,0.00,0.00,0 --177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0 --168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0 --158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0 --153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0 -33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0 --144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0 --134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0 --124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0 -62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0 --110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0 -72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0 --100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0 -86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0 --86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0 -96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0 --76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0 -110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0 --67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0 -120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0 --52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0 -129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0 --43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0 --33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0 --24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0 --19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0 --9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0 --0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0 --168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0 --163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0 --153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0 -28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0 --144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0 -38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0 --134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0 -48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0 --124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0 -57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0 --115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0 -72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0 --105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0 -81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0 --91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0 -96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0 --81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0 -105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0 --67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0 -120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0 --57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0 -129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0 --48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0 -139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0 --38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0 --28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0 -158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0 --19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0 --9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0 --4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0 -0.00,0.00,14.42,0.00,1.00,0.00,0.00,0 --177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0 --168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0 --163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0 -24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0 --153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0 -28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0 --144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0 -38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0 --134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0 -48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0 --124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0 -62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0 --115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0 -72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0 --100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0 -86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0 --86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0 -96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0 --76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0 -110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0 --62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0 -120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0 --52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0 -134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0 --43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0 --33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0 --24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0 -158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0 --14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0 --9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0 --0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0 --172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0 --163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0 --153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0 --148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0 -38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0 --139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0 -48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0 --129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0 --115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0 -67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0 --105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0 -81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0 --91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0 -96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0 --76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0 -105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0 --67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0 -120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0 --52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0 -129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0 --43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0 -139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0 --33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0 --28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0 --19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0 -163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0 --9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0 --4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0 -0.00,0.00,0.79,0.00,1.00,0.00,0.00,0 --177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0 -4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0 --168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0 --163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0 -19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0 --153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0 -28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0 --148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0 -38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0 --139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0 -48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0 --124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0 -57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0 --115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0 -72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0 --100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0 -86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0 --86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0 -100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0 --76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0 -110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0 --62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0 -124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0 --48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0 -134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0 --38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0 --28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0 --24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0 -163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0 --14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0 -168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0 --9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0 --0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0 --177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0 --172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0 -9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0 --163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0 --158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0 --148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0 -33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0 --139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0 -43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0 --129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0 --120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0 -67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0 --105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0 -81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0 --91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0 -96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0 --76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0 -110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0 --67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0 -120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0 --52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0 -134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0 --43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0 -144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0 --33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0 -153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0 --24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0 --19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0 -168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0 --9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0 --4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0 diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC16c_ISM4.csv b/scripts/testv/stvOMASA_4ISM_2MASA1TC16c_ISM4.csv deleted file mode 100644 index 8a14c3413ddd2dd47415bf6de3e19631f65f8f6c..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_2MASA1TC16c_ISM4.csv +++ /dev/null @@ -1,1500 +0,0 @@ --0.00,0.00,0.00,0.00,1.00,0.00,4.80,0 --0.00,4.80,0.06,0.00,1.00,4.80,9.60,0 --0.00,9.60,0.13,0.00,1.00,9.60,14.40,0 --0.00,14.40,0.19,0.00,1.00,14.40,19.20,0 --0.00,19.20,0.26,0.00,1.00,19.20,24.00,0 --0.00,24.00,0.32,0.00,1.00,24.00,28.80,0 --0.00,28.80,0.39,0.00,1.00,28.80,33.60,0 --0.00,33.60,0.45,0.00,1.00,33.60,38.40,0 --0.00,38.40,0.51,0.00,1.00,38.40,43.20,0 --0.00,43.20,0.58,0.00,1.00,43.20,48.00,0 --0.00,48.00,0.64,0.00,1.00,48.00,52.80,0 --0.00,52.80,0.71,0.00,1.00,52.80,57.60,0 --0.00,57.60,0.77,0.00,1.00,57.60,62.40,0 --0.00,62.40,0.84,0.00,1.00,62.40,67.20,0 --0.00,67.20,0.90,0.00,1.00,67.20,72.00,0 --0.00,72.00,0.96,0.00,1.00,72.00,76.80,0 --0.00,76.80,1.03,0.00,1.00,76.80,81.60,0 --0.00,81.60,1.09,0.00,1.00,81.60,86.40,0 --0.00,86.40,1.16,0.00,1.00,86.40,86.40,0 --177.60,89.20,1.22,0.00,1.00,91.20,81.60,0 --177.60,86.40,1.29,0.00,1.00,96.00,76.80,0 --177.60,81.60,1.35,0.00,1.00,100.80,72.00,0 --177.60,76.80,1.41,0.00,1.00,105.60,67.20,0 --177.60,72.00,1.48,0.00,1.00,110.40,62.40,0 --177.60,67.20,1.54,0.00,1.00,115.20,57.60,0 -177.60,62.40,1.61,0.00,1.00,120.00,52.80,0 -177.60,57.60,1.67,0.00,1.00,124.80,48.00,0 -177.60,52.80,1.73,0.00,1.00,129.60,43.20,0 -177.60,48.00,1.80,0.00,1.00,134.40,38.40,0 -177.60,43.20,1.86,0.00,1.00,139.20,33.60,0 -177.60,38.40,1.93,0.00,1.00,144.00,28.80,0 -177.60,33.60,1.99,0.00,1.00,148.80,24.00,0 -177.60,28.80,2.06,0.00,1.00,153.60,19.20,0 -177.60,24.00,2.12,0.00,1.00,158.40,14.40,0 -177.60,19.20,2.18,0.00,1.00,163.20,9.60,0 -177.60,14.40,2.25,0.00,1.00,168.00,4.80,0 -177.60,9.60,2.31,0.00,1.00,172.80,0.00,0 -177.60,4.80,2.38,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,2.44,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,2.51,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,2.57,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,2.63,0.00,1.00,-163.20,-19.20,0 --177.60,-19.20,2.70,0.00,1.00,-158.40,-24.00,0 --177.60,-24.00,2.76,0.00,1.00,-153.60,-28.80,0 --177.60,-28.80,2.83,0.00,1.00,-148.80,-33.60,0 --177.60,-33.60,2.89,0.00,1.00,-144.00,-38.40,0 --177.60,-38.40,2.96,0.00,1.00,-139.20,-43.20,0 --177.60,-48.00,3.02,0.00,1.00,-134.40,-48.00,0 --177.60,-48.00,3.08,0.00,1.00,-129.60,-52.80,0 --177.60,-52.80,3.15,0.00,1.00,-124.80,-57.60,0 --177.60,-57.60,3.21,0.00,1.00,-120.00,-62.40,0 -177.60,-62.40,3.28,0.00,1.00,-115.20,-67.20,0 -177.60,-67.20,3.34,0.00,1.00,-110.40,-72.00,0 -177.60,-76.80,3.41,0.00,1.00,-105.60,-76.80,0 -177.60,-76.80,3.47,0.00,1.00,-100.80,-81.60,0 -177.60,-86.40,3.53,0.00,1.00,-96.00,-86.40,0 -177.60,-89.20,3.60,0.00,1.00,-91.20,-86.40,0 -0.00,-86.40,3.66,0.00,1.00,-86.40,-81.60,0 -0.00,-81.60,3.73,0.00,1.00,-81.60,-76.80,0 -0.00,-76.80,3.79,0.00,1.00,-76.80,-72.00,0 -0.00,-72.00,3.86,0.00,1.00,-72.00,-67.20,0 -0.00,-67.20,3.92,0.00,1.00,-67.20,-62.40,0 -0.00,-62.40,3.98,0.00,1.00,-62.40,-57.60,0 -0.00,-57.60,4.05,0.00,1.00,-57.60,-52.80,0 -0.00,-52.80,4.11,0.00,1.00,-52.80,-48.00,0 -0.00,-48.00,4.18,0.00,1.00,-48.00,-43.20,0 -0.00,-43.20,4.24,0.00,1.00,-43.20,-38.40,0 -0.00,-38.40,4.31,0.00,1.00,-38.40,-33.60,0 -0.00,-33.60,4.37,0.00,1.00,-33.60,-28.80,0 -0.00,-28.80,4.43,0.00,1.00,-28.80,-24.00,0 -0.00,-24.00,4.50,0.00,1.00,-24.00,-19.20,0 -0.00,-19.20,4.56,0.00,1.00,-19.20,-14.40,0 -0.00,-14.40,4.63,0.00,1.00,-14.40,-9.60,0 -0.00,-9.60,4.69,0.00,1.00,-9.60,-4.80,0 -0.00,-4.80,4.76,0.00,1.00,-4.80,0.00,0 -0.00,0.00,4.82,0.00,1.00,0.00,4.80,0 -0.00,4.80,4.88,0.00,1.00,4.80,9.60,0 -0.00,9.60,4.95,0.00,1.00,9.60,14.40,0 -0.00,14.40,5.01,0.00,1.00,14.40,19.20,0 -0.00,19.20,5.08,0.00,1.00,19.20,24.00,0 -0.00,24.00,5.14,0.00,1.00,24.00,28.80,0 -4.80,28.80,5.20,0.00,1.00,28.80,33.60,0 -4.80,33.60,5.27,0.00,1.00,33.60,38.40,0 -4.80,38.40,5.33,0.00,1.00,38.40,43.20,0 -4.80,43.20,5.40,0.00,1.00,43.20,48.00,0 -4.80,48.00,5.46,0.00,1.00,48.00,52.80,0 -4.80,52.80,5.53,0.00,1.00,52.80,57.60,0 -9.60,57.60,5.59,0.00,1.00,57.60,62.40,0 -9.60,62.40,5.65,0.00,1.00,62.40,67.20,0 -9.60,67.20,5.72,0.00,1.00,67.20,72.00,0 -14.40,72.00,5.78,0.00,1.00,72.00,76.80,0 -19.20,76.80,5.85,0.00,1.00,76.80,81.60,0 -28.80,81.60,5.91,0.00,1.00,81.60,86.40,0 -52.80,86.40,5.98,0.00,1.00,86.40,86.40,0 -105.60,86.40,6.04,0.00,1.00,91.20,81.60,0 -139.20,81.60,6.10,0.00,1.00,96.00,76.80,0 -158.40,76.80,6.17,0.00,1.00,100.80,72.00,0 -163.20,72.00,6.23,0.00,1.00,105.60,67.20,0 -168.00,67.20,6.30,0.00,1.00,110.40,62.40,0 -168.00,62.40,6.36,0.00,1.00,115.20,57.60,0 -172.80,57.60,6.43,0.00,1.00,120.00,52.80,0 -172.80,52.80,6.49,0.00,1.00,124.80,48.00,0 -172.80,48.00,6.55,0.00,1.00,129.60,43.20,0 -172.80,43.20,6.62,0.00,1.00,134.40,38.40,0 -177.60,38.40,6.68,0.00,1.00,139.20,33.60,0 -177.60,33.60,6.75,0.00,1.00,144.00,28.80,0 -177.60,28.80,6.81,0.00,1.00,148.80,24.00,0 -177.60,24.00,6.88,0.00,1.00,153.60,19.20,0 -177.60,19.20,6.94,0.00,1.00,158.40,14.40,0 -177.60,14.40,7.00,0.00,1.00,163.20,9.60,0 -177.60,9.60,7.07,0.00,1.00,168.00,4.80,0 -177.60,4.80,7.13,0.00,1.00,172.80,0.00,0 -177.60,0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,7.26,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,7.33,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,7.39,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,7.45,0.00,1.00,-163.20,-19.20,0 --177.60,-19.20,7.52,0.00,1.00,-158.40,-24.00,0 --177.60,-24.00,7.58,0.00,1.00,-153.60,-28.80,0 --177.60,-28.80,7.65,0.00,1.00,-148.80,-33.60,0 --177.60,-33.60,7.71,0.00,1.00,-144.00,-38.40,0 --177.60,-38.40,7.78,0.00,1.00,-139.20,-43.20,0 --172.80,-43.20,7.84,0.00,1.00,-134.40,-48.00,0 --172.80,-48.00,7.90,0.00,1.00,-129.60,-52.80,0 --172.80,-52.80,7.97,0.00,1.00,-124.80,-57.60,0 --172.80,-57.60,8.03,0.00,1.00,-120.00,-62.40,0 --168.00,-62.40,8.10,0.00,1.00,-115.20,-67.20,0 --168.00,-67.20,8.16,0.00,1.00,-110.40,-72.00,0 --163.20,-72.00,8.22,0.00,1.00,-105.60,-76.80,0 --158.40,-76.80,8.29,0.00,1.00,-100.80,-81.60,0 --139.20,-81.60,8.35,0.00,1.00,-96.00,-86.40,0 --105.60,-86.40,8.42,0.00,1.00,-91.20,-86.40,0 --52.80,-86.40,8.48,0.00,1.00,-86.40,-81.60,0 --28.80,-81.60,8.55,0.00,1.00,-81.60,-76.80,0 --19.20,-76.80,8.61,0.00,1.00,-76.80,-72.00,0 --14.40,-72.00,8.67,0.00,1.00,-72.00,-67.20,0 --9.60,-67.20,8.74,0.00,1.00,-67.20,-62.40,0 --9.60,-62.40,8.80,0.00,1.00,-62.40,-57.60,0 --9.60,-57.60,8.87,0.00,1.00,-57.60,-52.80,0 --4.80,-52.80,8.93,0.00,1.00,-52.80,-48.00,0 --4.80,-48.00,9.00,0.00,1.00,-48.00,-43.20,0 --4.80,-43.20,9.06,0.00,1.00,-43.20,-38.40,0 --4.80,-38.40,9.12,0.00,1.00,-38.40,-33.60,0 --4.80,-33.60,9.19,0.00,1.00,-33.60,-28.80,0 --4.80,-28.80,9.25,0.00,1.00,-28.80,-24.00,0 --0.00,-24.00,9.32,0.00,1.00,-24.00,-19.20,0 --0.00,-19.20,9.38,0.00,1.00,-19.20,-14.40,0 --0.00,-14.40,9.45,0.00,1.00,-14.40,-9.60,0 --0.00,-9.60,9.51,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,9.57,0.00,1.00,-4.80,0.00,0 -0.00,0.00,9.64,0.00,1.00,0.00,4.80,0 -0.00,4.80,9.70,0.00,1.00,4.80,9.60,0 -0.00,9.60,9.77,0.00,1.00,9.60,14.40,0 -4.80,14.40,9.83,0.00,1.00,14.40,19.20,0 -4.80,19.20,9.90,0.00,1.00,19.20,24.00,0 -4.80,24.00,9.96,0.00,1.00,24.00,28.80,0 -4.80,28.80,10.02,0.00,1.00,28.80,33.60,0 -4.80,33.60,10.09,0.00,1.00,33.60,38.40,0 -9.60,38.40,10.15,0.00,1.00,38.40,43.20,0 -9.60,43.20,10.22,0.00,1.00,43.20,48.00,0 -9.60,48.00,10.28,0.00,1.00,48.00,52.80,0 -14.40,52.80,10.35,0.00,1.00,52.80,57.60,0 -14.40,57.60,10.41,0.00,1.00,57.60,62.40,0 -19.20,62.40,10.47,0.00,1.00,62.40,67.20,0 -24.00,67.20,10.54,0.00,1.00,67.20,72.00,0 -28.80,72.00,10.60,0.00,1.00,72.00,72.00,0 -33.60,72.00,10.67,0.00,1.00,76.80,76.80,0 -48.00,76.80,10.73,0.00,1.00,81.60,81.60,0 -67.20,81.60,10.80,0.00,1.00,86.40,81.60,0 -96.00,81.60,10.86,0.00,1.00,91.20,81.60,0 -120.00,76.80,10.92,0.00,1.00,96.00,76.80,0 -139.20,76.80,10.99,0.00,1.00,100.80,72.00,0 -148.80,72.00,11.05,0.00,1.00,105.60,67.20,0 -153.60,67.20,11.12,0.00,1.00,110.40,62.40,0 -158.40,62.40,11.18,0.00,1.00,115.20,57.60,0 -163.20,57.60,11.24,0.00,1.00,120.00,52.80,0 -168.00,52.80,11.31,0.00,1.00,124.80,48.00,0 -168.00,48.00,11.37,0.00,1.00,129.60,43.20,0 -168.00,43.20,11.44,0.00,1.00,134.40,38.40,0 -172.80,38.40,11.50,0.00,1.00,139.20,33.60,0 -172.80,33.60,11.57,0.00,1.00,144.00,28.80,0 -172.80,28.80,11.63,0.00,1.00,148.80,24.00,0 -177.60,24.00,11.69,0.00,1.00,153.60,19.20,0 -177.60,19.20,11.76,0.00,1.00,158.40,14.40,0 -177.60,14.40,11.82,0.00,1.00,163.20,9.60,0 -177.60,9.60,11.89,0.00,1.00,168.00,4.80,0 -177.60,4.80,11.95,0.00,1.00,172.80,0.00,0 -177.60,0.00,12.02,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,12.08,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,12.14,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,12.21,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,12.27,0.00,1.00,-163.20,-19.20,0 --177.60,-19.20,12.34,0.00,1.00,-158.40,-24.00,0 --177.60,-24.00,12.40,0.00,1.00,-153.60,-28.80,0 --172.80,-28.80,12.47,0.00,1.00,-148.80,-33.60,0 --172.80,-33.60,12.53,0.00,1.00,-144.00,-38.40,0 --172.80,-38.40,12.59,0.00,1.00,-139.20,-43.20,0 --168.00,-43.20,12.66,0.00,1.00,-134.40,-48.00,0 --168.00,-48.00,12.72,0.00,1.00,-129.60,-52.80,0 --168.00,-52.80,12.79,0.00,1.00,-124.80,-57.60,0 --163.20,-57.60,12.85,0.00,1.00,-120.00,-62.40,0 --158.40,-62.40,12.92,0.00,1.00,-115.20,-67.20,0 --153.60,-67.20,12.98,0.00,1.00,-110.40,-72.00,0 --148.80,-72.00,13.04,0.00,1.00,-105.60,-76.80,0 --139.20,-76.80,13.11,0.00,1.00,-100.80,-81.60,0 --120.00,-76.80,13.17,0.00,1.00,-96.00,-81.60,0 --96.00,-81.60,13.24,0.00,1.00,-91.20,-81.60,0 --67.20,-81.60,13.30,0.00,1.00,-86.40,-76.80,0 --48.00,-76.80,13.37,0.00,1.00,-81.60,-72.00,0 --33.60,-72.00,13.43,0.00,1.00,-76.80,-72.00,0 --28.80,-72.00,13.49,0.00,1.00,-72.00,-67.20,0 --24.00,-67.20,13.56,0.00,1.00,-67.20,-62.40,0 --19.20,-62.40,13.62,0.00,1.00,-62.40,-57.60,0 --14.40,-57.60,13.69,0.00,1.00,-57.60,-52.80,0 --14.40,-52.80,13.75,0.00,1.00,-52.80,-48.00,0 --9.60,-48.00,13.82,0.00,1.00,-48.00,-43.20,0 --9.60,-43.20,13.88,0.00,1.00,-43.20,-38.40,0 --9.60,-38.40,13.94,0.00,1.00,-38.40,-33.60,0 --4.80,-33.60,14.01,0.00,1.00,-33.60,-28.80,0 --4.80,-28.80,14.07,0.00,1.00,-28.80,-24.00,0 --4.80,-24.00,14.14,0.00,1.00,-24.00,-19.20,0 --4.80,-19.20,14.20,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,14.27,0.00,1.00,-14.40,-9.60,0 --0.00,-9.60,14.33,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,14.39,0.00,1.00,-4.80,0.00,0 -0.00,0.00,14.46,0.00,1.00,0.00,4.80,0 -0.00,4.80,14.52,0.00,1.00,4.80,9.60,0 -4.80,9.60,14.59,0.00,1.00,9.60,14.40,0 -4.80,14.40,14.65,0.00,1.00,14.40,19.20,0 -4.80,19.20,14.71,0.00,1.00,19.20,24.00,0 -4.80,24.00,14.78,0.00,1.00,24.00,28.80,0 -9.60,28.80,14.84,0.00,1.00,28.80,33.60,0 -9.60,33.60,14.91,0.00,1.00,33.60,38.40,0 -9.60,38.40,14.97,0.00,1.00,38.40,43.20,0 -14.40,43.20,15.04,0.00,1.00,43.20,48.00,0 -14.40,48.00,15.10,0.00,1.00,48.00,52.80,0 -19.20,52.80,15.16,0.00,1.00,52.80,57.60,0 -19.20,52.80,15.23,0.00,1.00,57.60,57.60,0 -24.00,57.60,15.29,0.00,1.00,62.40,62.40,0 -28.80,62.40,15.36,0.00,1.00,67.20,67.20,0 -38.40,67.20,15.42,0.00,1.00,72.00,72.00,0 -48.00,72.00,15.49,0.00,1.00,76.80,72.00,0 -57.60,72.00,15.55,0.00,1.00,81.60,76.80,0 -76.80,76.80,15.61,0.00,1.00,86.40,76.80,0 -96.00,76.80,15.68,0.00,1.00,91.20,76.80,0 -115.20,76.80,15.74,0.00,1.00,96.00,72.00,0 -129.60,72.00,15.81,0.00,1.00,100.80,72.00,0 -139.20,67.20,15.87,0.00,1.00,105.60,67.20,0 -144.00,67.20,15.94,0.00,1.00,110.40,62.40,0 -153.60,62.40,16.00,0.00,1.00,115.20,57.60,0 -158.40,57.60,16.00,0.00,1.00,120.00,52.80,0 -158.40,52.80,15.94,0.00,1.00,124.80,48.00,0 -163.20,48.00,15.87,0.00,1.00,129.60,43.20,0 -168.00,43.20,15.81,0.00,1.00,134.40,38.40,0 -168.00,38.40,15.74,0.00,1.00,139.20,33.60,0 -168.00,33.60,15.68,0.00,1.00,144.00,28.80,0 -172.80,28.80,15.61,0.00,1.00,148.80,24.00,0 -172.80,24.00,15.55,0.00,1.00,153.60,19.20,0 -172.80,19.20,15.49,0.00,1.00,158.40,14.40,0 -177.60,14.40,15.42,0.00,1.00,163.20,9.60,0 -177.60,9.60,15.36,0.00,1.00,168.00,4.80,0 -177.60,4.80,15.29,0.00,1.00,172.80,0.00,0 -177.60,0.00,15.23,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,15.16,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,15.10,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,15.04,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,14.97,0.00,1.00,-163.20,-19.20,0 --172.80,-19.20,14.91,0.00,1.00,-158.40,-24.00,0 --172.80,-24.00,14.84,0.00,1.00,-153.60,-28.80,0 --172.80,-28.80,14.78,0.00,1.00,-148.80,-33.60,0 --168.00,-33.60,14.71,0.00,1.00,-144.00,-38.40,0 --168.00,-38.40,14.65,0.00,1.00,-139.20,-43.20,0 --168.00,-43.20,14.59,0.00,1.00,-134.40,-48.00,0 --163.20,-48.00,14.52,0.00,1.00,-129.60,-52.80,0 --158.40,-52.80,14.46,0.00,1.00,-124.80,-57.60,0 --158.40,-57.60,14.39,0.00,1.00,-120.00,-62.40,0 --153.60,-62.40,14.33,0.00,1.00,-115.20,-67.20,0 --144.00,-67.20,14.27,0.00,1.00,-110.40,-72.00,0 --139.20,-67.20,14.20,0.00,1.00,-105.60,-72.00,0 --129.60,-72.00,14.14,0.00,1.00,-100.80,-76.80,0 --115.20,-76.80,14.07,0.00,1.00,-96.00,-76.80,0 --96.00,-76.80,14.01,0.00,1.00,-91.20,-76.80,0 --76.80,-76.80,13.94,0.00,1.00,-86.40,-72.00,0 --57.60,-72.00,13.88,0.00,1.00,-81.60,-72.00,0 --48.00,-72.00,13.82,0.00,1.00,-76.80,-67.20,0 --38.40,-67.20,13.75,0.00,1.00,-72.00,-62.40,0 --28.80,-62.40,13.69,0.00,1.00,-67.20,-57.60,0 --24.00,-57.60,13.62,0.00,1.00,-62.40,-57.60,0 --19.20,-52.80,13.56,0.00,1.00,-57.60,-52.80,0 --19.20,-52.80,13.49,0.00,1.00,-52.80,-48.00,0 --14.40,-48.00,13.43,0.00,1.00,-48.00,-43.20,0 --14.40,-43.20,13.37,0.00,1.00,-43.20,-38.40,0 --9.60,-38.40,13.30,0.00,1.00,-38.40,-33.60,0 --9.60,-33.60,13.24,0.00,1.00,-33.60,-28.80,0 --9.60,-28.80,13.17,0.00,1.00,-28.80,-24.00,0 --4.80,-24.00,13.11,0.00,1.00,-24.00,-19.20,0 --4.80,-19.20,13.04,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,12.98,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,12.92,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,12.85,0.00,1.00,-4.80,0.00,0 -0.00,0.00,12.79,0.00,1.00,0.00,4.80,0 -0.00,4.80,12.72,0.00,1.00,4.80,9.60,0 -4.80,9.60,12.66,0.00,1.00,9.60,14.40,0 -4.80,14.40,12.59,0.00,1.00,14.40,19.20,0 -4.80,19.20,12.53,0.00,1.00,19.20,24.00,0 -9.60,24.00,12.47,0.00,1.00,24.00,28.80,0 -9.60,28.80,12.40,0.00,1.00,28.80,33.60,0 -14.40,33.60,12.34,0.00,1.00,33.60,38.40,0 -14.40,33.60,12.27,0.00,1.00,38.40,38.40,0 -19.20,38.40,12.21,0.00,1.00,43.20,43.20,0 -19.20,43.20,12.14,0.00,1.00,48.00,48.00,0 -24.00,48.00,12.08,0.00,1.00,52.80,52.80,0 -28.80,52.80,12.02,0.00,1.00,57.60,57.60,0 -33.60,57.60,11.95,0.00,1.00,62.40,62.40,0 -38.40,62.40,11.89,0.00,1.00,67.20,62.40,0 -43.20,62.40,11.82,0.00,1.00,72.00,67.20,0 -52.80,67.20,11.76,0.00,1.00,76.80,72.00,0 -67.20,67.20,11.69,0.00,1.00,81.60,72.00,0 -76.80,72.00,11.63,0.00,1.00,86.40,72.00,0 -96.00,72.00,11.57,0.00,1.00,91.20,72.00,0 -105.60,72.00,11.50,0.00,1.00,96.00,67.20,0 -120.00,67.20,11.44,0.00,1.00,100.80,67.20,0 -129.60,67.20,11.37,0.00,1.00,105.60,62.40,0 -139.20,62.40,11.31,0.00,1.00,110.40,57.60,0 -144.00,57.60,11.24,0.00,1.00,115.20,57.60,0 -148.80,52.80,11.18,0.00,1.00,120.00,52.80,0 -153.60,52.80,11.12,0.00,1.00,124.80,48.00,0 -158.40,48.00,11.05,0.00,1.00,129.60,43.20,0 -163.20,43.20,10.99,0.00,1.00,134.40,38.40,0 -163.20,38.40,10.92,0.00,1.00,139.20,33.60,0 -168.00,33.60,10.86,0.00,1.00,144.00,28.80,0 -168.00,28.80,10.80,0.00,1.00,148.80,24.00,0 -172.80,24.00,10.73,0.00,1.00,153.60,19.20,0 -172.80,19.20,10.67,0.00,1.00,158.40,14.40,0 -172.80,14.40,10.60,0.00,1.00,163.20,9.60,0 -177.60,9.60,10.54,0.00,1.00,168.00,4.80,0 -177.60,4.80,10.47,0.00,1.00,172.80,0.00,0 -177.60,0.00,10.41,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.35,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,10.28,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,10.22,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,10.15,0.00,1.00,-163.20,-19.20,0 --172.80,-19.20,10.09,0.00,1.00,-158.40,-24.00,0 --172.80,-24.00,10.02,0.00,1.00,-153.60,-28.80,0 --168.00,-28.80,9.96,0.00,1.00,-148.80,-33.60,0 --168.00,-33.60,9.90,0.00,1.00,-144.00,-38.40,0 --163.20,-38.40,9.83,0.00,1.00,-139.20,-43.20,0 --163.20,-43.20,9.77,0.00,1.00,-134.40,-48.00,0 --158.40,-48.00,9.70,0.00,1.00,-129.60,-52.80,0 --153.60,-52.80,9.64,0.00,1.00,-124.80,-57.60,0 --148.80,-52.80,9.57,0.00,1.00,-120.00,-57.60,0 --144.00,-57.60,9.51,0.00,1.00,-115.20,-62.40,0 --139.20,-62.40,9.45,0.00,1.00,-110.40,-67.20,0 --129.60,-67.20,9.38,0.00,1.00,-105.60,-67.20,0 --120.00,-67.20,9.32,0.00,1.00,-100.80,-72.00,0 --105.60,-72.00,9.25,0.00,1.00,-96.00,-72.00,0 --96.00,-72.00,9.19,0.00,1.00,-91.20,-72.00,0 --76.80,-72.00,9.12,0.00,1.00,-86.40,-72.00,0 --67.20,-67.20,9.06,0.00,1.00,-81.60,-67.20,0 --52.80,-67.20,9.00,0.00,1.00,-76.80,-62.40,0 --43.20,-62.40,8.93,0.00,1.00,-72.00,-62.40,0 --38.40,-62.40,8.87,0.00,1.00,-67.20,-57.60,0 --33.60,-57.60,8.80,0.00,1.00,-62.40,-52.80,0 --28.80,-52.80,8.74,0.00,1.00,-57.60,-48.00,0 --24.00,-48.00,8.67,0.00,1.00,-52.80,-43.20,0 --19.20,-43.20,8.61,0.00,1.00,-48.00,-38.40,0 --19.20,-38.40,8.55,0.00,1.00,-43.20,-38.40,0 --14.40,-33.60,8.48,0.00,1.00,-38.40,-33.60,0 --14.40,-33.60,8.42,0.00,1.00,-33.60,-28.80,0 --9.60,-28.80,8.35,0.00,1.00,-28.80,-24.00,0 --9.60,-24.00,8.29,0.00,1.00,-24.00,-19.20,0 --4.80,-19.20,8.22,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,8.16,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,8.10,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,8.03,0.00,1.00,-4.80,0.00,0 -0.00,0.00,7.97,0.00,1.00,0.00,4.80,0 -0.00,4.80,7.90,0.00,1.00,4.80,9.60,0 -4.80,9.60,7.84,0.00,1.00,9.60,14.40,0 -4.80,14.40,7.78,0.00,1.00,14.40,19.20,0 -9.60,19.20,7.71,0.00,1.00,19.20,24.00,0 -9.60,24.00,7.65,0.00,1.00,24.00,24.00,0 -14.40,24.00,7.58,0.00,1.00,28.80,28.80,0 -14.40,28.80,7.52,0.00,1.00,33.60,33.60,0 -19.20,33.60,7.45,0.00,1.00,33.60,38.40,0 -19.20,38.40,7.39,0.00,1.00,38.40,43.20,0 -24.00,43.20,7.33,0.00,1.00,43.20,48.00,0 -28.80,48.00,7.26,0.00,1.00,48.00,52.80,0 -33.60,52.80,7.20,0.00,1.00,57.60,52.80,0 -38.40,52.80,7.13,0.00,1.00,62.40,57.60,0 -43.20,57.60,7.07,0.00,1.00,67.20,62.40,0 -52.80,62.40,7.00,0.00,1.00,72.00,62.40,0 -62.40,62.40,6.94,0.00,1.00,76.80,67.20,0 -72.00,62.40,6.88,0.00,1.00,81.60,67.20,0 -81.60,67.20,6.81,0.00,1.00,86.40,67.20,0 -91.20,67.20,6.75,0.00,1.00,91.20,67.20,0 -105.60,67.20,6.68,0.00,1.00,96.00,67.20,0 -115.20,62.40,6.62,0.00,1.00,100.80,62.40,0 -124.80,62.40,6.55,0.00,1.00,105.60,57.60,0 -134.40,57.60,6.49,0.00,1.00,110.40,57.60,0 -139.20,57.60,6.43,0.00,1.00,115.20,52.80,0 -144.00,52.80,6.36,0.00,1.00,120.00,48.00,0 -148.80,48.00,6.30,0.00,1.00,129.60,43.20,0 -153.60,43.20,6.23,0.00,1.00,134.40,43.20,0 -158.40,38.40,6.17,0.00,1.00,139.20,38.40,0 -158.40,38.40,6.10,0.00,1.00,144.00,33.60,0 -163.20,33.60,6.04,0.00,1.00,148.80,28.80,0 -168.00,28.80,5.98,0.00,1.00,148.80,24.00,0 -168.00,24.00,5.91,0.00,1.00,153.60,19.20,0 -172.80,19.20,5.85,0.00,1.00,158.40,14.40,0 -172.80,14.40,5.78,0.00,1.00,163.20,9.60,0 -172.80,9.60,5.72,0.00,1.00,168.00,4.80,0 -177.60,4.80,5.65,0.00,1.00,172.80,0.00,0 -177.60,0.00,5.59,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,5.53,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,5.46,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,5.40,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,5.33,0.00,1.00,-163.20,-19.20,0 --172.80,-19.20,5.27,0.00,1.00,-158.40,-24.00,0 --168.00,-24.00,5.20,0.00,1.00,-153.60,-28.80,0 --168.00,-28.80,5.14,0.00,1.00,-148.80,-33.60,0 --163.20,-33.60,5.08,0.00,1.00,-148.80,-38.40,0 --158.40,-38.40,5.01,0.00,1.00,-144.00,-43.20,0 --158.40,-38.40,4.95,0.00,1.00,-139.20,-43.20,0 --153.60,-43.20,4.88,0.00,1.00,-134.40,-48.00,0 --148.80,-48.00,4.82,0.00,1.00,-129.60,-52.80,0 --144.00,-52.80,4.76,0.00,1.00,-120.00,-57.60,0 --139.20,-57.60,4.69,0.00,1.00,-115.20,-57.60,0 --134.40,-57.60,4.63,0.00,1.00,-110.40,-62.40,0 --124.80,-62.40,4.56,0.00,1.00,-105.60,-67.20,0 --115.20,-62.40,4.50,0.00,1.00,-100.80,-67.20,0 --105.60,-67.20,4.43,0.00,1.00,-96.00,-67.20,0 --91.20,-67.20,4.37,0.00,1.00,-91.20,-67.20,0 --81.60,-67.20,4.31,0.00,1.00,-86.40,-67.20,0 --72.00,-62.40,4.24,0.00,1.00,-81.60,-62.40,0 --62.40,-62.40,4.18,0.00,1.00,-76.80,-62.40,0 --52.80,-62.40,4.11,0.00,1.00,-72.00,-57.60,0 --43.20,-57.60,4.05,0.00,1.00,-67.20,-52.80,0 --38.40,-52.80,3.98,0.00,1.00,-62.40,-52.80,0 --33.60,-52.80,3.92,0.00,1.00,-57.60,-48.00,0 --28.80,-48.00,3.86,0.00,1.00,-48.00,-43.20,0 --24.00,-43.20,3.79,0.00,1.00,-43.20,-38.40,0 --19.20,-38.40,3.73,0.00,1.00,-38.40,-33.60,0 --19.20,-33.60,3.66,0.00,1.00,-33.60,-28.80,0 --14.40,-28.80,3.60,0.00,1.00,-33.60,-24.00,0 --14.40,-24.00,3.53,0.00,1.00,-28.80,-24.00,0 --9.60,-24.00,3.47,0.00,1.00,-24.00,-19.20,0 --9.60,-19.20,3.41,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,3.34,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,3.28,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,3.21,0.00,1.00,-4.80,0.00,0 -0.00,0.00,3.15,0.00,1.00,0.00,4.80,0 -0.00,4.80,3.08,0.00,1.00,4.80,9.60,0 -4.80,9.60,3.02,0.00,1.00,9.60,14.40,0 -4.80,14.40,2.96,0.00,1.00,14.40,19.20,0 -9.60,14.40,2.89,0.00,1.00,19.20,19.20,0 -14.40,19.20,2.83,0.00,1.00,19.20,24.00,0 -14.40,24.00,2.76,0.00,1.00,24.00,28.80,0 -19.20,28.80,2.70,0.00,1.00,28.80,33.60,0 -19.20,33.60,2.63,0.00,1.00,33.60,38.40,0 -24.00,38.40,2.57,0.00,1.00,38.40,43.20,0 -28.80,38.40,2.51,0.00,1.00,43.20,43.20,0 -33.60,43.20,2.44,0.00,1.00,48.00,48.00,0 -38.40,48.00,2.38,0.00,1.00,52.80,52.80,0 -43.20,52.80,2.31,0.00,1.00,57.60,52.80,0 -48.00,52.80,2.25,0.00,1.00,62.40,57.60,0 -57.60,57.60,2.18,0.00,1.00,72.00,57.60,0 -62.40,57.60,2.12,0.00,1.00,76.80,62.40,0 -72.00,62.40,2.06,0.00,1.00,81.60,62.40,0 -81.60,62.40,1.99,0.00,1.00,86.40,62.40,0 -91.20,62.40,1.93,0.00,1.00,91.20,62.40,0 -100.80,62.40,1.86,0.00,1.00,96.00,62.40,0 -110.40,57.60,1.80,0.00,1.00,100.80,57.60,0 -120.00,57.60,1.73,0.00,1.00,105.60,57.60,0 -129.60,57.60,1.67,0.00,1.00,115.20,52.80,0 -134.40,52.80,1.61,0.00,1.00,120.00,48.00,0 -139.20,48.00,1.54,0.00,1.00,124.80,48.00,0 -144.00,48.00,1.48,0.00,1.00,129.60,43.20,0 -148.80,43.20,1.41,0.00,1.00,134.40,38.40,0 -153.60,38.40,1.35,0.00,1.00,139.20,33.60,0 -158.40,33.60,1.29,0.00,1.00,144.00,33.60,0 -158.40,28.80,1.22,0.00,1.00,148.80,28.80,0 -163.20,28.80,1.16,0.00,1.00,153.60,24.00,0 -168.00,24.00,1.09,0.00,1.00,158.40,19.20,0 -168.00,19.20,1.03,0.00,1.00,163.20,14.40,0 -172.80,14.40,0.96,0.00,1.00,163.20,9.60,0 -172.80,9.60,0.90,0.00,1.00,168.00,4.80,0 -177.60,4.80,0.84,0.00,1.00,172.80,0.00,0 -177.60,0.00,0.77,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,0.71,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,0.64,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,0.58,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,0.51,0.00,1.00,-163.20,-19.20,0 --168.00,-19.20,0.45,0.00,1.00,-163.20,-24.00,0 --168.00,-24.00,0.39,0.00,1.00,-158.40,-28.80,0 --163.20,-28.80,0.32,0.00,1.00,-153.60,-33.60,0 --158.40,-28.80,0.26,0.00,1.00,-148.80,-33.60,0 --158.40,-33.60,0.19,0.00,1.00,-144.00,-38.40,0 --153.60,-38.40,0.13,0.00,1.00,-139.20,-43.20,0 --148.80,-43.20,0.06,0.00,1.00,-134.40,-48.00,0 --144.00,-48.00,0.00,0.00,1.00,-129.60,-48.00,0 --139.20,-48.00,0.00,0.00,1.00,-124.80,-52.80,0 --134.40,-52.80,0.16,0.00,1.00,-120.00,-57.60,0 --129.60,-57.60,0.32,0.00,1.00,-115.20,-57.60,0 --120.00,-57.60,0.48,0.00,1.00,-105.60,-62.40,0 --110.40,-57.60,0.65,0.00,1.00,-100.80,-62.40,0 --100.80,-62.40,0.81,0.00,1.00,-96.00,-62.40,0 --91.20,-62.40,0.97,0.00,1.00,-91.20,-62.40,0 --81.60,-62.40,1.13,0.00,1.00,-86.40,-62.40,0 --72.00,-62.40,1.29,0.00,1.00,-81.60,-57.60,0 --62.40,-57.60,1.45,0.00,1.00,-76.80,-57.60,0 --57.60,-57.60,1.62,0.00,1.00,-72.00,-52.80,0 --48.00,-52.80,1.78,0.00,1.00,-62.40,-52.80,0 --43.20,-52.80,1.94,0.00,1.00,-57.60,-48.00,0 --38.40,-48.00,2.10,0.00,1.00,-52.80,-43.20,0 --33.60,-43.20,2.26,0.00,1.00,-48.00,-43.20,0 --28.80,-38.40,2.42,0.00,1.00,-43.20,-38.40,0 --24.00,-38.40,2.59,0.00,1.00,-38.40,-33.60,0 --19.20,-33.60,2.75,0.00,1.00,-33.60,-28.80,0 --19.20,-28.80,2.91,0.00,1.00,-28.80,-24.00,0 --14.40,-24.00,3.07,0.00,1.00,-24.00,-19.20,0 --14.40,-19.20,3.23,0.00,1.00,-19.20,-19.20,0 --9.60,-14.40,3.39,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,3.56,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,3.72,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,3.88,0.00,1.00,-4.80,0.00,0 -0.00,0.00,4.04,0.00,1.00,0.00,4.80,0 -4.80,4.80,4.20,0.00,1.00,4.80,9.60,0 -4.80,9.60,4.36,0.00,1.00,9.60,14.40,0 -9.60,9.60,4.53,0.00,1.00,14.40,14.40,0 -9.60,14.40,4.69,0.00,1.00,14.40,19.20,0 -14.40,19.20,4.85,0.00,1.00,19.20,24.00,0 -19.20,24.00,5.01,0.00,1.00,24.00,28.80,0 -19.20,28.80,5.17,0.00,1.00,28.80,33.60,0 -24.00,28.80,5.33,0.00,1.00,33.60,33.60,0 -28.80,33.60,5.49,0.00,1.00,38.40,38.40,0 -33.60,38.40,5.66,0.00,1.00,43.20,43.20,0 -38.40,43.20,5.82,0.00,1.00,48.00,43.20,0 -43.20,43.20,5.98,0.00,1.00,52.80,48.00,0 -48.00,48.00,6.14,0.00,1.00,57.60,52.80,0 -52.80,48.00,6.30,0.00,1.00,62.40,52.80,0 -57.60,52.80,6.46,0.00,1.00,67.20,57.60,0 -67.20,52.80,6.63,0.00,1.00,72.00,57.60,0 -76.80,57.60,6.79,0.00,1.00,81.60,57.60,0 -81.60,57.60,6.95,0.00,1.00,86.40,57.60,0 -91.20,57.60,7.11,0.00,1.00,91.20,57.60,0 -100.80,57.60,7.27,0.00,1.00,96.00,57.60,0 -110.40,52.80,7.43,0.00,1.00,100.80,52.80,0 -115.20,52.80,7.60,0.00,1.00,110.40,52.80,0 -124.80,52.80,7.76,0.00,1.00,115.20,48.00,0 -129.60,48.00,7.92,0.00,1.00,120.00,48.00,0 -134.40,48.00,8.08,0.00,1.00,124.80,43.20,0 -139.20,43.20,8.24,0.00,1.00,129.60,38.40,0 -144.00,38.40,8.40,0.00,1.00,134.40,38.40,0 -148.80,38.40,8.57,0.00,1.00,139.20,33.60,0 -153.60,33.60,8.73,0.00,1.00,144.00,28.80,0 -158.40,28.80,8.89,0.00,1.00,148.80,24.00,0 -163.20,24.00,9.05,0.00,1.00,153.60,24.00,0 -163.20,24.00,9.21,0.00,1.00,158.40,19.20,0 -168.00,19.20,9.37,0.00,1.00,163.20,14.40,0 -172.80,14.40,9.54,0.00,1.00,168.00,9.60,0 -172.80,9.60,9.70,0.00,1.00,168.00,4.80,0 -177.60,4.80,9.86,0.00,1.00,172.80,0.00,0 -177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.18,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,10.34,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,10.51,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,10.67,0.00,1.00,-168.00,-19.20,0 --168.00,-19.20,10.83,0.00,1.00,-163.20,-24.00,0 --163.20,-24.00,10.99,0.00,1.00,-158.40,-24.00,0 --163.20,-24.00,11.15,0.00,1.00,-153.60,-28.80,0 --158.40,-28.80,11.31,0.00,1.00,-148.80,-33.60,0 --153.60,-33.60,11.47,0.00,1.00,-144.00,-38.40,0 --148.80,-38.40,11.64,0.00,1.00,-139.20,-38.40,0 --144.00,-38.40,11.80,0.00,1.00,-134.40,-43.20,0 --139.20,-43.20,11.96,0.00,1.00,-129.60,-48.00,0 --134.40,-48.00,12.12,0.00,1.00,-124.80,-48.00,0 --129.60,-48.00,12.28,0.00,1.00,-120.00,-52.80,0 --124.80,-52.80,12.44,0.00,1.00,-115.20,-52.80,0 --115.20,-52.80,12.61,0.00,1.00,-110.40,-57.60,0 --110.40,-52.80,12.77,0.00,1.00,-100.80,-57.60,0 --100.80,-57.60,12.93,0.00,1.00,-96.00,-57.60,0 --91.20,-57.60,13.09,0.00,1.00,-91.20,-57.60,0 --81.60,-57.60,13.25,0.00,1.00,-86.40,-57.60,0 --76.80,-57.60,13.41,0.00,1.00,-81.60,-57.60,0 --67.20,-52.80,13.58,0.00,1.00,-72.00,-52.80,0 --57.60,-52.80,13.74,0.00,1.00,-67.20,-52.80,0 --52.80,-48.00,13.90,0.00,1.00,-62.40,-48.00,0 --48.00,-48.00,14.06,0.00,1.00,-57.60,-43.20,0 --43.20,-43.20,14.22,0.00,1.00,-52.80,-43.20,0 --38.40,-43.20,14.38,0.00,1.00,-48.00,-38.40,0 --33.60,-38.40,14.55,0.00,1.00,-43.20,-33.60,0 --28.80,-33.60,14.71,0.00,1.00,-38.40,-33.60,0 --24.00,-28.80,14.87,0.00,1.00,-33.60,-28.80,0 --19.20,-28.80,15.03,0.00,1.00,-28.80,-24.00,0 --19.20,-24.00,15.19,0.00,1.00,-24.00,-19.20,0 --14.40,-19.20,15.35,0.00,1.00,-19.20,-14.40,0 --9.60,-14.40,15.52,0.00,1.00,-14.40,-14.40,0 --9.60,-9.60,15.68,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,15.84,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,16.00,0.00,1.00,-4.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,0.00,4.80,0 -4.80,4.80,15.84,0.00,1.00,4.80,9.60,0 -4.80,9.60,15.68,0.00,1.00,9.60,9.60,0 -9.60,9.60,15.52,0.00,1.00,9.60,14.40,0 -14.40,14.40,15.35,0.00,1.00,14.40,19.20,0 -14.40,19.20,15.19,0.00,1.00,19.20,24.00,0 -19.20,24.00,15.03,0.00,1.00,24.00,24.00,0 -24.00,24.00,14.87,0.00,1.00,28.80,28.80,0 -24.00,28.80,14.71,0.00,1.00,33.60,33.60,0 -28.80,33.60,14.55,0.00,1.00,38.40,38.40,0 -33.60,33.60,14.38,0.00,1.00,43.20,38.40,0 -38.40,38.40,14.22,0.00,1.00,48.00,43.20,0 -43.20,43.20,14.06,0.00,1.00,52.80,43.20,0 -48.00,43.20,13.90,0.00,1.00,57.60,48.00,0 -57.60,48.00,13.74,0.00,1.00,62.40,48.00,0 -62.40,48.00,13.58,0.00,1.00,67.20,52.80,0 -67.20,48.00,13.41,0.00,1.00,72.00,52.80,0 -76.80,52.80,13.25,0.00,1.00,81.60,52.80,0 -86.40,52.80,13.09,0.00,1.00,86.40,52.80,0 -91.20,52.80,12.93,0.00,1.00,91.20,52.80,0 -100.80,52.80,12.77,0.00,1.00,96.00,52.80,0 -105.60,48.00,12.61,0.00,1.00,105.60,48.00,0 -115.20,48.00,12.44,0.00,1.00,110.40,48.00,0 -120.00,48.00,12.28,0.00,1.00,115.20,48.00,0 -124.80,43.20,12.12,0.00,1.00,120.00,43.20,0 -134.40,43.20,11.96,0.00,1.00,124.80,43.20,0 -139.20,38.40,11.80,0.00,1.00,129.60,38.40,0 -144.00,38.40,11.64,0.00,1.00,134.40,33.60,0 -148.80,33.60,11.47,0.00,1.00,139.20,33.60,0 -153.60,28.80,11.31,0.00,1.00,144.00,28.80,0 -153.60,28.80,11.15,0.00,1.00,148.80,24.00,0 -158.40,24.00,10.99,0.00,1.00,153.60,19.20,0 -163.20,19.20,10.83,0.00,1.00,158.40,19.20,0 -168.00,14.40,10.67,0.00,1.00,163.20,14.40,0 -168.00,14.40,10.51,0.00,1.00,168.00,9.60,0 -172.80,9.60,10.34,0.00,1.00,172.80,4.80,0 -177.60,4.80,10.18,0.00,1.00,172.80,0.00,0 -177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,9.86,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,9.70,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,9.54,0.00,1.00,-172.80,-14.40,0 --168.00,-14.40,9.37,0.00,1.00,-168.00,-19.20,0 --168.00,-14.40,9.21,0.00,1.00,-163.20,-19.20,0 --163.20,-19.20,9.05,0.00,1.00,-158.40,-24.00,0 --158.40,-24.00,8.89,0.00,1.00,-153.60,-28.80,0 --153.60,-28.80,8.73,0.00,1.00,-148.80,-33.60,0 --153.60,-28.80,8.57,0.00,1.00,-144.00,-33.60,0 --148.80,-33.60,8.40,0.00,1.00,-139.20,-38.40,0 --144.00,-38.40,8.24,0.00,1.00,-134.40,-43.20,0 --139.20,-38.40,8.08,0.00,1.00,-129.60,-43.20,0 --134.40,-43.20,7.92,0.00,1.00,-124.80,-48.00,0 --124.80,-43.20,7.76,0.00,1.00,-120.00,-48.00,0 --120.00,-48.00,7.60,0.00,1.00,-115.20,-48.00,0 --115.20,-48.00,7.43,0.00,1.00,-110.40,-52.80,0 --105.60,-48.00,7.27,0.00,1.00,-105.60,-52.80,0 --100.80,-52.80,7.11,0.00,1.00,-96.00,-52.80,0 --91.20,-52.80,6.95,0.00,1.00,-91.20,-52.80,0 --86.40,-52.80,6.79,0.00,1.00,-86.40,-52.80,0 --76.80,-52.80,6.63,0.00,1.00,-81.60,-52.80,0 --67.20,-48.00,6.46,0.00,1.00,-72.00,-48.00,0 --62.40,-48.00,6.30,0.00,1.00,-67.20,-48.00,0 --57.60,-48.00,6.14,0.00,1.00,-62.40,-43.20,0 --48.00,-43.20,5.98,0.00,1.00,-57.60,-43.20,0 --43.20,-43.20,5.82,0.00,1.00,-52.80,-38.40,0 --38.40,-38.40,5.66,0.00,1.00,-48.00,-38.40,0 --33.60,-33.60,5.49,0.00,1.00,-43.20,-33.60,0 --28.80,-33.60,5.33,0.00,1.00,-38.40,-28.80,0 --24.00,-28.80,5.17,0.00,1.00,-33.60,-24.00,0 --24.00,-24.00,5.01,0.00,1.00,-28.80,-24.00,0 --19.20,-24.00,4.85,0.00,1.00,-24.00,-19.20,0 --14.40,-19.20,4.69,0.00,1.00,-19.20,-14.40,0 --14.40,-14.40,4.53,0.00,1.00,-14.40,-9.60,0 --9.60,-9.60,4.36,0.00,1.00,-9.60,-9.60,0 --4.80,-9.60,4.20,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,4.04,0.00,1.00,-4.80,0.00,0 -0.00,0.00,3.88,0.00,1.00,0.00,4.80,0 -4.80,4.80,3.72,0.00,1.00,4.80,4.80,0 -4.80,4.80,3.56,0.00,1.00,4.80,9.60,0 -9.60,9.60,3.39,0.00,1.00,9.60,14.40,0 -14.40,14.40,3.23,0.00,1.00,14.40,19.20,0 -19.20,19.20,3.07,0.00,1.00,19.20,19.20,0 -19.20,19.20,2.91,0.00,1.00,24.00,24.00,0 -24.00,24.00,2.75,0.00,1.00,24.00,28.80,0 -28.80,28.80,2.59,0.00,1.00,28.80,28.80,0 -33.60,28.80,2.42,0.00,1.00,33.60,33.60,0 -38.40,33.60,2.26,0.00,1.00,38.40,38.40,0 -43.20,33.60,2.10,0.00,1.00,43.20,38.40,0 -48.00,38.40,1.94,0.00,1.00,48.00,43.20,0 -52.80,38.40,1.78,0.00,1.00,52.80,43.20,0 -57.60,43.20,1.62,0.00,1.00,62.40,43.20,0 -62.40,43.20,1.45,0.00,1.00,67.20,48.00,0 -72.00,43.20,1.29,0.00,1.00,72.00,48.00,0 -76.80,48.00,1.13,0.00,1.00,76.80,48.00,0 -86.40,48.00,0.97,0.00,1.00,86.40,48.00,0 -91.20,48.00,0.81,0.00,1.00,91.20,48.00,0 -100.80,48.00,0.65,0.00,1.00,96.00,48.00,0 -105.60,48.00,0.48,0.00,1.00,105.60,48.00,0 -110.40,43.20,0.32,0.00,1.00,110.40,43.20,0 -120.00,43.20,0.16,0.00,1.00,115.20,43.20,0 -124.80,43.20,0.00,0.00,1.00,124.80,38.40,0 -129.60,38.40,0.00,0.00,1.00,129.60,38.40,0 -134.40,38.40,0.04,0.00,1.00,134.40,33.60,0 -139.20,33.60,0.08,0.00,1.00,139.20,33.60,0 -144.00,33.60,0.12,0.00,1.00,144.00,28.80,0 -148.80,28.80,0.16,0.00,1.00,148.80,24.00,0 -153.60,24.00,0.20,0.00,1.00,153.60,24.00,0 -158.40,24.00,0.24,0.00,1.00,158.40,19.20,0 -163.20,19.20,0.28,0.00,1.00,158.40,14.40,0 -163.20,14.40,0.32,0.00,1.00,163.20,14.40,0 -168.00,14.40,0.36,0.00,1.00,168.00,9.60,0 -172.80,9.60,0.40,0.00,1.00,172.80,4.80,0 -172.80,4.80,0.44,0.00,1.00,172.80,0.00,0 -177.60,0.00,0.48,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,0.52,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,0.56,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,0.60,0.00,1.00,-172.80,-14.40,0 --168.00,-14.40,0.64,0.00,1.00,-168.00,-14.40,0 --163.20,-14.40,0.68,0.00,1.00,-163.20,-19.20,0 --163.20,-19.20,0.72,0.00,1.00,-158.40,-24.00,0 --158.40,-24.00,0.76,0.00,1.00,-158.40,-24.00,0 --153.60,-24.00,0.80,0.00,1.00,-153.60,-28.80,0 --148.80,-28.80,0.84,0.00,1.00,-148.80,-33.60,0 --144.00,-33.60,0.88,0.00,1.00,-144.00,-33.60,0 --139.20,-33.60,0.92,0.00,1.00,-139.20,-38.40,0 --134.40,-38.40,0.96,0.00,1.00,-134.40,-38.40,0 --129.60,-38.40,1.00,0.00,1.00,-129.60,-43.20,0 --124.80,-43.20,1.04,0.00,1.00,-124.80,-43.20,0 --120.00,-43.20,1.08,0.00,1.00,-115.20,-48.00,0 --110.40,-43.20,1.12,0.00,1.00,-110.40,-48.00,0 --105.60,-48.00,1.16,0.00,1.00,-105.60,-48.00,0 --100.80,-48.00,1.20,0.00,1.00,-96.00,-48.00,0 --91.20,-48.00,1.24,0.00,1.00,-91.20,-48.00,0 --86.40,-48.00,1.28,0.00,1.00,-86.40,-48.00,0 --76.80,-48.00,1.32,0.00,1.00,-76.80,-48.00,0 --72.00,-43.20,1.36,0.00,1.00,-72.00,-43.20,0 --62.40,-43.20,1.40,0.00,1.00,-67.20,-43.20,0 --57.60,-43.20,1.44,0.00,1.00,-62.40,-43.20,0 --52.80,-38.40,1.48,0.00,1.00,-52.80,-38.40,0 --48.00,-38.40,1.52,0.00,1.00,-48.00,-38.40,0 --43.20,-33.60,1.56,0.00,1.00,-43.20,-33.60,0 --38.40,-33.60,1.60,0.00,1.00,-38.40,-28.80,0 --33.60,-28.80,1.64,0.00,1.00,-33.60,-28.80,0 --28.80,-28.80,1.68,0.00,1.00,-28.80,-24.00,0 --24.00,-24.00,1.72,0.00,1.00,-24.00,-19.20,0 --19.20,-19.20,1.76,0.00,1.00,-24.00,-19.20,0 --19.20,-19.20,1.80,0.00,1.00,-19.20,-14.40,0 --14.40,-14.40,1.84,0.00,1.00,-14.40,-9.60,0 --9.60,-9.60,1.88,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,1.92,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,1.96,0.00,1.00,-4.80,0.00,0 -0.00,0.00,2.01,0.00,1.00,0.00,4.80,0 -4.80,4.80,2.05,0.00,1.00,4.80,4.80,0 -4.80,4.80,2.09,0.00,1.00,4.80,9.60,0 -9.60,9.60,2.13,0.00,1.00,9.60,14.40,0 -14.40,14.40,2.17,0.00,1.00,14.40,14.40,0 -19.20,14.40,2.21,0.00,1.00,14.40,19.20,0 -24.00,19.20,2.25,0.00,1.00,19.20,24.00,0 -24.00,24.00,2.29,0.00,1.00,24.00,24.00,0 -28.80,24.00,2.33,0.00,1.00,28.80,28.80,0 -33.60,28.80,2.37,0.00,1.00,33.60,28.80,0 -38.40,28.80,2.41,0.00,1.00,38.40,33.60,0 -43.20,33.60,2.45,0.00,1.00,43.20,33.60,0 -48.00,33.60,2.49,0.00,1.00,48.00,38.40,0 -52.80,38.40,2.53,0.00,1.00,52.80,38.40,0 -62.40,38.40,2.57,0.00,1.00,57.60,38.40,0 -67.20,38.40,2.61,0.00,1.00,62.40,43.20,0 -72.00,38.40,2.65,0.00,1.00,72.00,43.20,0 -76.80,43.20,2.69,0.00,1.00,76.80,43.20,0 -86.40,43.20,2.73,0.00,1.00,86.40,43.20,0 -91.20,43.20,2.77,0.00,1.00,91.20,43.20,0 -96.00,43.20,2.81,0.00,1.00,100.80,43.20,0 -105.60,43.20,2.85,0.00,1.00,105.60,43.20,0 -110.40,38.40,2.89,0.00,1.00,110.40,38.40,0 -115.20,38.40,2.93,0.00,1.00,120.00,38.40,0 -120.00,38.40,2.97,0.00,1.00,124.80,38.40,0 -129.60,33.60,3.01,0.00,1.00,129.60,33.60,0 -134.40,33.60,3.05,0.00,1.00,134.40,33.60,0 -139.20,28.80,3.09,0.00,1.00,139.20,28.80,0 -144.00,28.80,3.13,0.00,1.00,144.00,28.80,0 -148.80,24.00,3.17,0.00,1.00,148.80,24.00,0 -153.60,24.00,3.21,0.00,1.00,153.60,19.20,0 -153.60,19.20,3.25,0.00,1.00,158.40,19.20,0 -158.40,19.20,3.29,0.00,1.00,163.20,14.40,0 -163.20,14.40,3.33,0.00,1.00,163.20,9.60,0 -168.00,9.60,3.37,0.00,1.00,168.00,9.60,0 -172.80,9.60,3.41,0.00,1.00,172.80,4.80,0 -172.80,4.80,3.45,0.00,1.00,172.80,0.00,0 -177.60,0.00,3.49,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,3.53,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,3.57,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,3.61,0.00,1.00,-172.80,-9.60,0 --168.00,-9.60,3.65,0.00,1.00,-168.00,-14.40,0 --163.20,-14.40,3.69,0.00,1.00,-163.20,-19.20,0 --158.40,-19.20,3.73,0.00,1.00,-163.20,-19.20,0 --153.60,-19.20,3.77,0.00,1.00,-158.40,-24.00,0 --153.60,-24.00,3.81,0.00,1.00,-153.60,-28.80,0 --148.80,-24.00,3.85,0.00,1.00,-148.80,-28.80,0 --144.00,-28.80,3.89,0.00,1.00,-144.00,-33.60,0 --139.20,-28.80,3.93,0.00,1.00,-139.20,-33.60,0 --134.40,-33.60,3.97,0.00,1.00,-134.40,-38.40,0 --129.60,-33.60,4.01,0.00,1.00,-129.60,-38.40,0 --120.00,-38.40,4.05,0.00,1.00,-124.80,-38.40,0 --115.20,-38.40,4.09,0.00,1.00,-120.00,-43.20,0 --110.40,-38.40,4.13,0.00,1.00,-110.40,-43.20,0 --105.60,-43.20,4.17,0.00,1.00,-105.60,-43.20,0 --96.00,-43.20,4.21,0.00,1.00,-100.80,-43.20,0 --91.20,-43.20,4.25,0.00,1.00,-91.20,-43.20,0 --86.40,-43.20,4.29,0.00,1.00,-86.40,-43.20,0 --76.80,-43.20,4.33,0.00,1.00,-76.80,-43.20,0 --72.00,-38.40,4.37,0.00,1.00,-72.00,-38.40,0 --67.20,-38.40,4.41,0.00,1.00,-62.40,-38.40,0 --62.40,-38.40,4.45,0.00,1.00,-57.60,-38.40,0 --52.80,-38.40,4.49,0.00,1.00,-52.80,-33.60,0 --48.00,-33.60,4.53,0.00,1.00,-48.00,-33.60,0 --43.20,-33.60,4.57,0.00,1.00,-43.20,-28.80,0 --38.40,-28.80,4.61,0.00,1.00,-38.40,-28.80,0 --33.60,-28.80,4.65,0.00,1.00,-33.60,-24.00,0 --28.80,-24.00,4.69,0.00,1.00,-28.80,-24.00,0 --24.00,-24.00,4.73,0.00,1.00,-24.00,-19.20,0 --24.00,-19.20,4.77,0.00,1.00,-19.20,-14.40,0 --19.20,-14.40,4.81,0.00,1.00,-14.40,-14.40,0 --14.40,-14.40,4.85,0.00,1.00,-14.40,-9.60,0 --9.60,-9.60,4.89,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,4.93,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,4.97,0.00,1.00,-4.80,0.00,0 -0.00,0.00,5.01,0.00,1.00,0.00,4.80,0 -4.80,4.80,5.05,0.00,1.00,4.80,4.80,0 -9.60,4.80,5.09,0.00,1.00,4.80,9.60,0 -9.60,9.60,5.13,0.00,1.00,9.60,9.60,0 -14.40,9.60,5.17,0.00,1.00,9.60,14.40,0 -19.20,14.40,5.21,0.00,1.00,14.40,19.20,0 -24.00,19.20,5.25,0.00,1.00,19.20,19.20,0 -28.80,19.20,5.29,0.00,1.00,24.00,24.00,0 -33.60,24.00,5.33,0.00,1.00,24.00,24.00,0 -38.40,24.00,5.37,0.00,1.00,28.80,28.80,0 -43.20,28.80,5.41,0.00,1.00,33.60,28.80,0 -48.00,28.80,5.45,0.00,1.00,38.40,33.60,0 -52.80,28.80,5.49,0.00,1.00,43.20,33.60,0 -57.60,33.60,5.53,0.00,1.00,48.00,33.60,0 -62.40,33.60,5.57,0.00,1.00,52.80,38.40,0 -67.20,33.60,5.61,0.00,1.00,62.40,38.40,0 -72.00,38.40,5.65,0.00,1.00,67.20,38.40,0 -81.60,38.40,5.69,0.00,1.00,76.80,38.40,0 -86.40,38.40,5.73,0.00,1.00,86.40,38.40,0 -91.20,38.40,5.77,0.00,1.00,91.20,38.40,0 -96.00,38.40,5.81,0.00,1.00,100.80,38.40,0 -105.60,38.40,5.85,0.00,1.00,105.60,38.40,0 -110.40,33.60,5.89,0.00,1.00,115.20,33.60,0 -115.20,33.60,5.93,0.00,1.00,120.00,33.60,0 -120.00,33.60,5.97,0.00,1.00,129.60,33.60,0 -124.80,33.60,6.02,0.00,1.00,134.40,28.80,0 -129.60,28.80,6.06,0.00,1.00,139.20,28.80,0 -134.40,28.80,6.10,0.00,1.00,144.00,24.00,0 -139.20,24.00,6.14,0.00,1.00,148.80,24.00,0 -144.00,24.00,6.18,0.00,1.00,153.60,19.20,0 -148.80,19.20,6.22,0.00,1.00,158.40,19.20,0 -153.60,19.20,6.26,0.00,1.00,158.40,14.40,0 -158.40,14.40,6.30,0.00,1.00,163.20,14.40,0 -163.20,14.40,6.34,0.00,1.00,168.00,9.60,0 -168.00,9.60,6.38,0.00,1.00,168.00,9.60,0 -168.00,9.60,6.42,0.00,1.00,172.80,4.80,0 -172.80,4.80,6.46,0.00,1.00,177.60,0.00,0 -177.60,0.00,6.50,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,6.54,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,6.58,0.00,1.00,-177.60,-9.60,0 --168.00,-9.60,6.62,0.00,1.00,-172.80,-9.60,0 --168.00,-9.60,6.66,0.00,1.00,-168.00,-14.40,0 --163.20,-14.40,6.70,0.00,1.00,-168.00,-14.40,0 --158.40,-14.40,6.74,0.00,1.00,-163.20,-19.20,0 --153.60,-19.20,6.78,0.00,1.00,-158.40,-19.20,0 --148.80,-19.20,6.82,0.00,1.00,-158.40,-24.00,0 --144.00,-24.00,6.86,0.00,1.00,-153.60,-24.00,0 --139.20,-24.00,6.90,0.00,1.00,-148.80,-28.80,0 --134.40,-28.80,6.94,0.00,1.00,-144.00,-28.80,0 --129.60,-28.80,6.98,0.00,1.00,-139.20,-33.60,0 --124.80,-33.60,7.02,0.00,1.00,-134.40,-33.60,0 --120.00,-33.60,7.06,0.00,1.00,-129.60,-33.60,0 --115.20,-33.60,7.10,0.00,1.00,-120.00,-38.40,0 --110.40,-33.60,7.14,0.00,1.00,-115.20,-38.40,0 --105.60,-38.40,7.18,0.00,1.00,-105.60,-38.40,0 --96.00,-38.40,7.22,0.00,1.00,-100.80,-38.40,0 --91.20,-38.40,7.26,0.00,1.00,-91.20,-38.40,0 --86.40,-38.40,7.30,0.00,1.00,-86.40,-38.40,0 --81.60,-38.40,7.34,0.00,1.00,-76.80,-38.40,0 --72.00,-38.40,7.38,0.00,1.00,-67.20,-38.40,0 --67.20,-33.60,7.42,0.00,1.00,-62.40,-33.60,0 --62.40,-33.60,7.46,0.00,1.00,-52.80,-33.60,0 --57.60,-33.60,7.50,0.00,1.00,-48.00,-33.60,0 --52.80,-28.80,7.54,0.00,1.00,-43.20,-28.80,0 --48.00,-28.80,7.58,0.00,1.00,-38.40,-28.80,0 --43.20,-28.80,7.62,0.00,1.00,-33.60,-24.00,0 --38.40,-24.00,7.66,0.00,1.00,-28.80,-24.00,0 --33.60,-24.00,7.70,0.00,1.00,-24.00,-19.20,0 --28.80,-19.20,7.74,0.00,1.00,-24.00,-19.20,0 --24.00,-19.20,7.78,0.00,1.00,-19.20,-14.40,0 --19.20,-14.40,7.82,0.00,1.00,-14.40,-9.60,0 --14.40,-9.60,7.86,0.00,1.00,-9.60,-9.60,0 --9.60,-9.60,7.90,0.00,1.00,-9.60,-4.80,0 --9.60,-4.80,7.94,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,7.98,0.00,1.00,-4.80,0.00,0 -0.00,0.00,8.02,0.00,1.00,0.00,4.80,0 -4.80,4.80,8.06,0.00,1.00,4.80,4.80,0 -9.60,4.80,8.10,0.00,1.00,4.80,9.60,0 -14.40,9.60,8.14,0.00,1.00,9.60,9.60,0 -14.40,9.60,8.18,0.00,1.00,9.60,14.40,0 -19.20,14.40,8.22,0.00,1.00,14.40,14.40,0 -24.00,14.40,8.26,0.00,1.00,14.40,19.20,0 -28.80,19.20,8.30,0.00,1.00,19.20,19.20,0 -33.60,19.20,8.34,0.00,1.00,24.00,24.00,0 -38.40,19.20,8.38,0.00,1.00,28.80,24.00,0 -43.20,24.00,8.42,0.00,1.00,28.80,24.00,0 -48.00,24.00,8.46,0.00,1.00,33.60,28.80,0 -52.80,28.80,8.50,0.00,1.00,38.40,28.80,0 -57.60,28.80,8.54,0.00,1.00,48.00,28.80,0 -62.40,28.80,8.58,0.00,1.00,52.80,33.60,0 -67.20,28.80,8.62,0.00,1.00,57.60,33.60,0 -76.80,33.60,8.66,0.00,1.00,67.20,33.60,0 -81.60,33.60,8.70,0.00,1.00,76.80,33.60,0 -86.40,33.60,8.74,0.00,1.00,81.60,33.60,0 -91.20,33.60,8.78,0.00,1.00,91.20,33.60,0 -96.00,33.60,8.82,0.00,1.00,100.80,33.60,0 -100.80,33.60,8.86,0.00,1.00,110.40,33.60,0 -110.40,28.80,8.90,0.00,1.00,115.20,33.60,0 -115.20,28.80,8.94,0.00,1.00,124.80,28.80,0 -120.00,28.80,8.98,0.00,1.00,129.60,28.80,0 -124.80,28.80,9.02,0.00,1.00,139.20,28.80,0 -129.60,24.00,9.06,0.00,1.00,144.00,24.00,0 -134.40,24.00,9.10,0.00,1.00,148.80,24.00,0 -139.20,24.00,9.14,0.00,1.00,153.60,19.20,0 -144.00,19.20,9.18,0.00,1.00,153.60,19.20,0 -148.80,19.20,9.22,0.00,1.00,158.40,14.40,0 -153.60,14.40,9.26,0.00,1.00,163.20,14.40,0 -158.40,14.40,9.30,0.00,1.00,163.20,9.60,0 -163.20,9.60,9.34,0.00,1.00,168.00,9.60,0 -168.00,9.60,9.38,0.00,1.00,172.80,4.80,0 -168.00,4.80,9.42,0.00,1.00,172.80,4.80,0 -172.80,4.80,9.46,0.00,1.00,177.60,0.00,0 -177.60,0.00,9.50,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,9.54,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,9.58,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,9.62,0.00,1.00,-172.80,-9.60,0 --168.00,-9.60,9.66,0.00,1.00,-172.80,-9.60,0 --163.20,-9.60,9.70,0.00,1.00,-168.00,-14.40,0 --158.40,-14.40,9.74,0.00,1.00,-163.20,-14.40,0 --153.60,-14.40,9.78,0.00,1.00,-163.20,-19.20,0 --148.80,-19.20,9.82,0.00,1.00,-158.40,-19.20,0 --144.00,-19.20,9.86,0.00,1.00,-153.60,-24.00,0 --139.20,-24.00,9.90,0.00,1.00,-153.60,-24.00,0 --134.40,-24.00,9.94,0.00,1.00,-148.80,-28.80,0 --129.60,-24.00,9.98,0.00,1.00,-144.00,-28.80,0 --124.80,-28.80,10.03,0.00,1.00,-139.20,-28.80,0 --120.00,-28.80,10.07,0.00,1.00,-129.60,-33.60,0 --115.20,-28.80,10.11,0.00,1.00,-124.80,-33.60,0 --110.40,-28.80,10.15,0.00,1.00,-115.20,-33.60,0 --100.80,-33.60,10.19,0.00,1.00,-110.40,-33.60,0 --96.00,-33.60,10.23,0.00,1.00,-100.80,-33.60,0 --91.20,-33.60,10.27,0.00,1.00,-91.20,-33.60,0 --86.40,-33.60,10.31,0.00,1.00,-81.60,-33.60,0 --81.60,-33.60,10.35,0.00,1.00,-76.80,-33.60,0 --76.80,-33.60,10.39,0.00,1.00,-67.20,-33.60,0 --67.20,-28.80,10.43,0.00,1.00,-57.60,-28.80,0 --62.40,-28.80,10.47,0.00,1.00,-52.80,-28.80,0 --57.60,-28.80,10.51,0.00,1.00,-48.00,-28.80,0 --52.80,-28.80,10.55,0.00,1.00,-38.40,-24.00,0 --48.00,-24.00,10.59,0.00,1.00,-33.60,-24.00,0 --43.20,-24.00,10.63,0.00,1.00,-28.80,-24.00,0 --38.40,-19.20,10.67,0.00,1.00,-28.80,-19.20,0 --33.60,-19.20,10.71,0.00,1.00,-24.00,-19.20,0 --28.80,-19.20,10.75,0.00,1.00,-19.20,-14.40,0 --24.00,-14.40,10.79,0.00,1.00,-14.40,-14.40,0 --19.20,-14.40,10.83,0.00,1.00,-14.40,-9.60,0 --14.40,-9.60,10.87,0.00,1.00,-9.60,-9.60,0 --14.40,-9.60,10.91,0.00,1.00,-9.60,-4.80,0 --9.60,-4.80,10.95,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,10.99,0.00,1.00,-4.80,0.00,0 -0.00,0.00,11.03,0.00,1.00,0.00,0.00,0 -4.80,0.00,11.07,0.00,1.00,0.00,4.80,0 -9.60,4.80,11.11,0.00,1.00,4.80,4.80,0 -14.40,4.80,11.15,0.00,1.00,4.80,9.60,0 -19.20,9.60,11.19,0.00,1.00,9.60,9.60,0 -19.20,9.60,11.23,0.00,1.00,9.60,14.40,0 -24.00,14.40,11.27,0.00,1.00,14.40,14.40,0 -28.80,14.40,11.31,0.00,1.00,19.20,19.20,0 -33.60,14.40,11.35,0.00,1.00,19.20,19.20,0 -38.40,19.20,11.39,0.00,1.00,24.00,19.20,0 -43.20,19.20,11.43,0.00,1.00,28.80,24.00,0 -48.00,24.00,11.47,0.00,1.00,33.60,24.00,0 -52.80,24.00,11.51,0.00,1.00,38.40,24.00,0 -57.60,24.00,11.55,0.00,1.00,43.20,24.00,0 -62.40,24.00,11.59,0.00,1.00,48.00,28.80,0 -72.00,24.00,11.63,0.00,1.00,52.80,28.80,0 -76.80,28.80,11.67,0.00,1.00,62.40,28.80,0 -81.60,28.80,11.71,0.00,1.00,72.00,28.80,0 -86.40,28.80,11.75,0.00,1.00,81.60,28.80,0 -91.20,28.80,11.79,0.00,1.00,91.20,28.80,0 -96.00,28.80,11.83,0.00,1.00,100.80,28.80,0 -100.80,28.80,11.87,0.00,1.00,110.40,28.80,0 -105.60,28.80,11.91,0.00,1.00,120.00,28.80,0 -110.40,24.00,11.95,0.00,1.00,129.60,24.00,0 -120.00,24.00,11.99,0.00,1.00,134.40,24.00,0 -124.80,24.00,12.03,0.00,1.00,139.20,24.00,0 -129.60,24.00,12.07,0.00,1.00,144.00,24.00,0 -134.40,19.20,12.11,0.00,1.00,148.80,19.20,0 -139.20,19.20,12.15,0.00,1.00,153.60,19.20,0 -144.00,19.20,12.19,0.00,1.00,158.40,14.40,0 -148.80,14.40,12.23,0.00,1.00,163.20,14.40,0 -153.60,14.40,12.27,0.00,1.00,163.20,14.40,0 -158.40,9.60,12.31,0.00,1.00,168.00,9.60,0 -158.40,9.60,12.35,0.00,1.00,168.00,9.60,0 -163.20,9.60,12.39,0.00,1.00,172.80,4.80,0 -168.00,4.80,12.43,0.00,1.00,172.80,4.80,0 -172.80,4.80,12.47,0.00,1.00,177.60,0.00,0 -177.60,0.00,12.51,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,12.55,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,12.59,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,12.63,0.00,1.00,-172.80,-9.60,0 --163.20,-9.60,12.67,0.00,1.00,-172.80,-9.60,0 --158.40,-9.60,12.71,0.00,1.00,-168.00,-14.40,0 --158.40,-9.60,12.75,0.00,1.00,-168.00,-14.40,0 --153.60,-14.40,12.79,0.00,1.00,-163.20,-14.40,0 --148.80,-14.40,12.83,0.00,1.00,-163.20,-19.20,0 --144.00,-19.20,12.87,0.00,1.00,-158.40,-19.20,0 --139.20,-19.20,12.91,0.00,1.00,-153.60,-24.00,0 --134.40,-19.20,12.95,0.00,1.00,-148.80,-24.00,0 --129.60,-24.00,12.99,0.00,1.00,-144.00,-24.00,0 --124.80,-24.00,13.03,0.00,1.00,-139.20,-24.00,0 --120.00,-24.00,13.07,0.00,1.00,-134.40,-28.80,0 --110.40,-24.00,13.11,0.00,1.00,-129.60,-28.80,0 --105.60,-28.80,13.15,0.00,1.00,-120.00,-28.80,0 --100.80,-28.80,13.19,0.00,1.00,-110.40,-28.80,0 --96.00,-28.80,13.23,0.00,1.00,-100.80,-28.80,0 --91.20,-28.80,13.27,0.00,1.00,-91.20,-28.80,0 --86.40,-28.80,13.31,0.00,1.00,-81.60,-28.80,0 --81.60,-28.80,13.35,0.00,1.00,-72.00,-28.80,0 --76.80,-28.80,13.39,0.00,1.00,-62.40,-28.80,0 --72.00,-24.00,13.43,0.00,1.00,-52.80,-24.00,0 --62.40,-24.00,13.47,0.00,1.00,-48.00,-24.00,0 --57.60,-24.00,13.51,0.00,1.00,-43.20,-24.00,0 --52.80,-24.00,13.55,0.00,1.00,-38.40,-24.00,0 --48.00,-24.00,13.59,0.00,1.00,-33.60,-19.20,0 --43.20,-19.20,13.63,0.00,1.00,-28.80,-19.20,0 --38.40,-19.20,13.67,0.00,1.00,-24.00,-19.20,0 --33.60,-14.40,13.71,0.00,1.00,-19.20,-14.40,0 --28.80,-14.40,13.75,0.00,1.00,-19.20,-14.40,0 --24.00,-14.40,13.79,0.00,1.00,-14.40,-9.60,0 --19.20,-9.60,13.83,0.00,1.00,-9.60,-9.60,0 --19.20,-9.60,13.87,0.00,1.00,-9.60,-4.80,0 --14.40,-4.80,13.91,0.00,1.00,-4.80,-4.80,0 --9.60,-4.80,13.95,0.00,1.00,-4.80,-0.00,0 --4.80,-0.00,13.99,0.00,1.00,-0.00,0.00,0 -0.00,0.00,14.04,0.00,1.00,0.00,0.00,0 -4.80,0.00,14.08,0.00,1.00,0.00,4.80,0 -9.60,4.80,14.12,0.00,1.00,4.80,4.80,0 -14.40,4.80,14.16,0.00,1.00,4.80,9.60,0 -19.20,9.60,14.20,0.00,1.00,9.60,9.60,0 -24.00,9.60,14.24,0.00,1.00,9.60,9.60,0 -28.80,9.60,14.28,0.00,1.00,14.40,14.40,0 -33.60,14.40,14.32,0.00,1.00,14.40,14.40,0 -38.40,14.40,14.36,0.00,1.00,19.20,14.40,0 -43.20,14.40,14.40,0.00,1.00,19.20,19.20,0 -48.00,14.40,14.44,0.00,1.00,24.00,19.20,0 -52.80,19.20,14.48,0.00,1.00,28.80,19.20,0 -57.60,19.20,14.52,0.00,1.00,33.60,19.20,0 -62.40,19.20,14.56,0.00,1.00,38.40,24.00,0 -67.20,19.20,14.60,0.00,1.00,43.20,24.00,0 -72.00,24.00,14.64,0.00,1.00,48.00,24.00,0 -76.80,24.00,14.68,0.00,1.00,57.60,24.00,0 -81.60,24.00,14.72,0.00,1.00,67.20,24.00,0 -86.40,24.00,14.76,0.00,1.00,81.60,24.00,0 -91.20,24.00,14.80,0.00,1.00,91.20,24.00,0 -96.00,24.00,14.84,0.00,1.00,105.60,24.00,0 -100.80,24.00,14.88,0.00,1.00,115.20,24.00,0 -105.60,24.00,14.92,0.00,1.00,124.80,24.00,0 -110.40,19.20,14.96,0.00,1.00,134.40,19.20,0 -115.20,19.20,15.00,0.00,1.00,139.20,19.20,0 -120.00,19.20,15.04,0.00,1.00,144.00,19.20,0 -124.80,19.20,15.08,0.00,1.00,148.80,19.20,0 -129.60,19.20,15.12,0.00,1.00,153.60,19.20,0 -134.40,14.40,15.16,0.00,1.00,158.40,14.40,0 -139.20,14.40,15.20,0.00,1.00,163.20,14.40,0 -144.00,14.40,15.24,0.00,1.00,163.20,14.40,0 -148.80,9.60,15.28,0.00,1.00,168.00,9.60,0 -153.60,9.60,15.32,0.00,1.00,168.00,9.60,0 -158.40,9.60,15.36,0.00,1.00,172.80,4.80,0 -163.20,4.80,15.40,0.00,1.00,172.80,4.80,0 -168.00,4.80,15.44,0.00,1.00,177.60,4.80,0 -172.80,4.80,15.48,0.00,1.00,177.60,0.00,0 -177.60,0.00,15.52,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,15.56,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,15.60,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,15.64,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,15.68,0.00,1.00,-172.80,-9.60,0 --158.40,-9.60,15.72,0.00,1.00,-172.80,-9.60,0 --153.60,-9.60,15.76,0.00,1.00,-168.00,-14.40,0 --148.80,-9.60,15.80,0.00,1.00,-168.00,-14.40,0 --144.00,-14.40,15.84,0.00,1.00,-163.20,-14.40,0 --139.20,-14.40,15.88,0.00,1.00,-163.20,-19.20,0 --134.40,-14.40,15.92,0.00,1.00,-158.40,-19.20,0 --129.60,-19.20,15.96,0.00,1.00,-153.60,-19.20,0 --124.80,-19.20,16.00,0.00,1.00,-148.80,-19.20,0 --120.00,-19.20,16.00,0.00,1.00,-144.00,-19.20,0 --115.20,-19.20,15.96,0.00,1.00,-139.20,-24.00,0 --110.40,-19.20,15.92,0.00,1.00,-134.40,-24.00,0 --105.60,-24.00,15.88,0.00,1.00,-124.80,-24.00,0 --100.80,-24.00,15.84,0.00,1.00,-115.20,-24.00,0 --96.00,-24.00,15.80,0.00,1.00,-105.60,-24.00,0 --91.20,-24.00,15.76,0.00,1.00,-91.20,-24.00,0 --86.40,-24.00,15.72,0.00,1.00,-81.60,-24.00,0 --81.60,-24.00,15.68,0.00,1.00,-67.20,-24.00,0 --76.80,-24.00,15.64,0.00,1.00,-57.60,-24.00,0 --72.00,-24.00,15.60,0.00,1.00,-48.00,-24.00,0 --67.20,-19.20,15.56,0.00,1.00,-43.20,-19.20,0 --62.40,-19.20,15.52,0.00,1.00,-38.40,-19.20,0 --57.60,-19.20,15.48,0.00,1.00,-33.60,-19.20,0 --52.80,-19.20,15.44,0.00,1.00,-28.80,-19.20,0 --48.00,-14.40,15.40,0.00,1.00,-24.00,-14.40,0 --43.20,-14.40,15.36,0.00,1.00,-19.20,-14.40,0 --38.40,-14.40,15.32,0.00,1.00,-19.20,-14.40,0 --33.60,-14.40,15.28,0.00,1.00,-14.40,-9.60,0 --28.80,-9.60,15.24,0.00,1.00,-14.40,-9.60,0 --24.00,-9.60,15.20,0.00,1.00,-9.60,-9.60,0 --19.20,-9.60,15.16,0.00,1.00,-9.60,-4.80,0 --14.40,-4.80,15.12,0.00,1.00,-4.80,-4.80,0 --9.60,-4.80,15.08,0.00,1.00,-4.80,-0.00,0 --4.80,-0.00,15.04,0.00,1.00,-0.00,0.00,0 -0.00,0.00,15.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,14.96,0.00,1.00,0.00,4.80,0 -9.60,4.80,14.92,0.00,1.00,4.80,4.80,0 -14.40,4.80,14.88,0.00,1.00,4.80,4.80,0 -19.20,4.80,14.84,0.00,1.00,4.80,9.60,0 -24.00,9.60,14.80,0.00,1.00,9.60,9.60,0 -28.80,9.60,14.76,0.00,1.00,9.60,9.60,0 -33.60,9.60,14.72,0.00,1.00,9.60,9.60,0 -38.40,9.60,14.68,0.00,1.00,14.40,14.40,0 -43.20,14.40,14.64,0.00,1.00,14.40,14.40,0 -48.00,14.40,14.60,0.00,1.00,19.20,14.40,0 -52.80,14.40,14.56,0.00,1.00,24.00,14.40,0 -57.60,14.40,14.52,0.00,1.00,24.00,19.20,0 -62.40,14.40,14.48,0.00,1.00,28.80,19.20,0 -67.20,14.40,14.44,0.00,1.00,38.40,19.20,0 -72.00,19.20,14.40,0.00,1.00,43.20,19.20,0 -76.80,19.20,14.36,0.00,1.00,52.80,19.20,0 -81.60,19.20,14.32,0.00,1.00,62.40,19.20,0 -86.40,19.20,14.28,0.00,1.00,76.80,19.20,0 -91.20,19.20,14.24,0.00,1.00,96.00,19.20,0 -96.00,19.20,14.20,0.00,1.00,110.40,19.20,0 -100.80,19.20,14.16,0.00,1.00,120.00,19.20,0 -105.60,19.20,14.12,0.00,1.00,134.40,19.20,0 -110.40,19.20,14.08,0.00,1.00,139.20,19.20,0 -115.20,14.40,14.04,0.00,1.00,148.80,14.40,0 -120.00,14.40,13.99,0.00,1.00,153.60,14.40,0 -124.80,14.40,13.95,0.00,1.00,158.40,14.40,0 -129.60,14.40,13.91,0.00,1.00,158.40,14.40,0 -134.40,14.40,13.87,0.00,1.00,163.20,14.40,0 -139.20,9.60,13.83,0.00,1.00,163.20,9.60,0 -144.00,9.60,13.79,0.00,1.00,168.00,9.60,0 -148.80,9.60,13.75,0.00,1.00,168.00,9.60,0 -153.60,9.60,13.71,0.00,1.00,172.80,4.80,0 -158.40,4.80,13.67,0.00,1.00,172.80,4.80,0 -163.20,4.80,13.63,0.00,1.00,172.80,4.80,0 -168.00,4.80,13.59,0.00,1.00,177.60,0.00,0 -172.80,0.00,13.55,0.00,1.00,177.60,0.00,0 -177.60,0.00,13.51,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,13.47,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,13.43,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,13.39,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,13.35,0.00,1.00,-172.80,-4.80,0 --158.40,-4.80,13.31,0.00,1.00,-172.80,-9.60,0 --153.60,-9.60,13.27,0.00,1.00,-172.80,-9.60,0 --148.80,-9.60,13.23,0.00,1.00,-168.00,-9.60,0 --144.00,-9.60,13.19,0.00,1.00,-168.00,-14.40,0 --139.20,-9.60,13.15,0.00,1.00,-163.20,-14.40,0 --134.40,-14.40,13.11,0.00,1.00,-163.20,-14.40,0 --129.60,-14.40,13.07,0.00,1.00,-158.40,-14.40,0 --124.80,-14.40,13.03,0.00,1.00,-158.40,-14.40,0 --120.00,-14.40,12.99,0.00,1.00,-153.60,-19.20,0 --115.20,-14.40,12.95,0.00,1.00,-148.80,-19.20,0 --110.40,-19.20,12.91,0.00,1.00,-139.20,-19.20,0 --105.60,-19.20,12.87,0.00,1.00,-134.40,-19.20,0 --100.80,-19.20,12.83,0.00,1.00,-120.00,-19.20,0 --96.00,-19.20,12.79,0.00,1.00,-110.40,-19.20,0 --91.20,-19.20,12.75,0.00,1.00,-96.00,-19.20,0 --86.40,-19.20,12.71,0.00,1.00,-76.80,-19.20,0 --81.60,-19.20,12.67,0.00,1.00,-62.40,-19.20,0 --76.80,-19.20,12.63,0.00,1.00,-52.80,-19.20,0 --72.00,-19.20,12.59,0.00,1.00,-43.20,-19.20,0 --67.20,-14.40,12.55,0.00,1.00,-38.40,-19.20,0 --62.40,-14.40,12.51,0.00,1.00,-28.80,-14.40,0 --57.60,-14.40,12.47,0.00,1.00,-24.00,-14.40,0 --52.80,-14.40,12.43,0.00,1.00,-24.00,-14.40,0 --48.00,-14.40,12.39,0.00,1.00,-19.20,-14.40,0 --43.20,-14.40,12.35,0.00,1.00,-14.40,-9.60,0 --38.40,-9.60,12.31,0.00,1.00,-14.40,-9.60,0 --33.60,-9.60,12.27,0.00,1.00,-9.60,-9.60,0 --28.80,-9.60,12.23,0.00,1.00,-9.60,-9.60,0 --24.00,-9.60,12.19,0.00,1.00,-9.60,-4.80,0 --19.20,-4.80,12.15,0.00,1.00,-4.80,-4.80,0 --14.40,-4.80,12.11,0.00,1.00,-4.80,-4.80,0 --9.60,-4.80,12.07,0.00,1.00,-4.80,-0.00,0 --4.80,-0.00,12.03,0.00,1.00,-0.00,0.00,0 -0.00,0.00,11.99,0.00,1.00,0.00,0.00,0 -4.80,0.00,11.95,0.00,1.00,0.00,0.00,0 -9.60,0.00,11.91,0.00,1.00,0.00,4.80,0 -14.40,4.80,11.87,0.00,1.00,4.80,4.80,0 -19.20,4.80,11.83,0.00,1.00,4.80,4.80,0 -24.00,4.80,11.79,0.00,1.00,4.80,4.80,0 -28.80,4.80,11.75,0.00,1.00,4.80,9.60,0 -33.60,9.60,11.71,0.00,1.00,9.60,9.60,0 -38.40,9.60,11.67,0.00,1.00,9.60,9.60,0 -43.20,9.60,11.63,0.00,1.00,14.40,9.60,0 -48.00,9.60,11.59,0.00,1.00,14.40,9.60,0 -52.80,9.60,11.55,0.00,1.00,14.40,14.40,0 -57.60,9.60,11.51,0.00,1.00,19.20,14.40,0 -62.40,9.60,11.47,0.00,1.00,24.00,14.40,0 -67.20,14.40,11.43,0.00,1.00,28.80,14.40,0 -72.00,14.40,11.39,0.00,1.00,33.60,14.40,0 -76.80,14.40,11.35,0.00,1.00,43.20,14.40,0 -81.60,14.40,11.31,0.00,1.00,57.60,14.40,0 -86.40,14.40,11.27,0.00,1.00,76.80,14.40,0 -91.20,14.40,11.23,0.00,1.00,96.00,14.40,0 -96.00,14.40,11.19,0.00,1.00,115.20,14.40,0 -100.80,14.40,11.15,0.00,1.00,129.60,14.40,0 -105.60,14.40,11.11,0.00,1.00,139.20,14.40,0 -110.40,14.40,11.07,0.00,1.00,148.80,14.40,0 -115.20,9.60,11.03,0.00,1.00,153.60,14.40,0 -120.00,9.60,10.99,0.00,1.00,158.40,9.60,0 -124.80,9.60,10.95,0.00,1.00,163.20,9.60,0 -129.60,9.60,10.91,0.00,1.00,163.20,9.60,0 -134.40,9.60,10.87,0.00,1.00,168.00,9.60,0 -139.20,9.60,10.83,0.00,1.00,168.00,9.60,0 -144.00,9.60,10.79,0.00,1.00,172.80,9.60,0 -148.80,4.80,10.75,0.00,1.00,172.80,4.80,0 -153.60,4.80,10.71,0.00,1.00,172.80,4.80,0 -158.40,4.80,10.67,0.00,1.00,172.80,4.80,0 -163.20,4.80,10.63,0.00,1.00,177.60,4.80,0 -168.00,4.80,10.59,0.00,1.00,177.60,0.00,0 -172.80,0.00,10.55,0.00,1.00,177.60,0.00,0 -177.60,0.00,10.51,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.47,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,10.43,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,10.39,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,10.35,0.00,1.00,-177.60,-4.80,0 --158.40,-4.80,10.31,0.00,1.00,-172.80,-4.80,0 --153.60,-4.80,10.27,0.00,1.00,-172.80,-9.60,0 --148.80,-4.80,10.23,0.00,1.00,-172.80,-9.60,0 --144.00,-9.60,10.19,0.00,1.00,-172.80,-9.60,0 --139.20,-9.60,10.15,0.00,1.00,-168.00,-9.60,0 --134.40,-9.60,10.11,0.00,1.00,-168.00,-9.60,0 --129.60,-9.60,10.07,0.00,1.00,-163.20,-9.60,0 --124.80,-9.60,10.03,0.00,1.00,-163.20,-14.40,0 --120.00,-9.60,9.98,0.00,1.00,-158.40,-14.40,0 --115.20,-9.60,9.94,0.00,1.00,-153.60,-14.40,0 --110.40,-14.40,9.90,0.00,1.00,-148.80,-14.40,0 --105.60,-14.40,9.86,0.00,1.00,-139.20,-14.40,0 --100.80,-14.40,9.82,0.00,1.00,-129.60,-14.40,0 --96.00,-14.40,9.78,0.00,1.00,-115.20,-14.40,0 --91.20,-14.40,9.74,0.00,1.00,-96.00,-14.40,0 --86.40,-14.40,9.70,0.00,1.00,-76.80,-14.40,0 --81.60,-14.40,9.66,0.00,1.00,-57.60,-14.40,0 --76.80,-14.40,9.62,0.00,1.00,-43.20,-14.40,0 --72.00,-14.40,9.58,0.00,1.00,-33.60,-14.40,0 --67.20,-14.40,9.54,0.00,1.00,-28.80,-14.40,0 --62.40,-9.60,9.50,0.00,1.00,-24.00,-14.40,0 --57.60,-9.60,9.46,0.00,1.00,-19.20,-9.60,0 --52.80,-9.60,9.42,0.00,1.00,-14.40,-9.60,0 --48.00,-9.60,9.38,0.00,1.00,-14.40,-9.60,0 --43.20,-9.60,9.34,0.00,1.00,-14.40,-9.60,0 --38.40,-9.60,9.30,0.00,1.00,-9.60,-9.60,0 --33.60,-9.60,9.26,0.00,1.00,-9.60,-4.80,0 --28.80,-4.80,9.22,0.00,1.00,-4.80,-4.80,0 --24.00,-4.80,9.18,0.00,1.00,-4.80,-4.80,0 --19.20,-4.80,9.14,0.00,1.00,-4.80,-4.80,0 --14.40,-4.80,9.10,0.00,1.00,-4.80,-0.00,0 --9.60,-0.00,9.06,0.00,1.00,-0.00,-0.00,0 --4.80,-0.00,9.02,0.00,1.00,-0.00,0.00,0 -0.00,0.00,8.98,0.00,1.00,0.00,0.00,0 -4.80,0.00,8.94,0.00,1.00,0.00,0.00,0 -9.60,0.00,8.90,0.00,1.00,0.00,0.00,0 -14.40,0.00,8.86,0.00,1.00,0.00,4.80,0 -19.20,4.80,8.82,0.00,1.00,4.80,4.80,0 -24.00,4.80,8.78,0.00,1.00,4.80,4.80,0 -28.80,4.80,8.74,0.00,1.00,4.80,4.80,0 -33.60,4.80,8.70,0.00,1.00,4.80,4.80,0 -38.40,4.80,8.66,0.00,1.00,4.80,4.80,0 -43.20,4.80,8.62,0.00,1.00,9.60,4.80,0 -48.00,4.80,8.58,0.00,1.00,9.60,9.60,0 -52.80,4.80,8.54,0.00,1.00,9.60,9.60,0 -57.60,4.80,8.50,0.00,1.00,14.40,9.60,0 -62.40,9.60,8.46,0.00,1.00,14.40,9.60,0 -67.20,9.60,8.42,0.00,1.00,19.20,9.60,0 -72.00,9.60,8.38,0.00,1.00,24.00,9.60,0 -76.80,9.60,8.34,0.00,1.00,33.60,9.60,0 -81.60,9.60,8.30,0.00,1.00,43.20,9.60,0 -86.40,9.60,8.26,0.00,1.00,67.20,9.60,0 -91.20,9.60,8.22,0.00,1.00,96.00,9.60,0 -96.00,9.60,8.18,0.00,1.00,124.80,9.60,0 -100.80,9.60,8.14,0.00,1.00,144.00,9.60,0 -105.60,9.60,8.10,0.00,1.00,153.60,9.60,0 -110.40,9.60,8.06,0.00,1.00,158.40,9.60,0 -115.20,9.60,8.02,0.00,1.00,163.20,9.60,0 -120.00,9.60,7.98,0.00,1.00,168.00,9.60,0 -124.80,4.80,7.94,0.00,1.00,168.00,9.60,0 -129.60,4.80,7.90,0.00,1.00,168.00,4.80,0 -134.40,4.80,7.86,0.00,1.00,172.80,4.80,0 -139.20,4.80,7.82,0.00,1.00,172.80,4.80,0 -144.00,4.80,7.78,0.00,1.00,172.80,4.80,0 -148.80,4.80,7.74,0.00,1.00,172.80,4.80,0 -153.60,4.80,7.70,0.00,1.00,177.60,4.80,0 -158.40,4.80,7.66,0.00,1.00,177.60,4.80,0 -163.20,4.80,7.62,0.00,1.00,177.60,0.00,0 -168.00,0.00,7.58,0.00,1.00,177.60,0.00,0 -172.80,0.00,7.54,0.00,1.00,177.60,0.00,0 -177.60,0.00,7.50,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,7.46,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,7.42,0.00,1.00,-177.60,-0.00,0 --168.00,-0.00,7.38,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,7.34,0.00,1.00,-177.60,-4.80,0 --158.40,-4.80,7.30,0.00,1.00,-177.60,-4.80,0 --153.60,-4.80,7.26,0.00,1.00,-177.60,-4.80,0 --148.80,-4.80,7.22,0.00,1.00,-172.80,-4.80,0 --144.00,-4.80,7.18,0.00,1.00,-172.80,-4.80,0 --139.20,-4.80,7.14,0.00,1.00,-172.80,-4.80,0 --134.40,-4.80,7.10,0.00,1.00,-172.80,-9.60,0 --129.60,-4.80,7.06,0.00,1.00,-168.00,-9.60,0 --124.80,-4.80,7.02,0.00,1.00,-168.00,-9.60,0 --120.00,-9.60,6.98,0.00,1.00,-168.00,-9.60,0 --115.20,-9.60,6.94,0.00,1.00,-163.20,-9.60,0 --110.40,-9.60,6.90,0.00,1.00,-158.40,-9.60,0 --105.60,-9.60,6.86,0.00,1.00,-153.60,-9.60,0 --100.80,-9.60,6.82,0.00,1.00,-144.00,-9.60,0 --96.00,-9.60,6.78,0.00,1.00,-124.80,-9.60,0 --91.20,-9.60,6.74,0.00,1.00,-96.00,-9.60,0 --86.40,-9.60,6.70,0.00,1.00,-67.20,-9.60,0 --81.60,-9.60,6.66,0.00,1.00,-43.20,-9.60,0 --76.80,-9.60,6.62,0.00,1.00,-33.60,-9.60,0 --72.00,-9.60,6.58,0.00,1.00,-24.00,-9.60,0 --67.20,-9.60,6.54,0.00,1.00,-19.20,-9.60,0 --62.40,-9.60,6.50,0.00,1.00,-14.40,-9.60,0 --57.60,-4.80,6.46,0.00,1.00,-14.40,-9.60,0 --52.80,-4.80,6.42,0.00,1.00,-9.60,-4.80,0 --48.00,-4.80,6.38,0.00,1.00,-9.60,-4.80,0 --43.20,-4.80,6.34,0.00,1.00,-9.60,-4.80,0 --38.40,-4.80,6.30,0.00,1.00,-4.80,-4.80,0 --33.60,-4.80,6.26,0.00,1.00,-4.80,-4.80,0 --28.80,-4.80,6.22,0.00,1.00,-4.80,-4.80,0 --24.00,-4.80,6.18,0.00,1.00,-4.80,-4.80,0 --19.20,-4.80,6.14,0.00,1.00,-4.80,-0.00,0 --14.40,-0.00,6.10,0.00,1.00,-0.00,-0.00,0 --9.60,-0.00,6.06,0.00,1.00,-0.00,-0.00,0 --4.80,-0.00,6.02,0.00,1.00,-0.00,0.00,0 -0.00,0.00,5.97,0.00,1.00,0.00,0.00,0 -4.80,0.00,5.93,0.00,1.00,0.00,0.00,0 -9.60,0.00,5.89,0.00,1.00,0.00,0.00,0 -14.40,0.00,5.85,0.00,1.00,0.00,0.00,0 -19.20,0.00,5.81,0.00,1.00,0.00,0.00,0 -24.00,0.00,5.77,0.00,1.00,0.00,0.00,0 -28.80,0.00,5.73,0.00,1.00,0.00,4.80,0 -33.60,0.00,5.69,0.00,1.00,0.00,4.80,0 -38.40,0.00,5.65,0.00,1.00,4.80,4.80,0 -43.20,4.80,5.61,0.00,1.00,4.80,4.80,0 -48.00,4.80,5.57,0.00,1.00,4.80,4.80,0 -52.80,4.80,5.53,0.00,1.00,4.80,4.80,0 -57.60,4.80,5.49,0.00,1.00,4.80,4.80,0 -62.40,4.80,5.45,0.00,1.00,4.80,4.80,0 -67.20,4.80,5.41,0.00,1.00,9.60,4.80,0 -72.00,4.80,5.37,0.00,1.00,9.60,4.80,0 -76.80,4.80,5.33,0.00,1.00,14.40,4.80,0 -81.60,4.80,5.29,0.00,1.00,24.00,4.80,0 -86.40,4.80,5.25,0.00,1.00,43.20,4.80,0 -91.20,4.80,5.21,0.00,1.00,110.40,4.80,0 -96.00,4.80,5.17,0.00,1.00,148.80,4.80,0 -100.80,4.80,5.13,0.00,1.00,163.20,4.80,0 -105.60,4.80,5.09,0.00,1.00,168.00,4.80,0 -110.40,4.80,5.05,0.00,1.00,172.80,4.80,0 -115.20,4.80,5.01,0.00,1.00,172.80,4.80,0 -120.00,4.80,4.97,0.00,1.00,172.80,4.80,0 -124.80,4.80,4.93,0.00,1.00,172.80,4.80,0 -129.60,4.80,4.89,0.00,1.00,177.60,4.80,0 -134.40,4.80,4.85,0.00,1.00,177.60,4.80,0 -139.20,0.00,4.81,0.00,1.00,177.60,4.80,0 -144.00,0.00,4.77,0.00,1.00,177.60,4.80,0 -148.80,0.00,4.73,0.00,1.00,177.60,0.00,0 -153.60,0.00,4.69,0.00,1.00,177.60,0.00,0 -158.40,0.00,4.65,0.00,1.00,177.60,0.00,0 -163.20,0.00,4.61,0.00,1.00,177.60,0.00,0 -168.00,0.00,4.57,0.00,1.00,177.60,0.00,0 -172.80,0.00,4.53,0.00,1.00,177.60,0.00,0 -177.60,0.00,4.49,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,4.45,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,4.41,0.00,1.00,-177.60,-0.00,0 --168.00,-0.00,4.37,0.00,1.00,-177.60,-0.00,0 --163.20,-0.00,4.33,0.00,1.00,-177.60,-0.00,0 --158.40,-0.00,4.29,0.00,1.00,-177.60,-0.00,0 --153.60,-0.00,4.25,0.00,1.00,-177.60,-4.80,0 --148.80,-0.00,4.21,0.00,1.00,-177.60,-4.80,0 --144.00,-0.00,4.17,0.00,1.00,-177.60,-4.80,0 --139.20,-0.00,4.13,0.00,1.00,-177.60,-4.80,0 --134.40,-4.80,4.09,0.00,1.00,-177.60,-4.80,0 --129.60,-4.80,4.05,0.00,1.00,-177.60,-4.80,0 --124.80,-4.80,4.01,0.00,1.00,-172.80,-4.80,0 --120.00,-4.80,3.97,0.00,1.00,-172.80,-4.80,0 --115.20,-4.80,3.93,0.00,1.00,-172.80,-4.80,0 --110.40,-4.80,3.89,0.00,1.00,-172.80,-4.80,0 --105.60,-4.80,3.85,0.00,1.00,-168.00,-4.80,0 --100.80,-4.80,3.81,0.00,1.00,-163.20,-4.80,0 --96.00,-4.80,3.77,0.00,1.00,-148.80,-4.80,0 --91.20,-4.80,3.73,0.00,1.00,-110.40,-4.80,0 --86.40,-4.80,3.69,0.00,1.00,-43.20,-4.80,0 --81.60,-4.80,3.65,0.00,1.00,-24.00,-4.80,0 --76.80,-4.80,3.61,0.00,1.00,-14.40,-4.80,0 --72.00,-4.80,3.57,0.00,1.00,-9.60,-4.80,0 --67.20,-4.80,3.53,0.00,1.00,-9.60,-4.80,0 --62.40,-4.80,3.49,0.00,1.00,-4.80,-4.80,0 --57.60,-4.80,3.45,0.00,1.00,-4.80,-4.80,0 --52.80,-4.80,3.41,0.00,1.00,-4.80,-4.80,0 --48.00,-4.80,3.37,0.00,1.00,-4.80,-4.80,0 --43.20,-4.80,3.33,0.00,1.00,-4.80,-4.80,0 --38.40,-0.00,3.29,0.00,1.00,-4.80,-4.80,0 --33.60,-0.00,3.25,0.00,1.00,-0.00,-0.00,0 --28.80,-0.00,3.21,0.00,1.00,-0.00,-0.00,0 --24.00,-0.00,3.17,0.00,1.00,-0.00,-0.00,0 --19.20,-0.00,3.13,0.00,1.00,-0.00,-0.00,0 --14.40,-0.00,3.09,0.00,1.00,-0.00,-0.00,0 --9.60,-0.00,3.05,0.00,1.00,-0.00,-0.00,0 --4.80,-0.00,3.01,0.00,1.00,-0.00,0.00,0 -0.00,0.00,2.97,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,2.93,0.00,1.00,-0.00,0.00,0 -9.60,-0.00,2.89,0.00,1.00,-0.00,0.00,0 -14.40,-0.00,2.85,0.00,1.00,-0.00,0.00,0 -19.20,-0.00,2.81,0.00,1.00,-0.00,0.00,0 -24.00,-0.00,2.77,0.00,1.00,-0.00,0.00,0 -28.80,-0.00,2.73,0.00,1.00,-0.00,0.00,0 -33.60,-0.00,2.69,0.00,1.00,-0.00,0.00,0 -38.40,-0.00,2.65,0.00,1.00,-0.00,0.00,0 -43.20,-0.00,2.61,0.00,1.00,-0.00,0.00,0 -48.00,-0.00,2.57,0.00,1.00,-0.00,0.00,0 -52.80,-0.00,2.53,0.00,1.00,-0.00,0.00,0 -57.60,-0.00,2.49,0.00,1.00,-0.00,0.00,0 -62.40,-0.00,2.45,0.00,1.00,-0.00,0.00,0 -67.20,-0.00,2.41,0.00,1.00,-4.80,0.00,0 -72.00,-0.00,2.37,0.00,1.00,-4.80,0.00,0 -76.80,-0.00,2.33,0.00,1.00,-4.80,0.00,0 -81.60,-0.00,2.29,0.00,1.00,-9.60,0.00,0 -86.40,-0.00,2.25,0.00,1.00,-19.20,0.00,0 -91.20,-0.00,2.21,0.00,1.00,-134.40,0.00,0 -96.00,-0.00,2.17,0.00,1.00,-168.00,0.00,0 -100.80,-0.00,2.13,0.00,1.00,-172.80,0.00,0 -105.60,-0.00,2.09,0.00,1.00,-177.60,0.00,0 -110.40,-0.00,2.05,0.00,1.00,-177.60,0.00,0 -115.20,-0.00,2.01,0.00,1.00,-177.60,0.00,0 -120.00,-0.00,1.96,0.00,1.00,-177.60,0.00,0 -124.80,-0.00,1.92,0.00,1.00,-177.60,0.00,0 -129.60,-0.00,1.88,0.00,1.00,-177.60,0.00,0 -134.40,-0.00,1.84,0.00,1.00,-177.60,0.00,0 -139.20,-0.00,1.80,0.00,1.00,-177.60,0.00,0 -144.00,-0.00,1.76,0.00,1.00,-177.60,0.00,0 -148.80,-0.00,1.72,0.00,1.00,-177.60,0.00,0 -153.60,-0.00,1.68,0.00,1.00,-177.60,0.00,0 -158.40,-0.00,1.64,0.00,1.00,-177.60,0.00,0 -163.20,-0.00,1.60,0.00,1.00,-177.60,0.00,0 -168.00,-0.00,1.56,0.00,1.00,-177.60,0.00,0 -172.80,-0.00,1.52,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,1.48,0.00,1.00,-177.60,0.00,0 --177.60,0.00,1.44,0.00,1.00,177.60,0.00,0 --172.80,0.00,1.40,0.00,1.00,177.60,0.00,0 --168.00,0.00,1.36,0.00,1.00,177.60,0.00,0 --163.20,0.00,1.32,0.00,1.00,177.60,0.00,0 --158.40,0.00,1.28,0.00,1.00,177.60,0.00,0 --153.60,0.00,1.24,0.00,1.00,177.60,0.00,0 --148.80,0.00,1.20,0.00,1.00,177.60,0.00,0 --144.00,0.00,1.16,0.00,1.00,177.60,0.00,0 --139.20,0.00,1.12,0.00,1.00,177.60,0.00,0 --134.40,0.00,1.08,0.00,1.00,177.60,0.00,0 --129.60,0.00,1.04,0.00,1.00,177.60,0.00,0 --124.80,0.00,1.00,0.00,1.00,177.60,0.00,0 --120.00,0.00,0.96,0.00,1.00,177.60,0.00,0 --115.20,0.00,0.92,0.00,1.00,177.60,0.00,0 --110.40,0.00,0.88,0.00,1.00,177.60,0.00,0 --105.60,0.00,0.84,0.00,1.00,177.60,0.00,0 --100.80,0.00,0.80,0.00,1.00,172.80,0.00,0 --96.00,0.00,0.76,0.00,1.00,168.00,0.00,0 --91.20,0.00,0.72,0.00,1.00,134.40,0.00,0 --86.40,0.00,0.68,0.00,1.00,19.20,0.00,0 --81.60,0.00,0.64,0.00,1.00,9.60,0.00,0 --76.80,0.00,0.60,0.00,1.00,4.80,0.00,0 --72.00,0.00,0.56,0.00,1.00,4.80,0.00,0 --67.20,0.00,0.52,0.00,1.00,4.80,0.00,0 --62.40,0.00,0.48,0.00,1.00,0.00,0.00,0 --57.60,0.00,0.44,0.00,1.00,0.00,0.00,0 --52.80,0.00,0.40,0.00,1.00,0.00,0.00,0 --48.00,0.00,0.36,0.00,1.00,0.00,0.00,0 --43.20,0.00,0.32,0.00,1.00,0.00,0.00,0 --38.40,0.00,0.28,0.00,1.00,0.00,0.00,0 --33.60,0.00,0.24,0.00,1.00,0.00,0.00,0 --28.80,0.00,0.20,0.00,1.00,0.00,0.00,0 --24.00,0.00,0.16,0.00,1.00,0.00,0.00,0 --19.20,0.00,0.12,0.00,1.00,0.00,0.00,0 --14.40,0.00,0.08,0.00,1.00,0.00,0.00,0 --9.60,0.00,0.04,0.00,1.00,0.00,0.00,0 --4.80,0.00,0.00,0.00,1.00,0.00,0.00,0 diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC32c.met b/scripts/testv/stvOMASA_4ISM_2MASA1TC32c.met deleted file mode 100644 index 64688774087538a671ebfda830ff11b4f836f438..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_2MASA1TC32c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d125a4c4e3989ac55f9c2617f464431feae4ede9b2e15d087d3271c0a4a56303 -size 319800 diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC32c.wav b/scripts/testv/stvOMASA_4ISM_2MASA1TC32c.wav deleted file mode 100644 index 8cfd3a944d569afefcca4bfdb405441011cb7cbd..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_2MASA1TC32c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:80d21b18d2c55179fe589eca09e99e7ac41a1760ba6681aa95355f105a04a18f -size 1920080 diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC32c_ISM1.csv b/scripts/testv/stvOMASA_4ISM_2MASA1TC32c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_2MASA1TC32c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC32c_ISM2.csv b/scripts/testv/stvOMASA_4ISM_2MASA1TC32c_ISM2.csv deleted file mode 100644 index f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_2MASA1TC32c_ISM2.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,4.80,16.00,0.00,1.00,0.00,0.00,0 -0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0 -0.00,14.40,15.96,0.00,1.00,4.80,9.60,0 -0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0 -0.00,24.00,15.91,0.00,1.00,14.40,19.20,0 -0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0 -0.00,33.60,15.87,0.00,1.00,19.20,28.80,0 -0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0 -0.00,43.20,15.83,0.00,1.00,28.80,38.40,0 -0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0 -0.00,52.80,15.79,0.00,1.00,38.40,48.00,0 -0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0 -0.00,62.40,15.74,0.00,1.00,48.00,57.60,0 -4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0 -4.80,72.00,15.70,0.00,1.00,57.60,67.20,0 -4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0 -9.60,81.60,15.66,0.00,1.00,72.00,76.80,0 -19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0 -134.40,86.40,15.62,0.00,1.00,86.40,86.40,0 -168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0 -172.80,76.80,15.57,0.00,1.00,100.80,86.40,0 -177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0 -177.60,67.20,15.53,0.00,1.00,110.40,76.80,0 -177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0 -177.60,57.60,15.49,0.00,1.00,124.80,67.20,0 -177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0 -177.60,48.00,15.44,0.00,1.00,134.40,57.60,0 -177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0 -177.60,38.40,15.40,0.00,1.00,144.00,48.00,0 -177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0 -177.60,28.80,15.36,0.00,1.00,153.60,38.40,0 -177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0 -177.60,19.20,15.32,0.00,1.00,158.40,28.80,0 -177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0 -177.60,9.60,15.27,0.00,1.00,168.00,19.20,0 -177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0 -177.60,0.00,15.23,0.00,1.00,172.80,9.60,0 --177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0 --177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0 --177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0 --177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0 --177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0 --177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0 --177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0 --177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0 --177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0 --177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0 --177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0 --177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0 --177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0 --177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0 --177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0 --177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0 --172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0 --168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0 --134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0 --19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0 --9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0 --4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0 --4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0 --4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0 --0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0 --0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0 --0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0 --0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0 --0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0 --0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0 --0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0 --0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0 --0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0 --0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0 --0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0 --0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0 --0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0 --0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,14.40,0.00,1.00,0.00,0.00,0 --0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0 --0.00,14.40,14.36,0.00,1.00,9.60,9.60,0 --0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0 --0.00,24.00,14.31,0.00,1.00,14.40,19.20,0 --0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0 --0.00,33.60,14.27,0.00,1.00,24.00,28.80,0 --4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0 --4.80,43.20,14.23,0.00,1.00,28.80,38.40,0 --4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0 --4.80,52.80,14.18,0.00,1.00,38.40,48.00,0 --4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0 --4.80,62.40,14.14,0.00,1.00,48.00,57.60,0 --9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0 --9.60,72.00,14.10,0.00,1.00,62.40,67.20,0 --14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0 --24.00,81.60,14.06,0.00,1.00,72.00,76.80,0 --43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0 --110.40,86.40,14.01,0.00,1.00,86.40,86.40,0 --148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0 --163.20,76.80,13.97,0.00,1.00,96.00,81.60,0 --168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0 --172.80,67.20,13.93,0.00,1.00,110.40,72.00,0 --172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0 --172.80,57.60,13.89,0.00,1.00,120.00,62.40,0 --172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0 --177.60,48.00,13.84,0.00,1.00,134.40,52.80,0 --177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0 --177.60,38.40,13.80,0.00,1.00,144.00,43.20,0 --177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0 --177.60,28.80,13.76,0.00,1.00,148.80,33.60,0 --177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0 --177.60,19.20,13.71,0.00,1.00,158.40,24.00,0 --177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0 --177.60,9.60,13.67,0.00,1.00,168.00,14.40,0 --177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0 --177.60,0.00,13.63,0.00,1.00,172.80,4.80,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0 -177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0 -177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0 -177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0 -177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0 -177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0 -177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0 -172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0 -172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0 -172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0 -172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0 -168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0 -163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0 -148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0 -110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0 -43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0 -24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0 -14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0 -9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0 -9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0 -4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0 -4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0 -4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0 -4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0 -4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0 -0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0 -0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0 -0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0 -0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0 -0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,12.80,0.00,1.00,0.00,0.00,0 --0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0 --0.00,14.40,12.75,0.00,1.00,9.60,9.60,0 --4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0 --4.80,24.00,12.71,0.00,1.00,14.40,19.20,0 --4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0 --4.80,33.60,12.67,0.00,1.00,24.00,28.80,0 --4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0 --9.60,43.20,12.62,0.00,1.00,33.60,38.40,0 --9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0 --9.60,52.80,12.58,0.00,1.00,43.20,48.00,0 --14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0 --14.40,62.40,12.54,0.00,1.00,52.80,57.60,0 --19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0 --24.00,72.00,12.50,0.00,1.00,62.40,67.20,0 --33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0 --43.20,76.80,12.45,0.00,1.00,72.00,72.00,0 --67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0 --96.00,81.60,12.41,0.00,1.00,86.40,81.60,0 --124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0 --144.00,76.80,12.37,0.00,1.00,96.00,76.80,0 --153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0 --158.40,67.20,12.33,0.00,1.00,110.40,72.00,0 --163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0 --168.00,57.60,12.28,0.00,1.00,120.00,62.40,0 --168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0 --168.00,48.00,12.24,0.00,1.00,129.60,52.80,0 --172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0 --172.80,38.40,12.20,0.00,1.00,139.20,43.20,0 --172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0 --172.80,28.80,12.15,0.00,1.00,148.80,33.60,0 --177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0 --177.60,19.20,12.11,0.00,1.00,158.40,24.00,0 --177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0 --177.60,9.60,12.07,0.00,1.00,168.00,14.40,0 --177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0 --177.60,0.00,12.03,0.00,1.00,172.80,4.80,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0 -177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0 -172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0 -172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0 -168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0 -168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0 -168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0 -163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0 -158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0 -153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0 -144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0 -124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0 -96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0 -67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0 -43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0 -33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0 -24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0 -19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0 -14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0 -14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0 -9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0 -9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0 -9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0 -4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0 -4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0 -0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,11.19,0.00,1.00,0.00,0.00,0 --0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0 --4.80,14.40,11.15,0.00,1.00,9.60,9.60,0 --4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0 --4.80,24.00,11.11,0.00,1.00,14.40,19.20,0 --4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0 --9.60,33.60,11.07,0.00,1.00,24.00,28.80,0 --9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0 --14.40,43.20,11.02,0.00,1.00,33.60,38.40,0 --14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0 --14.40,52.80,10.98,0.00,1.00,43.20,48.00,0 --19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0 --24.00,57.60,10.94,0.00,1.00,52.80,52.80,0 --28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0 --33.60,67.20,10.89,0.00,1.00,62.40,62.40,0 --43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0 --57.60,72.00,10.85,0.00,1.00,76.80,72.00,0 --76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0 --96.00,76.80,10.81,0.00,1.00,86.40,76.80,0 --115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0 --129.60,72.00,10.77,0.00,1.00,96.00,76.80,0 --139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0 --148.80,67.20,10.72,0.00,1.00,105.60,67.20,0 --153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0 --158.40,57.60,10.68,0.00,1.00,120.00,62.40,0 --163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0 --163.20,48.00,10.64,0.00,1.00,129.60,52.80,0 --168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0 --168.00,38.40,10.60,0.00,1.00,139.20,43.20,0 --172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0 --172.80,28.80,10.55,0.00,1.00,148.80,33.60,0 --172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0 --172.80,19.20,10.51,0.00,1.00,158.40,24.00,0 --177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0 --177.60,9.60,10.47,0.00,1.00,163.20,14.40,0 --177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0 --177.60,0.00,10.42,0.00,1.00,172.80,4.80,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0 -168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0 -168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0 -163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0 -163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0 -158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0 -153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0 -148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0 -139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0 -129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0 -115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0 -96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0 -76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0 -57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0 -43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0 -33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0 -28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0 -24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0 -19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0 -14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0 -14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0 -14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0 -9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0 -9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0 -4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0 -4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0 -0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,9.59,0.00,1.00,0.00,0.00,0 --4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0 --4.80,14.40,9.55,0.00,1.00,9.60,9.60,0 --4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0 --9.60,24.00,9.51,0.00,1.00,19.20,19.20,0 --9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0 --9.60,33.60,9.46,0.00,1.00,24.00,28.80,0 --14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0 --14.40,38.40,9.42,0.00,1.00,33.60,33.60,0 --19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0 --24.00,48.00,9.38,0.00,1.00,43.20,43.20,0 --24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0 --28.80,57.60,9.34,0.00,1.00,52.80,52.80,0 --38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0 --43.20,62.40,9.29,0.00,1.00,67.20,62.40,0 --52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0 --62.40,72.00,9.25,0.00,1.00,76.80,67.20,0 --76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0 --96.00,72.00,9.21,0.00,1.00,86.40,72.00,0 --110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0 --120.00,67.20,9.16,0.00,1.00,96.00,72.00,0 --134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0 --139.20,62.40,9.12,0.00,1.00,105.60,67.20,0 --148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0 --153.60,57.60,9.08,0.00,1.00,115.20,57.60,0 --158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0 --158.40,48.00,9.04,0.00,1.00,129.60,52.80,0 --163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0 --163.20,38.40,8.99,0.00,1.00,139.20,43.20,0 --168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0 --168.00,28.80,8.95,0.00,1.00,148.80,33.60,0 --172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0 --172.80,19.20,8.91,0.00,1.00,153.60,24.00,0 --172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0 --177.60,9.60,8.87,0.00,1.00,163.20,14.40,0 --177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0 --177.60,0.00,8.82,0.00,1.00,172.80,4.80,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0 -168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0 -163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0 -163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0 -158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0 -158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0 -153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0 -148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0 -139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0 -134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0 -120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0 -110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0 -96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0 -76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0 -62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0 -52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0 -43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0 -38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0 -28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0 -24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0 -24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0 -19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0 -14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0 -14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0 -9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0 -9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0 -9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0 -0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,7.99,0.00,1.00,0.00,0.00,0 --4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0 --4.80,14.40,7.95,0.00,1.00,9.60,9.60,0 --9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0 --9.60,24.00,7.90,0.00,1.00,19.20,19.20,0 --14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0 --14.40,28.80,7.86,0.00,1.00,28.80,24.00,0 --19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0 --19.20,38.40,7.82,0.00,1.00,38.40,33.60,0 --24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0 --28.80,48.00,7.78,0.00,1.00,48.00,43.20,0 --33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0 --38.40,52.80,7.73,0.00,1.00,57.60,52.80,0 --43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0 --48.00,62.40,7.69,0.00,1.00,67.20,57.60,0 --57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0 --67.20,67.20,7.65,0.00,1.00,76.80,62.40,0 --81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0 --91.20,67.20,7.60,0.00,1.00,86.40,67.20,0 --105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0 --115.20,67.20,7.56,0.00,1.00,96.00,67.20,0 --124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0 --134.40,57.60,7.52,0.00,1.00,105.60,62.40,0 --139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0 --144.00,52.80,7.48,0.00,1.00,115.20,57.60,0 --148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0 --153.60,43.20,7.43,0.00,1.00,124.80,48.00,0 --158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0 --163.20,38.40,7.39,0.00,1.00,134.40,38.40,0 --163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0 --168.00,28.80,7.35,0.00,1.00,144.00,33.60,0 --168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0 --172.80,19.20,7.31,0.00,1.00,153.60,24.00,0 --172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0 --177.60,9.60,7.26,0.00,1.00,163.20,14.40,0 --177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0 --177.60,0.00,7.22,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0 -163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0 -158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0 -153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0 -148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0 -144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0 -139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0 -134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0 -124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0 -115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0 -105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0 -91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0 -81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0 -67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0 -57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0 -48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0 -43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0 -38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0 -33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0 -28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0 -24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0 -19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0 -19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0 -14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0 -9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0 -0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,6.39,0.00,1.00,0.00,0.00,0 --4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0 --4.80,14.40,6.34,0.00,1.00,9.60,9.60,0 --9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0 --9.60,19.20,6.30,0.00,1.00,19.20,14.40,0 --14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0 --19.20,28.80,6.26,0.00,1.00,28.80,24.00,0 --19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0 --24.00,38.40,6.22,0.00,1.00,38.40,33.60,0 --28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0 --33.60,43.20,6.17,0.00,1.00,48.00,38.40,0 --38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0 --43.20,52.80,6.13,0.00,1.00,57.60,48.00,0 --48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0 --52.80,57.60,6.09,0.00,1.00,67.20,52.80,0 --62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0 --72.00,62.40,6.05,0.00,1.00,76.80,57.60,0 --81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0 --91.20,62.40,6.00,0.00,1.00,86.40,62.40,0 --100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0 --110.40,62.40,5.96,0.00,1.00,96.00,62.40,0 --120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0 --129.60,57.60,5.92,0.00,1.00,105.60,57.60,0 --134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0 --139.20,48.00,5.87,0.00,1.00,115.20,52.80,0 --144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0 --148.80,43.20,5.83,0.00,1.00,124.80,48.00,0 --153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0 --158.40,33.60,5.79,0.00,1.00,134.40,38.40,0 --163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0 --163.20,28.80,5.75,0.00,1.00,144.00,28.80,0 --168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0 --168.00,19.20,5.70,0.00,1.00,153.60,24.00,0 --172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0 --172.80,9.60,5.66,0.00,1.00,163.20,14.40,0 --177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0 --177.60,0.00,5.62,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0 -163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0 -158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0 -148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0 -144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0 -139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0 -134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0 -129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0 -120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0 -110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0 -100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0 -91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0 -81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0 -72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0 -62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0 -52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0 -48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0 -43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0 -38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0 -33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0 -28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0 -24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0 -19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0 -19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0 -9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0 -4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0 -0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,4.79,0.00,1.00,0.00,0.00,0 --4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0 --9.60,14.40,4.74,0.00,1.00,9.60,9.60,0 --9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0 --14.40,19.20,4.70,0.00,1.00,19.20,14.40,0 --14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0 --19.20,28.80,4.66,0.00,1.00,28.80,24.00,0 --24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0 --28.80,33.60,4.61,0.00,1.00,38.40,28.80,0 --28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0 --33.60,43.20,4.57,0.00,1.00,48.00,38.40,0 --38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0 --48.00,48.00,4.53,0.00,1.00,57.60,43.20,0 --52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0 --57.60,52.80,4.49,0.00,1.00,67.20,48.00,0 --67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0 --76.80,57.60,4.44,0.00,1.00,76.80,52.80,0 --81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0 --91.20,57.60,4.40,0.00,1.00,86.40,57.60,0 --100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0 --110.40,57.60,4.36,0.00,1.00,96.00,57.60,0 --115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0 --124.80,52.80,4.32,0.00,1.00,105.60,52.80,0 --129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0 --139.20,48.00,4.27,0.00,1.00,115.20,48.00,0 --144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0 --148.80,38.40,4.23,0.00,1.00,124.80,43.20,0 --153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0 --153.60,33.60,4.19,0.00,1.00,134.40,38.40,0 --158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0 --163.20,24.00,4.14,0.00,1.00,144.00,28.80,0 --163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0 --168.00,19.20,4.10,0.00,1.00,153.60,24.00,0 --172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0 --172.80,9.60,4.06,0.00,1.00,163.20,14.40,0 --177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0 --177.60,0.00,4.02,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0 -163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0 -163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0 -158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0 -148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0 -144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0 -139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0 -129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0 -124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0 -115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0 -110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0 -100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0 -91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0 -81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0 -76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0 -67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0 -57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0 -52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0 -48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0 -38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0 -33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0 -28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0 -28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0 -24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0 -19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0 -14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0 -14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0 -9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0 -0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.18,0.00,1.00,0.00,0.00,0 --4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0 --9.60,9.60,3.14,0.00,1.00,9.60,9.60,0 --9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0 --14.40,19.20,3.10,0.00,1.00,19.20,14.40,0 --19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0 --24.00,24.00,3.05,0.00,1.00,28.80,24.00,0 --24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0 --28.80,33.60,3.01,0.00,1.00,38.40,28.80,0 --33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0 --38.40,38.40,2.97,0.00,1.00,48.00,33.60,0 --43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0 --48.00,43.20,2.93,0.00,1.00,57.60,43.20,0 --52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0 --62.40,48.00,2.88,0.00,1.00,67.20,48.00,0 --67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0 --76.80,52.80,2.84,0.00,1.00,76.80,48.00,0 --86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0 --91.20,52.80,2.80,0.00,1.00,86.40,52.80,0 --100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0 --105.60,52.80,2.76,0.00,1.00,96.00,52.80,0 --115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0 --120.00,48.00,2.71,0.00,1.00,105.60,48.00,0 --129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0 --134.40,43.20,2.67,0.00,1.00,115.20,43.20,0 --139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0 --144.00,38.40,2.63,0.00,1.00,124.80,38.40,0 --148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0 --153.60,33.60,2.58,0.00,1.00,134.40,33.60,0 --158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0 --158.40,24.00,2.54,0.00,1.00,144.00,28.80,0 --163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0 --168.00,19.20,2.50,0.00,1.00,153.60,19.20,0 --168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.46,0.00,1.00,163.20,14.40,0 --177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.41,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0 -158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0 -148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0 -144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0 -139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0 -134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0 -129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0 -120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0 -115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0 -105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0 -100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0 -91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0 -86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0 -76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0 -67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0 -62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0 -52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0 -48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0 -43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0 -38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0 -33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0 -28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0 -24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0 -24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0 -19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0 -0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.58,0.00,1.00,0.00,0.00,0 --4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.54,0.00,1.00,9.60,4.80,0 --14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0 --14.40,19.20,1.50,0.00,1.00,19.20,14.40,0 --19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0 --24.00,24.00,1.45,0.00,1.00,28.80,19.20,0 --28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0 --33.60,28.80,1.41,0.00,1.00,38.40,28.80,0 --38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0 --43.20,38.40,1.37,0.00,1.00,48.00,33.60,0 --48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0 --52.80,43.20,1.32,0.00,1.00,57.60,38.40,0 --57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0 --62.40,43.20,1.28,0.00,1.00,67.20,43.20,0 --72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0 --76.80,48.00,1.24,0.00,1.00,76.80,43.20,0 --86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0 --91.20,48.00,1.20,0.00,1.00,86.40,48.00,0 --100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0 --105.60,48.00,1.15,0.00,1.00,96.00,48.00,0 --110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0 --120.00,43.20,1.11,0.00,1.00,105.60,43.20,0 --124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0 --129.60,38.40,1.07,0.00,1.00,115.20,43.20,0 --134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0 --139.20,33.60,1.03,0.00,1.00,124.80,38.40,0 --144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0 --148.80,28.80,0.98,0.00,1.00,134.40,33.60,0 --153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0 --158.40,24.00,0.94,0.00,1.00,144.00,24.00,0 --163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0 --163.20,14.40,0.90,0.00,1.00,153.60,19.20,0 --168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.85,0.00,1.00,163.20,14.40,0 --172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.81,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0 -148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0 -144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0 -139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0 -134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0 -129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0 -124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0 -120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0 -110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0 -105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0 -100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0 -91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0 -86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0 -76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0 -72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0 -62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0 -57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0 -52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0 -48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0 -43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0 -38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0 -28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0 -19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0 -0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,0.00,0.00,1.00,0.00,0.00,0 --4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0 --9.60,9.60,0.04,0.00,1.00,9.60,4.80,0 --14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0 --19.20,14.40,0.09,0.00,1.00,19.20,14.40,0 --24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0 --24.00,24.00,0.13,0.00,1.00,28.80,19.20,0 --28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0 --33.60,28.80,0.17,0.00,1.00,38.40,24.00,0 --38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0 --43.20,33.60,0.21,0.00,1.00,48.00,28.80,0 --48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0 --52.80,38.40,0.26,0.00,1.00,57.60,33.60,0 --62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0 --67.20,38.40,0.30,0.00,1.00,67.20,38.40,0 --72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0 --76.80,43.20,0.34,0.00,1.00,76.80,38.40,0 --86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0 --91.20,43.20,0.38,0.00,1.00,86.40,43.20,0 --96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0 --105.60,43.20,0.43,0.00,1.00,96.00,43.20,0 --110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0 --115.20,38.40,0.47,0.00,1.00,105.60,38.40,0 --124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0 --129.60,38.40,0.51,0.00,1.00,115.20,38.40,0 --134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0 --139.20,33.60,0.56,0.00,1.00,124.80,33.60,0 --144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0 --148.80,28.80,0.60,0.00,1.00,134.40,28.80,0 --153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0 --158.40,19.20,0.64,0.00,1.00,144.00,24.00,0 --158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0 --163.20,14.40,0.68,0.00,1.00,153.60,19.20,0 --168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.73,0.00,1.00,163.20,9.60,0 --172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.77,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0 -158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0 -158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0 -148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0 -144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0 -139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0 -134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0 -129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0 -124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0 -115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0 -110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0 -105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0 -96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0 -91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0 -86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0 -76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0 -72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0 -67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0 -62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0 -52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0 -48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0 -43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0 -38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0 -28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0 -19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0 -0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.60,0.00,1.00,0.00,0.00,0 --9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.64,0.00,1.00,9.60,4.80,0 --14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0 --19.20,14.40,1.69,0.00,1.00,19.20,9.60,0 --24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0 --28.80,19.20,1.73,0.00,1.00,28.80,19.20,0 --33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0 --38.40,24.00,1.77,0.00,1.00,38.40,24.00,0 --43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0 --48.00,28.80,1.82,0.00,1.00,48.00,28.80,0 --52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0 --57.60,33.60,1.86,0.00,1.00,57.60,28.80,0 --62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0 --67.20,38.40,1.90,0.00,1.00,67.20,33.60,0 --72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0 --81.60,38.40,1.94,0.00,1.00,76.80,38.40,0 --86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0 --91.20,38.40,1.99,0.00,1.00,86.40,38.40,0 --96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0 --105.60,38.40,2.03,0.00,1.00,96.00,38.40,0 --110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0 --115.20,33.60,2.07,0.00,1.00,105.60,33.60,0 --120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0 --124.80,33.60,2.11,0.00,1.00,115.20,33.60,0 --129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0 --134.40,28.80,2.16,0.00,1.00,124.80,28.80,0 --139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0 --144.00,24.00,2.20,0.00,1.00,134.40,24.00,0 --148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0 --153.60,19.20,2.24,0.00,1.00,144.00,19.20,0 --158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0 --163.20,14.40,2.29,0.00,1.00,153.60,14.40,0 --168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.33,0.00,1.00,163.20,9.60,0 --172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.37,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0 -153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0 -144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0 -134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0 -124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0 -120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0 -115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0 -110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0 -105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0 -96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0 -91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0 -86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0 -81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0 -72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0 -67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0 -62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0 -57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0 -52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0 -48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0 -43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0 -38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0 -33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0 -28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0 -14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.20,0.00,1.00,0.00,0.00,0 --9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0 --14.40,9.60,3.25,0.00,1.00,9.60,4.80,0 --14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0 --19.20,14.40,3.29,0.00,1.00,19.20,9.60,0 --24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0 --28.80,19.20,3.33,0.00,1.00,28.80,14.40,0 --33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0 --38.40,24.00,3.38,0.00,1.00,38.40,19.20,0 --43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0 --48.00,24.00,3.42,0.00,1.00,48.00,24.00,0 --52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0 --57.60,28.80,3.46,0.00,1.00,57.60,28.80,0 --62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0 --67.20,33.60,3.50,0.00,1.00,67.20,28.80,0 --72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0 --81.60,33.60,3.55,0.00,1.00,76.80,33.60,0 --86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0 --91.20,33.60,3.59,0.00,1.00,86.40,33.60,0 --96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0 --100.80,33.60,3.63,0.00,1.00,96.00,33.60,0 --110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0 --115.20,33.60,3.67,0.00,1.00,105.60,28.80,0 --120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0 --124.80,28.80,3.72,0.00,1.00,115.20,28.80,0 --129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0 --134.40,24.00,3.76,0.00,1.00,124.80,24.00,0 --139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0 --144.00,19.20,3.80,0.00,1.00,134.40,24.00,0 --148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0 --153.60,14.40,3.85,0.00,1.00,144.00,19.20,0 --158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0 --163.20,9.60,3.89,0.00,1.00,153.60,14.40,0 --168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0 --168.00,4.80,3.93,0.00,1.00,163.20,9.60,0 --172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0 --177.60,0.00,3.97,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0 -124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0 -120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0 -115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0 -110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0 -100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0 -96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0 -91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0 -86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0 -81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0 -72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0 -67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0 -62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0 -57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0 -52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0 -48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0 -43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0 -38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0 -33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0 -28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0 -24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0 -14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0 -14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0 --4.80,0.00,4.81,0.00,1.00,0.00,0.00,0 --9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0 --14.40,4.80,4.85,0.00,1.00,9.60,4.80,0 --19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0 --19.20,9.60,4.89,0.00,1.00,19.20,9.60,0 --24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0 --28.80,14.40,4.93,0.00,1.00,28.80,14.40,0 --33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0 --38.40,19.20,4.98,0.00,1.00,38.40,14.40,0 --43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0 --48.00,24.00,5.02,0.00,1.00,48.00,19.20,0 --52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0 --57.60,24.00,5.06,0.00,1.00,57.60,24.00,0 --62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0 --72.00,28.80,5.11,0.00,1.00,67.20,24.00,0 --76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0 --81.60,28.80,5.15,0.00,1.00,76.80,28.80,0 --86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0 --91.20,28.80,5.19,0.00,1.00,86.40,28.80,0 --96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0 --100.80,28.80,5.23,0.00,1.00,96.00,28.80,0 --105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0 --115.20,28.80,5.28,0.00,1.00,105.60,28.80,0 --120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0 --124.80,24.00,5.32,0.00,1.00,115.20,24.00,0 --129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0 --134.40,24.00,5.36,0.00,1.00,124.80,24.00,0 --139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0 --144.00,19.20,5.40,0.00,1.00,134.40,19.20,0 --148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0 --153.60,14.40,5.45,0.00,1.00,144.00,14.40,0 --158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0 --163.20,9.60,5.49,0.00,1.00,153.60,9.60,0 --163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0 --168.00,4.80,5.53,0.00,1.00,163.20,9.60,0 --172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0 --177.60,0.00,5.58,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0 -163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0 -129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0 -124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0 -120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0 -115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0 -105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0 -100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0 -96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0 -91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0 -86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0 -81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0 -76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0 -72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0 -62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0 -57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0 -52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0 -48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0 -43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0 -38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0 -33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0 -28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0 -24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0 -19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0 -19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0 -0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,6.41,0.00,1.00,0.00,0.00,0 --9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0 --14.40,4.80,6.45,0.00,1.00,9.60,4.80,0 --19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0 --24.00,9.60,6.49,0.00,1.00,19.20,9.60,0 --28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0 --33.60,14.40,6.54,0.00,1.00,28.80,9.60,0 --33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0 --38.40,14.40,6.58,0.00,1.00,38.40,14.40,0 --43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0 --48.00,19.20,6.62,0.00,1.00,48.00,14.40,0 --57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0 --62.40,19.20,6.66,0.00,1.00,57.60,19.20,0 --67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0 --72.00,24.00,6.71,0.00,1.00,67.20,19.20,0 --76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0 --81.60,24.00,6.75,0.00,1.00,76.80,24.00,0 --86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0 --91.20,24.00,6.79,0.00,1.00,86.40,24.00,0 --96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0 --100.80,24.00,6.84,0.00,1.00,96.00,24.00,0 --105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0 --110.40,24.00,6.88,0.00,1.00,105.60,24.00,0 --115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0 --120.00,19.20,6.92,0.00,1.00,115.20,19.20,0 --129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0 --134.40,19.20,6.96,0.00,1.00,124.80,19.20,0 --139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0 --144.00,14.40,7.01,0.00,1.00,134.40,14.40,0 --148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0 --148.80,14.40,7.05,0.00,1.00,144.00,14.40,0 --153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0 --158.40,9.60,7.09,0.00,1.00,153.60,9.60,0 --163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0 --168.00,4.80,7.13,0.00,1.00,163.20,4.80,0 --172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0 --177.60,0.00,7.18,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0 -163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0 -158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0 -148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0 -144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0 -134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0 -129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0 -120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0 -115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0 -110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0 -105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0 -100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0 -96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0 -91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0 -86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0 -81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0 -76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0 -72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0 -67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0 -62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0 -57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0 -48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0 -43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0 -38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0 -33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0 -33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0 -28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0 -24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0 -19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0 -0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,8.01,0.00,1.00,0.00,0.00,0 --9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0 --14.40,4.80,8.05,0.00,1.00,9.60,4.80,0 --19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0 --24.00,9.60,8.10,0.00,1.00,19.20,4.80,0 --28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0 --33.60,9.60,8.14,0.00,1.00,24.00,9.60,0 --38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0 --43.20,14.40,8.18,0.00,1.00,33.60,9.60,0 --48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0 --52.80,14.40,8.22,0.00,1.00,43.20,14.40,0 --57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0 --62.40,19.20,8.27,0.00,1.00,52.80,14.40,0 --67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0 --72.00,19.20,8.31,0.00,1.00,62.40,14.40,0 --76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0 --81.60,19.20,8.35,0.00,1.00,76.80,19.20,0 --86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0 --91.20,19.20,8.40,0.00,1.00,86.40,19.20,0 --96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0 --100.80,19.20,8.44,0.00,1.00,96.00,19.20,0 --105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0 --110.40,19.20,8.48,0.00,1.00,105.60,19.20,0 --115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0 --120.00,14.40,8.52,0.00,1.00,120.00,14.40,0 --124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0 --129.60,14.40,8.57,0.00,1.00,129.60,14.40,0 --134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0 --139.20,14.40,8.61,0.00,1.00,139.20,14.40,0 --144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0 --148.80,9.60,8.65,0.00,1.00,148.80,9.60,0 --153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0 --158.40,4.80,8.69,0.00,1.00,158.40,9.60,0 --163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0 --168.00,4.80,8.74,0.00,1.00,163.20,4.80,0 --172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0 -148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0 -144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0 -139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0 -134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0 -129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0 -124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0 -120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0 -115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0 -110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0 -105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0 -100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0 -96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0 -91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0 -86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0 -81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0 -76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0 -72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0 -67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0 -62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0 -52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0 -48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0 -43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0 -38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0 -33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0 -28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0 -24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0 -19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0 -9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0 -0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,9.61,0.00,1.00,0.00,0.00,0 --9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0 --14.40,4.80,9.66,0.00,1.00,9.60,0.00,0 --19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0 --24.00,4.80,9.70,0.00,1.00,14.40,4.80,0 --28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0 --33.60,9.60,9.74,0.00,1.00,24.00,4.80,0 --38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0 --43.20,9.60,9.78,0.00,1.00,33.60,9.60,0 --48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0 --52.80,9.60,9.83,0.00,1.00,43.20,9.60,0 --57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0 --62.40,14.40,9.87,0.00,1.00,52.80,9.60,0 --67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0 --72.00,14.40,9.91,0.00,1.00,62.40,14.40,0 --76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0 --81.60,14.40,9.95,0.00,1.00,76.80,14.40,0 --86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0 --91.20,14.40,10.00,0.00,1.00,86.40,14.40,0 --96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0 --100.80,14.40,10.04,0.00,1.00,96.00,14.40,0 --105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0 --110.40,14.40,10.08,0.00,1.00,110.40,14.40,0 --115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0 --120.00,14.40,10.13,0.00,1.00,120.00,9.60,0 --124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0 --129.60,9.60,10.17,0.00,1.00,129.60,9.60,0 --134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0 --139.20,9.60,10.21,0.00,1.00,139.20,9.60,0 --144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0 --148.80,9.60,10.25,0.00,1.00,148.80,9.60,0 --153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0 --158.40,4.80,10.30,0.00,1.00,158.40,4.80,0 --163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0 --168.00,4.80,10.34,0.00,1.00,168.00,4.80,0 --172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0 -148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0 -144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0 -139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0 -134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0 -129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0 -124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0 -120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0 -115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0 -110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0 -105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0 -100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0 -96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0 -91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0 -86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0 -81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0 -76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0 -72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0 -67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0 -62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0 -48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0 -43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0 -38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0 -33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0 -28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0 -24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0 -19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0 -14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,11.21,0.00,1.00,0.00,0.00,0 --9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0 --14.40,0.00,11.26,0.00,1.00,9.60,0.00,0 --19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0 --24.00,4.80,11.30,0.00,1.00,14.40,4.80,0 --28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0 --33.60,4.80,11.34,0.00,1.00,24.00,4.80,0 --38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0 --43.20,4.80,11.39,0.00,1.00,33.60,4.80,0 --48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0 --52.80,9.60,11.43,0.00,1.00,43.20,4.80,0 --57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0 --62.40,9.60,11.47,0.00,1.00,52.80,4.80,0 --67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0 --72.00,9.60,11.51,0.00,1.00,62.40,9.60,0 --76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0 --81.60,9.60,11.56,0.00,1.00,72.00,9.60,0 --86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0 --91.20,9.60,11.60,0.00,1.00,86.40,9.60,0 --96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0 --100.80,9.60,11.64,0.00,1.00,96.00,9.60,0 --105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0 --110.40,9.60,11.68,0.00,1.00,110.40,9.60,0 --115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0 --120.00,9.60,11.73,0.00,1.00,120.00,9.60,0 --124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0 --129.60,9.60,11.77,0.00,1.00,129.60,4.80,0 --134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0 --139.20,4.80,11.81,0.00,1.00,139.20,4.80,0 --144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0 --148.80,4.80,11.86,0.00,1.00,148.80,4.80,0 --153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0 --158.40,4.80,11.90,0.00,1.00,158.40,4.80,0 --163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0 --168.00,0.00,11.94,0.00,1.00,168.00,4.80,0 --172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0 -158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0 -148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0 -144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0 -139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0 -134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0 -129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0 -124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0 -120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0 -115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0 -110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0 -105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0 -100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0 -96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0 -91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0 -86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0 -81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0 -76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0 -72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0 -67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0 -62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0 -57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0 -43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0 -33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0 -28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0 -24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0 -19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,12.82,0.00,1.00,0.00,0.00,0 --9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0 --14.40,0.00,12.86,0.00,1.00,9.60,0.00,0 --19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0 --24.00,0.00,12.90,0.00,1.00,14.40,0.00,0 --28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0 --33.60,4.80,12.95,0.00,1.00,24.00,0.00,0 --38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0 --43.20,4.80,12.99,0.00,1.00,28.80,0.00,0 --48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0 --52.80,4.80,13.03,0.00,1.00,38.40,4.80,0 --57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0 --62.40,4.80,13.07,0.00,1.00,48.00,4.80,0 --67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0 --72.00,4.80,13.12,0.00,1.00,62.40,4.80,0 --76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0 --81.60,4.80,13.16,0.00,1.00,72.00,4.80,0 --86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0 --91.20,4.80,13.20,0.00,1.00,86.40,4.80,0 --96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0 --100.80,4.80,13.24,0.00,1.00,96.00,4.80,0 --105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0 --110.40,4.80,13.29,0.00,1.00,110.40,4.80,0 --115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0 --120.00,4.80,13.33,0.00,1.00,120.00,4.80,0 --124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0 --129.60,4.80,13.37,0.00,1.00,134.40,4.80,0 --134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0 --139.20,4.80,13.42,0.00,1.00,144.00,4.80,0 --144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0 --148.80,4.80,13.46,0.00,1.00,153.60,0.00,0 --153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0 --158.40,0.00,13.50,0.00,1.00,158.40,0.00,0 --163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0 --168.00,0.00,13.54,0.00,1.00,168.00,0.00,0 --172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0 -163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0 -158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0 -153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0 -148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0 -144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0 -139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0 -134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0 -129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0 -124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0 -120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0 -115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0 -110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0 -105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0 -100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0 -96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0 -91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0 -86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0 -81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0 -76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0 -72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0 -67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0 -57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0 -52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0 -43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0 -33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0 -28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0 -24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0 -19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0 -14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0 -9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,14.42,0.00,1.00,0.00,0.00,0 --9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0 --14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0 --19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0 --24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0 --28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0 --33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0 --38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0 --43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0 --48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0 --52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0 --57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0 --62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0 --67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0 --72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0 --76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0 --81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0 --86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0 --91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0 --96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0 --100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0 --105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0 --110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0 --115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0 --120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0 --124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0 --129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0 --134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0 --139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0 --144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0 --148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0 --153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0 --158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0 --163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0 --168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0 --172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0 -177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0 -172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0 -168.00,0.00,15.25,0.00,1.00,4.80,0.00,0 -163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0 -158.40,0.00,15.30,0.00,1.00,9.60,0.00,0 -153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0 -148.80,0.00,15.34,0.00,1.00,19.20,0.00,0 -144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0 -139.20,0.00,15.38,0.00,1.00,28.80,0.00,0 -134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0 -129.60,0.00,15.42,0.00,1.00,33.60,0.00,0 -124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0 -120.00,0.00,15.47,0.00,1.00,43.20,0.00,0 -115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0 -110.40,0.00,15.51,0.00,1.00,57.60,0.00,0 -105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0 -100.80,0.00,15.55,0.00,1.00,67.20,0.00,0 -96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0 -91.20,0.00,15.59,0.00,1.00,81.60,0.00,0 -86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0 -81.60,0.00,15.64,0.00,1.00,96.00,0.00,0 -76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0 -72.00,0.00,15.68,0.00,1.00,110.40,0.00,0 -67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0 -62.40,0.00,15.72,0.00,1.00,120.00,0.00,0 -57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0 -52.80,0.00,15.77,0.00,1.00,134.40,0.00,0 -48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0 -43.20,0.00,15.81,0.00,1.00,144.00,0.00,0 -38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0 -33.60,0.00,15.85,0.00,1.00,153.60,0.00,0 -28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0 -24.00,0.00,15.89,0.00,1.00,158.40,0.00,0 -19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0 -14.40,0.00,15.94,0.00,1.00,168.00,0.00,0 -9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0 -4.80,0.00,15.98,0.00,1.00,172.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC32c_ISM3.csv b/scripts/testv/stvOMASA_4ISM_2MASA1TC32c_ISM3.csv deleted file mode 100644 index 14eee9b693b536fa2fd22d2813d7f588b8930b06..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_2MASA1TC32c_ISM3.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0 --177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0 -4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0 --168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0 -14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0 --163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0 -19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0 --153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0 -28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0 --148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0 -38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0 --139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0 -48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0 --124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0 -57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0 --115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0 -72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0 --100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0 -86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0 --86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0 -100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0 --76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0 -110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0 --62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0 -124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0 --52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0 -134.40,33.60,0.28,0.00,1.00,177.60,0.00,0 --38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0 -144.00,28.80,0.30,0.00,1.00,177.60,0.00,0 --33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0 -153.60,24.00,0.32,0.00,1.00,177.60,0.00,0 --24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0 -158.40,19.20,0.34,0.00,1.00,177.60,0.00,0 --14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0 -168.00,9.60,0.36,0.00,1.00,177.60,0.00,0 --9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0 -172.80,4.80,0.38,0.00,1.00,177.60,0.00,0 --0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0 --177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0 -4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0 -14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0 -19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0 --158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0 -28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0 --148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0 -33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0 --139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0 -43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0 --129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0 -57.60,38.40,15.47,0.00,1.00,177.60,0.00,0 --120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0 -67.20,43.20,15.44,0.00,1.00,177.60,0.00,0 --105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0 -81.60,43.20,15.42,0.00,1.00,177.60,0.00,0 --91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0 -96.00,43.20,15.40,0.00,1.00,0.00,0.00,0 --76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0 -110.40,43.20,15.38,0.00,1.00,0.00,0.00,0 --67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0 -120.00,38.40,15.36,0.00,1.00,0.00,0.00,0 --52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0 -129.60,38.40,15.34,0.00,1.00,0.00,0.00,0 --43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0 -144.00,33.60,15.32,0.00,1.00,0.00,0.00,0 --33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0 -148.80,24.00,15.30,0.00,1.00,0.00,0.00,0 --24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0 -158.40,19.20,15.27,0.00,1.00,0.00,0.00,0 --19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0 -168.00,14.40,15.25,0.00,1.00,0.00,0.00,0 --9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0 -172.80,4.80,15.23,0.00,1.00,0.00,0.00,0 --4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0 -0.00,0.00,15.21,0.00,1.00,0.00,0.00,0 --177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0 -9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0 -14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0 --163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0 -24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0 --153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0 -28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0 --144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0 -38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0 --134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0 -48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0 --124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0 -62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0 --115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0 -72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0 --100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0 -86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0 --86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0 -96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0 --76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0 -110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0 --62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0 -120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0 --52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0 -134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0 --43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0 -144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0 --33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0 -148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0 --24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0 -158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0 --19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0 -168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0 --9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0 -172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0 -4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0 -14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0 -19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0 --153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0 -28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0 --148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0 -38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0 --139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0 -48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0 --124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0 -57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0 --115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0 -72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0 --105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0 -81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0 --91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0 -96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0 --76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0 -105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0 --67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0 -120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0 --57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0 -129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0 --43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0 -139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0 --33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0 -148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0 --28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0 -158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0 --19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0 -163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0 --9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0 -172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0 -0.00,0.00,1.60,0.00,1.00,0.00,0.00,0 --177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0 -9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0 -14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0 --158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0 -24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0 --153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0 -33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0 --144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0 -43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0 --134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0 -52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0 --124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0 -62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0 --110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0 -72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0 --100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0 -86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0 --86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0 -96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0 --76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0 -110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0 --67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0 -120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0 --52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0 -129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0 --43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0 -139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0 --33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0 -148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0 --24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0 -158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0 --19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0 -168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0 -172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0 -4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0 -14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0 --163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0 -24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0 --153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0 -28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0 --144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0 -38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0 --134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0 -48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0 --124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0 -62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0 --115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0 -72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0 --100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0 -81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0 --91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0 -96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0 --81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0 -105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0 --67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0 -115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0 --57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0 -129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0 --48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0 -139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0 --38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0 -148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0 --28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0 -153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0 --19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0 -163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0 --9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0 -172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0 -0.00,0.00,13.61,0.00,1.00,0.00,0.00,0 --177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0 -9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0 --168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0 -24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0 --148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0 -33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0 --139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0 -43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0 --129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0 -52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0 --120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0 -62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0 --110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0 -76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0 --100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0 -86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0 --86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0 -96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0 --76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0 -105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0 --67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0 -120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0 --57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0 -129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0 --48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0 -139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0 --38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0 -148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0 -158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0 --19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0 -163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0 -172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0 -4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0 -14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0 --163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0 -24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0 --153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0 -33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0 --144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0 -43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0 --134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0 -52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0 --124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0 -62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0 --115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0 -72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0 --100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0 -81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0 --91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0 -96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0 --81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0 -105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0 --67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0 -115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0 --57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0 -124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0 --48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0 -134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0 --38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0 -144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0 --28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0 -153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0 --19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0 -163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0 --14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0 -172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0 --4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0 -0.00,0.00,3.20,0.00,1.00,0.00,0.00,0 --177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0 -9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0 -19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0 -24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0 --148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0 -33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0 --139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0 -43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0 --129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0 -52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0 --120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0 -67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0 --110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0 -76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0 --100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0 -86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0 --86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0 -96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0 --76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0 -105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0 --67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0 -115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0 --57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0 -129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0 --48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0 -139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0 --38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0 -148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0 -153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0 --19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0 -163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0 -172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0 -4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0 -14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0 -24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0 --153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0 -33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0 --144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0 -43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0 --134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0 -52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0 --124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0 -62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0 --110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0 -72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0 --100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0 -81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0 --91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0 -96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0 --81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0 -105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0 --72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0 -115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0 --57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0 -124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0 --48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0 -134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0 --38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0 -144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0 --28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0 -153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0 --24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0 -163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0 --14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0 -172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -0.00,0.00,12.01,0.00,1.00,0.00,0.00,0 --177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0 -9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0 --158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0 -28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0 --148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0 -38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0 --139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0 -48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0 --129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0 -57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0 --120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0 -67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0 --110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0 -76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0 --100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0 -86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0 --86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0 -96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0 --76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0 -105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0 --67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0 -115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0 --57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0 -124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0 --48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0 -134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0 --38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0 -144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0 --28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0 -153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0 --19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0 -163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0 -172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0 -4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0 -14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0 -24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0 --148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0 -33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0 --139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0 -43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0 --129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0 -52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0 --120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0 -62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0 --110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0 -72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0 --100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0 -81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0 --91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0 -96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0 --81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0 -105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0 --72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0 -115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0 --62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0 -124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0 --52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0 -134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0 --43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0 -144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0 --33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0 -153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0 --24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0 -163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0 -172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0 -0.00,0.00,4.81,0.00,1.00,0.00,0.00,0 --177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0 -9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0 -19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0 -28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0 --148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0 -38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0 --139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0 -48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0 --129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0 -57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0 --120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0 -67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0 --110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0 -76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0 --100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0 -86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0 --86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0 -96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0 --76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0 -105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0 --67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0 -115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0 --57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0 -124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0 --48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0 -134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0 --38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0 -144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0 --28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0 -153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0 --19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0 -163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0 --9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0 -172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0 -4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0 -14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0 -24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0 --148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0 -33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0 --139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0 -43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0 --129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0 -52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0 --120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0 -62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0 --110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0 -72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0 --100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0 -81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0 --91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0 -96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0 --81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0 -105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0 --72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0 -115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0 --62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0 -124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0 --52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0 -134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0 --43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0 -144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0 --33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0 -153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0 --24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0 -163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0 -172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -0.00,0.00,10.40,0.00,1.00,0.00,0.00,0 --177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0 -9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0 -19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0 -28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0 --148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0 -38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0 --139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0 -48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0 --129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0 -57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0 --120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0 -67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0 --110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0 -76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0 --100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0 -86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0 --86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0 -96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0 --76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0 -105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0 --67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0 -115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0 --57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0 -124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0 --48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0 -134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0 --38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0 -144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0 --28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0 -153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0 -163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0 --9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0 -172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0 -4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0 -14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0 -24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0 -33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0 --139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0 -43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0 --129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0 -52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0 --120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0 -62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0 --110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0 -72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0 --100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0 -81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0 --91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0 -96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0 --81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0 -105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0 --72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0 -115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0 --62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0 -124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0 --52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0 -134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0 --43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0 -144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0 --33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0 -153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0 --24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0 -163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0 -172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,6.41,0.00,1.00,0.00,0.00,0 --177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0 -9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0 -19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0 --158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0 -28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0 --148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0 -38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0 --139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0 -48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0 --129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0 -57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0 --120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0 -67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0 --110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0 -76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0 --100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0 -86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0 --86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0 -96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0 --76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0 -105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0 --67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0 -115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0 --57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0 -124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0 --48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0 -134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0 --38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0 -144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0 --28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0 -153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0 -163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0 -172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0 -4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0 -14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0 --158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0 -24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0 -33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0 --139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0 -43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0 --129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0 -52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0 --120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0 -62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0 --110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0 -72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0 --100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0 -81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0 --91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0 -96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0 --81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0 -105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0 --72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0 -115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0 --62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0 -124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0 --52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0 -134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0 --43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0 -144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0 --33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0 -153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0 --24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0 -163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0 --14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0 -172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.80,0.00,1.00,0.00,0.00,0 --177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0 -9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0 -19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0 --158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0 -28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0 --148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0 -38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0 --139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0 -48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0 --129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0 -57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0 --120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0 -67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0 --110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0 -76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0 --100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0 -86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0 --86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0 -96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0 --76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0 -105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0 --67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0 -115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0 --57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0 -124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0 --48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0 -134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0 --38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0 -144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0 --28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0 -153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0 --19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0 -163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0 -172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0 --0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0 -4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0 --168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0 -14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0 --158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0 -24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0 --148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0 -33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0 --139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0 -43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0 --129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0 -52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0 --120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0 -62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0 --110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0 -72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0 --100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0 -81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0 --91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0 -96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0 --81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0 -105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0 --72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0 -115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0 --62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0 -124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0 --52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0 -134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0 --43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0 -144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0 --33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0 -153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0 --24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0 -163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0 --14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0 -172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.01,0.00,1.00,0.00,0.00,0 --177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0 --168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0 -19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0 --158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0 -28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0 --148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0 -38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0 --139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0 -48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0 --129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0 -57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0 --120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0 -67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0 --110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0 -76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0 --100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0 -86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0 --86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0 -96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0 --76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0 -105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0 --67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0 -115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0 --57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0 -124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0 --48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0 -134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0 --38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0 -144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0 --28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0 -153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0 --19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0 -163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0 --9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0 -172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0 --0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0 --168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0 -14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0 --158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0 -24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0 --148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0 -33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0 --139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0 -43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0 --129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0 -52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0 --120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0 -62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0 --110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0 -72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0 --100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0 -81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0 --91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0 -96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0 --81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0 -105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0 --72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0 -115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0 --62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0 -124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0 --52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0 -134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0 --43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0 -144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0 --33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0 -153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0 --24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0 -163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0 --14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0 --4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0 -0.00,0.00,7.20,0.00,1.00,0.00,0.00,0 --177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0 --168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0 -19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0 --158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0 --148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0 -38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0 --139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0 -48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0 --129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0 -57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0 --120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0 -67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0 --110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0 -76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0 --100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0 -86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0 --86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0 -96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0 --76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0 -105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0 --67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0 -115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0 --57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0 -124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0 --48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0 -134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0 --38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0 -144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0 --28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0 --19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0 -163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0 --9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0 --0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0 --168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0 -14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0 --158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0 --148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0 -33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0 --139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0 -43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0 --129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0 -52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0 --120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0 -62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0 --110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0 -72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0 --100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0 -81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0 --91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0 -96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0 --81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0 -105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0 --72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0 -115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0 --62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0 -124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0 --52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0 -134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0 --43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0 -144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0 --33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0 -153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0 --24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0 --14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0 --4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0 -0.00,0.00,9.61,0.00,1.00,0.00,0.00,0 --177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0 --168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0 --158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0 --148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0 --139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0 -48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0 --129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0 -57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0 --120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0 -67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0 --110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0 -76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0 --100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0 -86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0 --86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0 -96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0 --76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0 -105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0 --67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0 -115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0 --57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0 -124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0 --48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0 -134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0 --38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0 --28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0 --19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0 -163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0 --9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0 --0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0 --168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0 --158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0 --148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0 -33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0 --139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0 -43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0 --129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0 -52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0 --120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0 -62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0 --110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0 -72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0 --100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0 -81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0 --91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0 -96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0 --81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0 -105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0 --72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0 -115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0 --62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0 -124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0 --52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0 -134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0 --43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0 -144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0 --33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0 -153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0 --24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0 --14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0 -172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0 --4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0 -0.00,0.00,5.60,0.00,1.00,0.00,0.00,0 --177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0 --168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0 --158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0 -28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0 --148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0 --139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0 -48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0 --129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0 -57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0 --120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0 -67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0 --110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0 -76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0 --100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0 -86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0 --86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0 -96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0 --76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0 -105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0 --67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0 -115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0 --57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0 -124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0 --48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0 -134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0 --38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0 --28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0 -153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0 --19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0 --9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0 --0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0 --168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0 --158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0 --148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0 -33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0 --139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0 -43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0 --129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0 -52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0 --120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0 -62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0 --110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0 -72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0 --100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0 -81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0 --91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0 -96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0 --81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0 -105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0 --72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0 -115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0 --62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0 -124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0 --52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0 -134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0 --43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0 -144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0 --33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0 -153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0 --24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0 --14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0 --4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0 -0.00,0.00,11.21,0.00,1.00,0.00,0.00,0 --177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0 --168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0 --158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0 -28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0 --148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0 -38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0 --139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0 -48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0 --129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0 -57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0 --120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0 -67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0 --110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0 -76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0 --100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0 -86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0 --86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0 -96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0 --76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0 -105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0 --67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0 -115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0 --57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0 -124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0 --48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0 -134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0 --38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0 -144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0 --28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0 -153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0 --19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0 --9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0 --0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0 --168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0 --158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0 --148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0 --139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0 -43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0 --129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0 -52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0 --120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0 -62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0 --110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0 -72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0 --100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0 -81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0 --91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0 -96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0 --81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0 -105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0 --72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0 -115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0 --62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0 -124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0 --52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0 -134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0 --43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0 --33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0 -153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0 --24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0 -163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0 --14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0 --4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,3.99,0.00,1.00,0.00,0.00,0 --177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0 --168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0 -19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0 --158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0 --148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0 -33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0 --139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0 -43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0 --129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0 -52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0 --120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0 -62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0 --110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0 -76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0 --100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0 -86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0 --86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0 -96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0 --76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0 -105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0 --67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0 -120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0 --57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0 --48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0 -139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0 --38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0 -148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0 --28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0 -158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0 --19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0 -163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0 --9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0 --0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0 --168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0 --158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0 --153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0 --144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0 -43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0 --134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0 --124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0 -62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0 --110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0 -72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0 --100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0 -81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0 --91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0 -96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0 --81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0 -105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0 --72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0 -115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0 --57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0 -124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0 --48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0 -134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0 --38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0 --28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0 --24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0 --14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0 --4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,12.82,0.00,1.00,0.00,0.00,0 --177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0 --168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0 --158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0 --148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0 -33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0 --139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0 --129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0 --120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0 -62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0 --110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0 -76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0 --100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0 -86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0 --86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0 -96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0 --76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0 -110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0 --67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0 -120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0 --57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0 --48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0 --38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0 --28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0 --19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0 --9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0 --0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0 --168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0 --163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0 --153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0 -33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0 --144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0 -43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0 --134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0 --124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0 -62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0 --115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0 -72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0 --100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0 -81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0 --91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0 -96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0 --81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0 -105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0 --67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0 -115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0 --57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0 -124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0 --48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0 -134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0 --38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0 -144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0 --28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0 --19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0 --14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0 --4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,2.39,0.00,1.00,0.00,0.00,0 --177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0 --168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0 --158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0 --153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0 -33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0 --144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0 --134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0 --124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0 -62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0 --110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0 -72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0 --100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0 -86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0 --86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0 -96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0 --76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0 -110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0 --67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0 -120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0 --52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0 -129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0 --43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0 --33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0 --24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0 --19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0 --9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0 --0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0 --168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0 --163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0 --153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0 -28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0 --144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0 -38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0 --134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0 -48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0 --124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0 -57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0 --115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0 -72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0 --105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0 -81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0 --91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0 -96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0 --81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0 -105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0 --67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0 -120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0 --57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0 -129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0 --48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0 -139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0 --38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0 --28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0 -158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0 --19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0 --9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0 --4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0 -0.00,0.00,14.42,0.00,1.00,0.00,0.00,0 --177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0 --168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0 --163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0 -24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0 --153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0 -28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0 --144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0 -38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0 --134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0 -48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0 --124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0 -62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0 --115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0 -72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0 --100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0 -86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0 --86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0 -96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0 --76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0 -110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0 --62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0 -120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0 --52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0 -134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0 --43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0 --33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0 --24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0 -158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0 --14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0 --9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0 --0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0 --172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0 --163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0 --153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0 --148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0 -38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0 --139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0 -48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0 --129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0 --115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0 -67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0 --105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0 -81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0 --91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0 -96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0 --76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0 -105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0 --67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0 -120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0 --52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0 -129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0 --43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0 -139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0 --33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0 --28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0 --19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0 -163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0 --9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0 --4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0 -0.00,0.00,0.79,0.00,1.00,0.00,0.00,0 --177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0 -4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0 --168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0 --163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0 -19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0 --153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0 -28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0 --148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0 -38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0 --139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0 -48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0 --124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0 -57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0 --115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0 -72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0 --100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0 -86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0 --86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0 -100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0 --76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0 -110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0 --62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0 -124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0 --48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0 -134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0 --38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0 --28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0 --24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0 -163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0 --14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0 -168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0 --9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0 --0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0 --177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0 --172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0 -9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0 --163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0 --158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0 --148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0 -33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0 --139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0 -43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0 --129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0 --120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0 -67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0 --105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0 -81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0 --91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0 -96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0 --76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0 -110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0 --67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0 -120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0 --52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0 -134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0 --43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0 -144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0 --33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0 -153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0 --24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0 --19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0 -168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0 --9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0 --4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0 diff --git a/scripts/testv/stvOMASA_4ISM_2MASA1TC32c_ISM4.csv b/scripts/testv/stvOMASA_4ISM_2MASA1TC32c_ISM4.csv deleted file mode 100644 index 8a14c3413ddd2dd47415bf6de3e19631f65f8f6c..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_2MASA1TC32c_ISM4.csv +++ /dev/null @@ -1,1500 +0,0 @@ --0.00,0.00,0.00,0.00,1.00,0.00,4.80,0 --0.00,4.80,0.06,0.00,1.00,4.80,9.60,0 --0.00,9.60,0.13,0.00,1.00,9.60,14.40,0 --0.00,14.40,0.19,0.00,1.00,14.40,19.20,0 --0.00,19.20,0.26,0.00,1.00,19.20,24.00,0 --0.00,24.00,0.32,0.00,1.00,24.00,28.80,0 --0.00,28.80,0.39,0.00,1.00,28.80,33.60,0 --0.00,33.60,0.45,0.00,1.00,33.60,38.40,0 --0.00,38.40,0.51,0.00,1.00,38.40,43.20,0 --0.00,43.20,0.58,0.00,1.00,43.20,48.00,0 --0.00,48.00,0.64,0.00,1.00,48.00,52.80,0 --0.00,52.80,0.71,0.00,1.00,52.80,57.60,0 --0.00,57.60,0.77,0.00,1.00,57.60,62.40,0 --0.00,62.40,0.84,0.00,1.00,62.40,67.20,0 --0.00,67.20,0.90,0.00,1.00,67.20,72.00,0 --0.00,72.00,0.96,0.00,1.00,72.00,76.80,0 --0.00,76.80,1.03,0.00,1.00,76.80,81.60,0 --0.00,81.60,1.09,0.00,1.00,81.60,86.40,0 --0.00,86.40,1.16,0.00,1.00,86.40,86.40,0 --177.60,89.20,1.22,0.00,1.00,91.20,81.60,0 --177.60,86.40,1.29,0.00,1.00,96.00,76.80,0 --177.60,81.60,1.35,0.00,1.00,100.80,72.00,0 --177.60,76.80,1.41,0.00,1.00,105.60,67.20,0 --177.60,72.00,1.48,0.00,1.00,110.40,62.40,0 --177.60,67.20,1.54,0.00,1.00,115.20,57.60,0 -177.60,62.40,1.61,0.00,1.00,120.00,52.80,0 -177.60,57.60,1.67,0.00,1.00,124.80,48.00,0 -177.60,52.80,1.73,0.00,1.00,129.60,43.20,0 -177.60,48.00,1.80,0.00,1.00,134.40,38.40,0 -177.60,43.20,1.86,0.00,1.00,139.20,33.60,0 -177.60,38.40,1.93,0.00,1.00,144.00,28.80,0 -177.60,33.60,1.99,0.00,1.00,148.80,24.00,0 -177.60,28.80,2.06,0.00,1.00,153.60,19.20,0 -177.60,24.00,2.12,0.00,1.00,158.40,14.40,0 -177.60,19.20,2.18,0.00,1.00,163.20,9.60,0 -177.60,14.40,2.25,0.00,1.00,168.00,4.80,0 -177.60,9.60,2.31,0.00,1.00,172.80,0.00,0 -177.60,4.80,2.38,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,2.44,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,2.51,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,2.57,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,2.63,0.00,1.00,-163.20,-19.20,0 --177.60,-19.20,2.70,0.00,1.00,-158.40,-24.00,0 --177.60,-24.00,2.76,0.00,1.00,-153.60,-28.80,0 --177.60,-28.80,2.83,0.00,1.00,-148.80,-33.60,0 --177.60,-33.60,2.89,0.00,1.00,-144.00,-38.40,0 --177.60,-38.40,2.96,0.00,1.00,-139.20,-43.20,0 --177.60,-48.00,3.02,0.00,1.00,-134.40,-48.00,0 --177.60,-48.00,3.08,0.00,1.00,-129.60,-52.80,0 --177.60,-52.80,3.15,0.00,1.00,-124.80,-57.60,0 --177.60,-57.60,3.21,0.00,1.00,-120.00,-62.40,0 -177.60,-62.40,3.28,0.00,1.00,-115.20,-67.20,0 -177.60,-67.20,3.34,0.00,1.00,-110.40,-72.00,0 -177.60,-76.80,3.41,0.00,1.00,-105.60,-76.80,0 -177.60,-76.80,3.47,0.00,1.00,-100.80,-81.60,0 -177.60,-86.40,3.53,0.00,1.00,-96.00,-86.40,0 -177.60,-89.20,3.60,0.00,1.00,-91.20,-86.40,0 -0.00,-86.40,3.66,0.00,1.00,-86.40,-81.60,0 -0.00,-81.60,3.73,0.00,1.00,-81.60,-76.80,0 -0.00,-76.80,3.79,0.00,1.00,-76.80,-72.00,0 -0.00,-72.00,3.86,0.00,1.00,-72.00,-67.20,0 -0.00,-67.20,3.92,0.00,1.00,-67.20,-62.40,0 -0.00,-62.40,3.98,0.00,1.00,-62.40,-57.60,0 -0.00,-57.60,4.05,0.00,1.00,-57.60,-52.80,0 -0.00,-52.80,4.11,0.00,1.00,-52.80,-48.00,0 -0.00,-48.00,4.18,0.00,1.00,-48.00,-43.20,0 -0.00,-43.20,4.24,0.00,1.00,-43.20,-38.40,0 -0.00,-38.40,4.31,0.00,1.00,-38.40,-33.60,0 -0.00,-33.60,4.37,0.00,1.00,-33.60,-28.80,0 -0.00,-28.80,4.43,0.00,1.00,-28.80,-24.00,0 -0.00,-24.00,4.50,0.00,1.00,-24.00,-19.20,0 -0.00,-19.20,4.56,0.00,1.00,-19.20,-14.40,0 -0.00,-14.40,4.63,0.00,1.00,-14.40,-9.60,0 -0.00,-9.60,4.69,0.00,1.00,-9.60,-4.80,0 -0.00,-4.80,4.76,0.00,1.00,-4.80,0.00,0 -0.00,0.00,4.82,0.00,1.00,0.00,4.80,0 -0.00,4.80,4.88,0.00,1.00,4.80,9.60,0 -0.00,9.60,4.95,0.00,1.00,9.60,14.40,0 -0.00,14.40,5.01,0.00,1.00,14.40,19.20,0 -0.00,19.20,5.08,0.00,1.00,19.20,24.00,0 -0.00,24.00,5.14,0.00,1.00,24.00,28.80,0 -4.80,28.80,5.20,0.00,1.00,28.80,33.60,0 -4.80,33.60,5.27,0.00,1.00,33.60,38.40,0 -4.80,38.40,5.33,0.00,1.00,38.40,43.20,0 -4.80,43.20,5.40,0.00,1.00,43.20,48.00,0 -4.80,48.00,5.46,0.00,1.00,48.00,52.80,0 -4.80,52.80,5.53,0.00,1.00,52.80,57.60,0 -9.60,57.60,5.59,0.00,1.00,57.60,62.40,0 -9.60,62.40,5.65,0.00,1.00,62.40,67.20,0 -9.60,67.20,5.72,0.00,1.00,67.20,72.00,0 -14.40,72.00,5.78,0.00,1.00,72.00,76.80,0 -19.20,76.80,5.85,0.00,1.00,76.80,81.60,0 -28.80,81.60,5.91,0.00,1.00,81.60,86.40,0 -52.80,86.40,5.98,0.00,1.00,86.40,86.40,0 -105.60,86.40,6.04,0.00,1.00,91.20,81.60,0 -139.20,81.60,6.10,0.00,1.00,96.00,76.80,0 -158.40,76.80,6.17,0.00,1.00,100.80,72.00,0 -163.20,72.00,6.23,0.00,1.00,105.60,67.20,0 -168.00,67.20,6.30,0.00,1.00,110.40,62.40,0 -168.00,62.40,6.36,0.00,1.00,115.20,57.60,0 -172.80,57.60,6.43,0.00,1.00,120.00,52.80,0 -172.80,52.80,6.49,0.00,1.00,124.80,48.00,0 -172.80,48.00,6.55,0.00,1.00,129.60,43.20,0 -172.80,43.20,6.62,0.00,1.00,134.40,38.40,0 -177.60,38.40,6.68,0.00,1.00,139.20,33.60,0 -177.60,33.60,6.75,0.00,1.00,144.00,28.80,0 -177.60,28.80,6.81,0.00,1.00,148.80,24.00,0 -177.60,24.00,6.88,0.00,1.00,153.60,19.20,0 -177.60,19.20,6.94,0.00,1.00,158.40,14.40,0 -177.60,14.40,7.00,0.00,1.00,163.20,9.60,0 -177.60,9.60,7.07,0.00,1.00,168.00,4.80,0 -177.60,4.80,7.13,0.00,1.00,172.80,0.00,0 -177.60,0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,7.26,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,7.33,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,7.39,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,7.45,0.00,1.00,-163.20,-19.20,0 --177.60,-19.20,7.52,0.00,1.00,-158.40,-24.00,0 --177.60,-24.00,7.58,0.00,1.00,-153.60,-28.80,0 --177.60,-28.80,7.65,0.00,1.00,-148.80,-33.60,0 --177.60,-33.60,7.71,0.00,1.00,-144.00,-38.40,0 --177.60,-38.40,7.78,0.00,1.00,-139.20,-43.20,0 --172.80,-43.20,7.84,0.00,1.00,-134.40,-48.00,0 --172.80,-48.00,7.90,0.00,1.00,-129.60,-52.80,0 --172.80,-52.80,7.97,0.00,1.00,-124.80,-57.60,0 --172.80,-57.60,8.03,0.00,1.00,-120.00,-62.40,0 --168.00,-62.40,8.10,0.00,1.00,-115.20,-67.20,0 --168.00,-67.20,8.16,0.00,1.00,-110.40,-72.00,0 --163.20,-72.00,8.22,0.00,1.00,-105.60,-76.80,0 --158.40,-76.80,8.29,0.00,1.00,-100.80,-81.60,0 --139.20,-81.60,8.35,0.00,1.00,-96.00,-86.40,0 --105.60,-86.40,8.42,0.00,1.00,-91.20,-86.40,0 --52.80,-86.40,8.48,0.00,1.00,-86.40,-81.60,0 --28.80,-81.60,8.55,0.00,1.00,-81.60,-76.80,0 --19.20,-76.80,8.61,0.00,1.00,-76.80,-72.00,0 --14.40,-72.00,8.67,0.00,1.00,-72.00,-67.20,0 --9.60,-67.20,8.74,0.00,1.00,-67.20,-62.40,0 --9.60,-62.40,8.80,0.00,1.00,-62.40,-57.60,0 --9.60,-57.60,8.87,0.00,1.00,-57.60,-52.80,0 --4.80,-52.80,8.93,0.00,1.00,-52.80,-48.00,0 --4.80,-48.00,9.00,0.00,1.00,-48.00,-43.20,0 --4.80,-43.20,9.06,0.00,1.00,-43.20,-38.40,0 --4.80,-38.40,9.12,0.00,1.00,-38.40,-33.60,0 --4.80,-33.60,9.19,0.00,1.00,-33.60,-28.80,0 --4.80,-28.80,9.25,0.00,1.00,-28.80,-24.00,0 --0.00,-24.00,9.32,0.00,1.00,-24.00,-19.20,0 --0.00,-19.20,9.38,0.00,1.00,-19.20,-14.40,0 --0.00,-14.40,9.45,0.00,1.00,-14.40,-9.60,0 --0.00,-9.60,9.51,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,9.57,0.00,1.00,-4.80,0.00,0 -0.00,0.00,9.64,0.00,1.00,0.00,4.80,0 -0.00,4.80,9.70,0.00,1.00,4.80,9.60,0 -0.00,9.60,9.77,0.00,1.00,9.60,14.40,0 -4.80,14.40,9.83,0.00,1.00,14.40,19.20,0 -4.80,19.20,9.90,0.00,1.00,19.20,24.00,0 -4.80,24.00,9.96,0.00,1.00,24.00,28.80,0 -4.80,28.80,10.02,0.00,1.00,28.80,33.60,0 -4.80,33.60,10.09,0.00,1.00,33.60,38.40,0 -9.60,38.40,10.15,0.00,1.00,38.40,43.20,0 -9.60,43.20,10.22,0.00,1.00,43.20,48.00,0 -9.60,48.00,10.28,0.00,1.00,48.00,52.80,0 -14.40,52.80,10.35,0.00,1.00,52.80,57.60,0 -14.40,57.60,10.41,0.00,1.00,57.60,62.40,0 -19.20,62.40,10.47,0.00,1.00,62.40,67.20,0 -24.00,67.20,10.54,0.00,1.00,67.20,72.00,0 -28.80,72.00,10.60,0.00,1.00,72.00,72.00,0 -33.60,72.00,10.67,0.00,1.00,76.80,76.80,0 -48.00,76.80,10.73,0.00,1.00,81.60,81.60,0 -67.20,81.60,10.80,0.00,1.00,86.40,81.60,0 -96.00,81.60,10.86,0.00,1.00,91.20,81.60,0 -120.00,76.80,10.92,0.00,1.00,96.00,76.80,0 -139.20,76.80,10.99,0.00,1.00,100.80,72.00,0 -148.80,72.00,11.05,0.00,1.00,105.60,67.20,0 -153.60,67.20,11.12,0.00,1.00,110.40,62.40,0 -158.40,62.40,11.18,0.00,1.00,115.20,57.60,0 -163.20,57.60,11.24,0.00,1.00,120.00,52.80,0 -168.00,52.80,11.31,0.00,1.00,124.80,48.00,0 -168.00,48.00,11.37,0.00,1.00,129.60,43.20,0 -168.00,43.20,11.44,0.00,1.00,134.40,38.40,0 -172.80,38.40,11.50,0.00,1.00,139.20,33.60,0 -172.80,33.60,11.57,0.00,1.00,144.00,28.80,0 -172.80,28.80,11.63,0.00,1.00,148.80,24.00,0 -177.60,24.00,11.69,0.00,1.00,153.60,19.20,0 -177.60,19.20,11.76,0.00,1.00,158.40,14.40,0 -177.60,14.40,11.82,0.00,1.00,163.20,9.60,0 -177.60,9.60,11.89,0.00,1.00,168.00,4.80,0 -177.60,4.80,11.95,0.00,1.00,172.80,0.00,0 -177.60,0.00,12.02,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,12.08,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,12.14,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,12.21,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,12.27,0.00,1.00,-163.20,-19.20,0 --177.60,-19.20,12.34,0.00,1.00,-158.40,-24.00,0 --177.60,-24.00,12.40,0.00,1.00,-153.60,-28.80,0 --172.80,-28.80,12.47,0.00,1.00,-148.80,-33.60,0 --172.80,-33.60,12.53,0.00,1.00,-144.00,-38.40,0 --172.80,-38.40,12.59,0.00,1.00,-139.20,-43.20,0 --168.00,-43.20,12.66,0.00,1.00,-134.40,-48.00,0 --168.00,-48.00,12.72,0.00,1.00,-129.60,-52.80,0 --168.00,-52.80,12.79,0.00,1.00,-124.80,-57.60,0 --163.20,-57.60,12.85,0.00,1.00,-120.00,-62.40,0 --158.40,-62.40,12.92,0.00,1.00,-115.20,-67.20,0 --153.60,-67.20,12.98,0.00,1.00,-110.40,-72.00,0 --148.80,-72.00,13.04,0.00,1.00,-105.60,-76.80,0 --139.20,-76.80,13.11,0.00,1.00,-100.80,-81.60,0 --120.00,-76.80,13.17,0.00,1.00,-96.00,-81.60,0 --96.00,-81.60,13.24,0.00,1.00,-91.20,-81.60,0 --67.20,-81.60,13.30,0.00,1.00,-86.40,-76.80,0 --48.00,-76.80,13.37,0.00,1.00,-81.60,-72.00,0 --33.60,-72.00,13.43,0.00,1.00,-76.80,-72.00,0 --28.80,-72.00,13.49,0.00,1.00,-72.00,-67.20,0 --24.00,-67.20,13.56,0.00,1.00,-67.20,-62.40,0 --19.20,-62.40,13.62,0.00,1.00,-62.40,-57.60,0 --14.40,-57.60,13.69,0.00,1.00,-57.60,-52.80,0 --14.40,-52.80,13.75,0.00,1.00,-52.80,-48.00,0 --9.60,-48.00,13.82,0.00,1.00,-48.00,-43.20,0 --9.60,-43.20,13.88,0.00,1.00,-43.20,-38.40,0 --9.60,-38.40,13.94,0.00,1.00,-38.40,-33.60,0 --4.80,-33.60,14.01,0.00,1.00,-33.60,-28.80,0 --4.80,-28.80,14.07,0.00,1.00,-28.80,-24.00,0 --4.80,-24.00,14.14,0.00,1.00,-24.00,-19.20,0 --4.80,-19.20,14.20,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,14.27,0.00,1.00,-14.40,-9.60,0 --0.00,-9.60,14.33,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,14.39,0.00,1.00,-4.80,0.00,0 -0.00,0.00,14.46,0.00,1.00,0.00,4.80,0 -0.00,4.80,14.52,0.00,1.00,4.80,9.60,0 -4.80,9.60,14.59,0.00,1.00,9.60,14.40,0 -4.80,14.40,14.65,0.00,1.00,14.40,19.20,0 -4.80,19.20,14.71,0.00,1.00,19.20,24.00,0 -4.80,24.00,14.78,0.00,1.00,24.00,28.80,0 -9.60,28.80,14.84,0.00,1.00,28.80,33.60,0 -9.60,33.60,14.91,0.00,1.00,33.60,38.40,0 -9.60,38.40,14.97,0.00,1.00,38.40,43.20,0 -14.40,43.20,15.04,0.00,1.00,43.20,48.00,0 -14.40,48.00,15.10,0.00,1.00,48.00,52.80,0 -19.20,52.80,15.16,0.00,1.00,52.80,57.60,0 -19.20,52.80,15.23,0.00,1.00,57.60,57.60,0 -24.00,57.60,15.29,0.00,1.00,62.40,62.40,0 -28.80,62.40,15.36,0.00,1.00,67.20,67.20,0 -38.40,67.20,15.42,0.00,1.00,72.00,72.00,0 -48.00,72.00,15.49,0.00,1.00,76.80,72.00,0 -57.60,72.00,15.55,0.00,1.00,81.60,76.80,0 -76.80,76.80,15.61,0.00,1.00,86.40,76.80,0 -96.00,76.80,15.68,0.00,1.00,91.20,76.80,0 -115.20,76.80,15.74,0.00,1.00,96.00,72.00,0 -129.60,72.00,15.81,0.00,1.00,100.80,72.00,0 -139.20,67.20,15.87,0.00,1.00,105.60,67.20,0 -144.00,67.20,15.94,0.00,1.00,110.40,62.40,0 -153.60,62.40,16.00,0.00,1.00,115.20,57.60,0 -158.40,57.60,16.00,0.00,1.00,120.00,52.80,0 -158.40,52.80,15.94,0.00,1.00,124.80,48.00,0 -163.20,48.00,15.87,0.00,1.00,129.60,43.20,0 -168.00,43.20,15.81,0.00,1.00,134.40,38.40,0 -168.00,38.40,15.74,0.00,1.00,139.20,33.60,0 -168.00,33.60,15.68,0.00,1.00,144.00,28.80,0 -172.80,28.80,15.61,0.00,1.00,148.80,24.00,0 -172.80,24.00,15.55,0.00,1.00,153.60,19.20,0 -172.80,19.20,15.49,0.00,1.00,158.40,14.40,0 -177.60,14.40,15.42,0.00,1.00,163.20,9.60,0 -177.60,9.60,15.36,0.00,1.00,168.00,4.80,0 -177.60,4.80,15.29,0.00,1.00,172.80,0.00,0 -177.60,0.00,15.23,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,15.16,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,15.10,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,15.04,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,14.97,0.00,1.00,-163.20,-19.20,0 --172.80,-19.20,14.91,0.00,1.00,-158.40,-24.00,0 --172.80,-24.00,14.84,0.00,1.00,-153.60,-28.80,0 --172.80,-28.80,14.78,0.00,1.00,-148.80,-33.60,0 --168.00,-33.60,14.71,0.00,1.00,-144.00,-38.40,0 --168.00,-38.40,14.65,0.00,1.00,-139.20,-43.20,0 --168.00,-43.20,14.59,0.00,1.00,-134.40,-48.00,0 --163.20,-48.00,14.52,0.00,1.00,-129.60,-52.80,0 --158.40,-52.80,14.46,0.00,1.00,-124.80,-57.60,0 --158.40,-57.60,14.39,0.00,1.00,-120.00,-62.40,0 --153.60,-62.40,14.33,0.00,1.00,-115.20,-67.20,0 --144.00,-67.20,14.27,0.00,1.00,-110.40,-72.00,0 --139.20,-67.20,14.20,0.00,1.00,-105.60,-72.00,0 --129.60,-72.00,14.14,0.00,1.00,-100.80,-76.80,0 --115.20,-76.80,14.07,0.00,1.00,-96.00,-76.80,0 --96.00,-76.80,14.01,0.00,1.00,-91.20,-76.80,0 --76.80,-76.80,13.94,0.00,1.00,-86.40,-72.00,0 --57.60,-72.00,13.88,0.00,1.00,-81.60,-72.00,0 --48.00,-72.00,13.82,0.00,1.00,-76.80,-67.20,0 --38.40,-67.20,13.75,0.00,1.00,-72.00,-62.40,0 --28.80,-62.40,13.69,0.00,1.00,-67.20,-57.60,0 --24.00,-57.60,13.62,0.00,1.00,-62.40,-57.60,0 --19.20,-52.80,13.56,0.00,1.00,-57.60,-52.80,0 --19.20,-52.80,13.49,0.00,1.00,-52.80,-48.00,0 --14.40,-48.00,13.43,0.00,1.00,-48.00,-43.20,0 --14.40,-43.20,13.37,0.00,1.00,-43.20,-38.40,0 --9.60,-38.40,13.30,0.00,1.00,-38.40,-33.60,0 --9.60,-33.60,13.24,0.00,1.00,-33.60,-28.80,0 --9.60,-28.80,13.17,0.00,1.00,-28.80,-24.00,0 --4.80,-24.00,13.11,0.00,1.00,-24.00,-19.20,0 --4.80,-19.20,13.04,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,12.98,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,12.92,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,12.85,0.00,1.00,-4.80,0.00,0 -0.00,0.00,12.79,0.00,1.00,0.00,4.80,0 -0.00,4.80,12.72,0.00,1.00,4.80,9.60,0 -4.80,9.60,12.66,0.00,1.00,9.60,14.40,0 -4.80,14.40,12.59,0.00,1.00,14.40,19.20,0 -4.80,19.20,12.53,0.00,1.00,19.20,24.00,0 -9.60,24.00,12.47,0.00,1.00,24.00,28.80,0 -9.60,28.80,12.40,0.00,1.00,28.80,33.60,0 -14.40,33.60,12.34,0.00,1.00,33.60,38.40,0 -14.40,33.60,12.27,0.00,1.00,38.40,38.40,0 -19.20,38.40,12.21,0.00,1.00,43.20,43.20,0 -19.20,43.20,12.14,0.00,1.00,48.00,48.00,0 -24.00,48.00,12.08,0.00,1.00,52.80,52.80,0 -28.80,52.80,12.02,0.00,1.00,57.60,57.60,0 -33.60,57.60,11.95,0.00,1.00,62.40,62.40,0 -38.40,62.40,11.89,0.00,1.00,67.20,62.40,0 -43.20,62.40,11.82,0.00,1.00,72.00,67.20,0 -52.80,67.20,11.76,0.00,1.00,76.80,72.00,0 -67.20,67.20,11.69,0.00,1.00,81.60,72.00,0 -76.80,72.00,11.63,0.00,1.00,86.40,72.00,0 -96.00,72.00,11.57,0.00,1.00,91.20,72.00,0 -105.60,72.00,11.50,0.00,1.00,96.00,67.20,0 -120.00,67.20,11.44,0.00,1.00,100.80,67.20,0 -129.60,67.20,11.37,0.00,1.00,105.60,62.40,0 -139.20,62.40,11.31,0.00,1.00,110.40,57.60,0 -144.00,57.60,11.24,0.00,1.00,115.20,57.60,0 -148.80,52.80,11.18,0.00,1.00,120.00,52.80,0 -153.60,52.80,11.12,0.00,1.00,124.80,48.00,0 -158.40,48.00,11.05,0.00,1.00,129.60,43.20,0 -163.20,43.20,10.99,0.00,1.00,134.40,38.40,0 -163.20,38.40,10.92,0.00,1.00,139.20,33.60,0 -168.00,33.60,10.86,0.00,1.00,144.00,28.80,0 -168.00,28.80,10.80,0.00,1.00,148.80,24.00,0 -172.80,24.00,10.73,0.00,1.00,153.60,19.20,0 -172.80,19.20,10.67,0.00,1.00,158.40,14.40,0 -172.80,14.40,10.60,0.00,1.00,163.20,9.60,0 -177.60,9.60,10.54,0.00,1.00,168.00,4.80,0 -177.60,4.80,10.47,0.00,1.00,172.80,0.00,0 -177.60,0.00,10.41,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.35,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,10.28,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,10.22,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,10.15,0.00,1.00,-163.20,-19.20,0 --172.80,-19.20,10.09,0.00,1.00,-158.40,-24.00,0 --172.80,-24.00,10.02,0.00,1.00,-153.60,-28.80,0 --168.00,-28.80,9.96,0.00,1.00,-148.80,-33.60,0 --168.00,-33.60,9.90,0.00,1.00,-144.00,-38.40,0 --163.20,-38.40,9.83,0.00,1.00,-139.20,-43.20,0 --163.20,-43.20,9.77,0.00,1.00,-134.40,-48.00,0 --158.40,-48.00,9.70,0.00,1.00,-129.60,-52.80,0 --153.60,-52.80,9.64,0.00,1.00,-124.80,-57.60,0 --148.80,-52.80,9.57,0.00,1.00,-120.00,-57.60,0 --144.00,-57.60,9.51,0.00,1.00,-115.20,-62.40,0 --139.20,-62.40,9.45,0.00,1.00,-110.40,-67.20,0 --129.60,-67.20,9.38,0.00,1.00,-105.60,-67.20,0 --120.00,-67.20,9.32,0.00,1.00,-100.80,-72.00,0 --105.60,-72.00,9.25,0.00,1.00,-96.00,-72.00,0 --96.00,-72.00,9.19,0.00,1.00,-91.20,-72.00,0 --76.80,-72.00,9.12,0.00,1.00,-86.40,-72.00,0 --67.20,-67.20,9.06,0.00,1.00,-81.60,-67.20,0 --52.80,-67.20,9.00,0.00,1.00,-76.80,-62.40,0 --43.20,-62.40,8.93,0.00,1.00,-72.00,-62.40,0 --38.40,-62.40,8.87,0.00,1.00,-67.20,-57.60,0 --33.60,-57.60,8.80,0.00,1.00,-62.40,-52.80,0 --28.80,-52.80,8.74,0.00,1.00,-57.60,-48.00,0 --24.00,-48.00,8.67,0.00,1.00,-52.80,-43.20,0 --19.20,-43.20,8.61,0.00,1.00,-48.00,-38.40,0 --19.20,-38.40,8.55,0.00,1.00,-43.20,-38.40,0 --14.40,-33.60,8.48,0.00,1.00,-38.40,-33.60,0 --14.40,-33.60,8.42,0.00,1.00,-33.60,-28.80,0 --9.60,-28.80,8.35,0.00,1.00,-28.80,-24.00,0 --9.60,-24.00,8.29,0.00,1.00,-24.00,-19.20,0 --4.80,-19.20,8.22,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,8.16,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,8.10,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,8.03,0.00,1.00,-4.80,0.00,0 -0.00,0.00,7.97,0.00,1.00,0.00,4.80,0 -0.00,4.80,7.90,0.00,1.00,4.80,9.60,0 -4.80,9.60,7.84,0.00,1.00,9.60,14.40,0 -4.80,14.40,7.78,0.00,1.00,14.40,19.20,0 -9.60,19.20,7.71,0.00,1.00,19.20,24.00,0 -9.60,24.00,7.65,0.00,1.00,24.00,24.00,0 -14.40,24.00,7.58,0.00,1.00,28.80,28.80,0 -14.40,28.80,7.52,0.00,1.00,33.60,33.60,0 -19.20,33.60,7.45,0.00,1.00,33.60,38.40,0 -19.20,38.40,7.39,0.00,1.00,38.40,43.20,0 -24.00,43.20,7.33,0.00,1.00,43.20,48.00,0 -28.80,48.00,7.26,0.00,1.00,48.00,52.80,0 -33.60,52.80,7.20,0.00,1.00,57.60,52.80,0 -38.40,52.80,7.13,0.00,1.00,62.40,57.60,0 -43.20,57.60,7.07,0.00,1.00,67.20,62.40,0 -52.80,62.40,7.00,0.00,1.00,72.00,62.40,0 -62.40,62.40,6.94,0.00,1.00,76.80,67.20,0 -72.00,62.40,6.88,0.00,1.00,81.60,67.20,0 -81.60,67.20,6.81,0.00,1.00,86.40,67.20,0 -91.20,67.20,6.75,0.00,1.00,91.20,67.20,0 -105.60,67.20,6.68,0.00,1.00,96.00,67.20,0 -115.20,62.40,6.62,0.00,1.00,100.80,62.40,0 -124.80,62.40,6.55,0.00,1.00,105.60,57.60,0 -134.40,57.60,6.49,0.00,1.00,110.40,57.60,0 -139.20,57.60,6.43,0.00,1.00,115.20,52.80,0 -144.00,52.80,6.36,0.00,1.00,120.00,48.00,0 -148.80,48.00,6.30,0.00,1.00,129.60,43.20,0 -153.60,43.20,6.23,0.00,1.00,134.40,43.20,0 -158.40,38.40,6.17,0.00,1.00,139.20,38.40,0 -158.40,38.40,6.10,0.00,1.00,144.00,33.60,0 -163.20,33.60,6.04,0.00,1.00,148.80,28.80,0 -168.00,28.80,5.98,0.00,1.00,148.80,24.00,0 -168.00,24.00,5.91,0.00,1.00,153.60,19.20,0 -172.80,19.20,5.85,0.00,1.00,158.40,14.40,0 -172.80,14.40,5.78,0.00,1.00,163.20,9.60,0 -172.80,9.60,5.72,0.00,1.00,168.00,4.80,0 -177.60,4.80,5.65,0.00,1.00,172.80,0.00,0 -177.60,0.00,5.59,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,5.53,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,5.46,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,5.40,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,5.33,0.00,1.00,-163.20,-19.20,0 --172.80,-19.20,5.27,0.00,1.00,-158.40,-24.00,0 --168.00,-24.00,5.20,0.00,1.00,-153.60,-28.80,0 --168.00,-28.80,5.14,0.00,1.00,-148.80,-33.60,0 --163.20,-33.60,5.08,0.00,1.00,-148.80,-38.40,0 --158.40,-38.40,5.01,0.00,1.00,-144.00,-43.20,0 --158.40,-38.40,4.95,0.00,1.00,-139.20,-43.20,0 --153.60,-43.20,4.88,0.00,1.00,-134.40,-48.00,0 --148.80,-48.00,4.82,0.00,1.00,-129.60,-52.80,0 --144.00,-52.80,4.76,0.00,1.00,-120.00,-57.60,0 --139.20,-57.60,4.69,0.00,1.00,-115.20,-57.60,0 --134.40,-57.60,4.63,0.00,1.00,-110.40,-62.40,0 --124.80,-62.40,4.56,0.00,1.00,-105.60,-67.20,0 --115.20,-62.40,4.50,0.00,1.00,-100.80,-67.20,0 --105.60,-67.20,4.43,0.00,1.00,-96.00,-67.20,0 --91.20,-67.20,4.37,0.00,1.00,-91.20,-67.20,0 --81.60,-67.20,4.31,0.00,1.00,-86.40,-67.20,0 --72.00,-62.40,4.24,0.00,1.00,-81.60,-62.40,0 --62.40,-62.40,4.18,0.00,1.00,-76.80,-62.40,0 --52.80,-62.40,4.11,0.00,1.00,-72.00,-57.60,0 --43.20,-57.60,4.05,0.00,1.00,-67.20,-52.80,0 --38.40,-52.80,3.98,0.00,1.00,-62.40,-52.80,0 --33.60,-52.80,3.92,0.00,1.00,-57.60,-48.00,0 --28.80,-48.00,3.86,0.00,1.00,-48.00,-43.20,0 --24.00,-43.20,3.79,0.00,1.00,-43.20,-38.40,0 --19.20,-38.40,3.73,0.00,1.00,-38.40,-33.60,0 --19.20,-33.60,3.66,0.00,1.00,-33.60,-28.80,0 --14.40,-28.80,3.60,0.00,1.00,-33.60,-24.00,0 --14.40,-24.00,3.53,0.00,1.00,-28.80,-24.00,0 --9.60,-24.00,3.47,0.00,1.00,-24.00,-19.20,0 --9.60,-19.20,3.41,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,3.34,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,3.28,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,3.21,0.00,1.00,-4.80,0.00,0 -0.00,0.00,3.15,0.00,1.00,0.00,4.80,0 -0.00,4.80,3.08,0.00,1.00,4.80,9.60,0 -4.80,9.60,3.02,0.00,1.00,9.60,14.40,0 -4.80,14.40,2.96,0.00,1.00,14.40,19.20,0 -9.60,14.40,2.89,0.00,1.00,19.20,19.20,0 -14.40,19.20,2.83,0.00,1.00,19.20,24.00,0 -14.40,24.00,2.76,0.00,1.00,24.00,28.80,0 -19.20,28.80,2.70,0.00,1.00,28.80,33.60,0 -19.20,33.60,2.63,0.00,1.00,33.60,38.40,0 -24.00,38.40,2.57,0.00,1.00,38.40,43.20,0 -28.80,38.40,2.51,0.00,1.00,43.20,43.20,0 -33.60,43.20,2.44,0.00,1.00,48.00,48.00,0 -38.40,48.00,2.38,0.00,1.00,52.80,52.80,0 -43.20,52.80,2.31,0.00,1.00,57.60,52.80,0 -48.00,52.80,2.25,0.00,1.00,62.40,57.60,0 -57.60,57.60,2.18,0.00,1.00,72.00,57.60,0 -62.40,57.60,2.12,0.00,1.00,76.80,62.40,0 -72.00,62.40,2.06,0.00,1.00,81.60,62.40,0 -81.60,62.40,1.99,0.00,1.00,86.40,62.40,0 -91.20,62.40,1.93,0.00,1.00,91.20,62.40,0 -100.80,62.40,1.86,0.00,1.00,96.00,62.40,0 -110.40,57.60,1.80,0.00,1.00,100.80,57.60,0 -120.00,57.60,1.73,0.00,1.00,105.60,57.60,0 -129.60,57.60,1.67,0.00,1.00,115.20,52.80,0 -134.40,52.80,1.61,0.00,1.00,120.00,48.00,0 -139.20,48.00,1.54,0.00,1.00,124.80,48.00,0 -144.00,48.00,1.48,0.00,1.00,129.60,43.20,0 -148.80,43.20,1.41,0.00,1.00,134.40,38.40,0 -153.60,38.40,1.35,0.00,1.00,139.20,33.60,0 -158.40,33.60,1.29,0.00,1.00,144.00,33.60,0 -158.40,28.80,1.22,0.00,1.00,148.80,28.80,0 -163.20,28.80,1.16,0.00,1.00,153.60,24.00,0 -168.00,24.00,1.09,0.00,1.00,158.40,19.20,0 -168.00,19.20,1.03,0.00,1.00,163.20,14.40,0 -172.80,14.40,0.96,0.00,1.00,163.20,9.60,0 -172.80,9.60,0.90,0.00,1.00,168.00,4.80,0 -177.60,4.80,0.84,0.00,1.00,172.80,0.00,0 -177.60,0.00,0.77,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,0.71,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,0.64,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,0.58,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,0.51,0.00,1.00,-163.20,-19.20,0 --168.00,-19.20,0.45,0.00,1.00,-163.20,-24.00,0 --168.00,-24.00,0.39,0.00,1.00,-158.40,-28.80,0 --163.20,-28.80,0.32,0.00,1.00,-153.60,-33.60,0 --158.40,-28.80,0.26,0.00,1.00,-148.80,-33.60,0 --158.40,-33.60,0.19,0.00,1.00,-144.00,-38.40,0 --153.60,-38.40,0.13,0.00,1.00,-139.20,-43.20,0 --148.80,-43.20,0.06,0.00,1.00,-134.40,-48.00,0 --144.00,-48.00,0.00,0.00,1.00,-129.60,-48.00,0 --139.20,-48.00,0.00,0.00,1.00,-124.80,-52.80,0 --134.40,-52.80,0.16,0.00,1.00,-120.00,-57.60,0 --129.60,-57.60,0.32,0.00,1.00,-115.20,-57.60,0 --120.00,-57.60,0.48,0.00,1.00,-105.60,-62.40,0 --110.40,-57.60,0.65,0.00,1.00,-100.80,-62.40,0 --100.80,-62.40,0.81,0.00,1.00,-96.00,-62.40,0 --91.20,-62.40,0.97,0.00,1.00,-91.20,-62.40,0 --81.60,-62.40,1.13,0.00,1.00,-86.40,-62.40,0 --72.00,-62.40,1.29,0.00,1.00,-81.60,-57.60,0 --62.40,-57.60,1.45,0.00,1.00,-76.80,-57.60,0 --57.60,-57.60,1.62,0.00,1.00,-72.00,-52.80,0 --48.00,-52.80,1.78,0.00,1.00,-62.40,-52.80,0 --43.20,-52.80,1.94,0.00,1.00,-57.60,-48.00,0 --38.40,-48.00,2.10,0.00,1.00,-52.80,-43.20,0 --33.60,-43.20,2.26,0.00,1.00,-48.00,-43.20,0 --28.80,-38.40,2.42,0.00,1.00,-43.20,-38.40,0 --24.00,-38.40,2.59,0.00,1.00,-38.40,-33.60,0 --19.20,-33.60,2.75,0.00,1.00,-33.60,-28.80,0 --19.20,-28.80,2.91,0.00,1.00,-28.80,-24.00,0 --14.40,-24.00,3.07,0.00,1.00,-24.00,-19.20,0 --14.40,-19.20,3.23,0.00,1.00,-19.20,-19.20,0 --9.60,-14.40,3.39,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,3.56,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,3.72,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,3.88,0.00,1.00,-4.80,0.00,0 -0.00,0.00,4.04,0.00,1.00,0.00,4.80,0 -4.80,4.80,4.20,0.00,1.00,4.80,9.60,0 -4.80,9.60,4.36,0.00,1.00,9.60,14.40,0 -9.60,9.60,4.53,0.00,1.00,14.40,14.40,0 -9.60,14.40,4.69,0.00,1.00,14.40,19.20,0 -14.40,19.20,4.85,0.00,1.00,19.20,24.00,0 -19.20,24.00,5.01,0.00,1.00,24.00,28.80,0 -19.20,28.80,5.17,0.00,1.00,28.80,33.60,0 -24.00,28.80,5.33,0.00,1.00,33.60,33.60,0 -28.80,33.60,5.49,0.00,1.00,38.40,38.40,0 -33.60,38.40,5.66,0.00,1.00,43.20,43.20,0 -38.40,43.20,5.82,0.00,1.00,48.00,43.20,0 -43.20,43.20,5.98,0.00,1.00,52.80,48.00,0 -48.00,48.00,6.14,0.00,1.00,57.60,52.80,0 -52.80,48.00,6.30,0.00,1.00,62.40,52.80,0 -57.60,52.80,6.46,0.00,1.00,67.20,57.60,0 -67.20,52.80,6.63,0.00,1.00,72.00,57.60,0 -76.80,57.60,6.79,0.00,1.00,81.60,57.60,0 -81.60,57.60,6.95,0.00,1.00,86.40,57.60,0 -91.20,57.60,7.11,0.00,1.00,91.20,57.60,0 -100.80,57.60,7.27,0.00,1.00,96.00,57.60,0 -110.40,52.80,7.43,0.00,1.00,100.80,52.80,0 -115.20,52.80,7.60,0.00,1.00,110.40,52.80,0 -124.80,52.80,7.76,0.00,1.00,115.20,48.00,0 -129.60,48.00,7.92,0.00,1.00,120.00,48.00,0 -134.40,48.00,8.08,0.00,1.00,124.80,43.20,0 -139.20,43.20,8.24,0.00,1.00,129.60,38.40,0 -144.00,38.40,8.40,0.00,1.00,134.40,38.40,0 -148.80,38.40,8.57,0.00,1.00,139.20,33.60,0 -153.60,33.60,8.73,0.00,1.00,144.00,28.80,0 -158.40,28.80,8.89,0.00,1.00,148.80,24.00,0 -163.20,24.00,9.05,0.00,1.00,153.60,24.00,0 -163.20,24.00,9.21,0.00,1.00,158.40,19.20,0 -168.00,19.20,9.37,0.00,1.00,163.20,14.40,0 -172.80,14.40,9.54,0.00,1.00,168.00,9.60,0 -172.80,9.60,9.70,0.00,1.00,168.00,4.80,0 -177.60,4.80,9.86,0.00,1.00,172.80,0.00,0 -177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.18,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,10.34,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,10.51,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,10.67,0.00,1.00,-168.00,-19.20,0 --168.00,-19.20,10.83,0.00,1.00,-163.20,-24.00,0 --163.20,-24.00,10.99,0.00,1.00,-158.40,-24.00,0 --163.20,-24.00,11.15,0.00,1.00,-153.60,-28.80,0 --158.40,-28.80,11.31,0.00,1.00,-148.80,-33.60,0 --153.60,-33.60,11.47,0.00,1.00,-144.00,-38.40,0 --148.80,-38.40,11.64,0.00,1.00,-139.20,-38.40,0 --144.00,-38.40,11.80,0.00,1.00,-134.40,-43.20,0 --139.20,-43.20,11.96,0.00,1.00,-129.60,-48.00,0 --134.40,-48.00,12.12,0.00,1.00,-124.80,-48.00,0 --129.60,-48.00,12.28,0.00,1.00,-120.00,-52.80,0 --124.80,-52.80,12.44,0.00,1.00,-115.20,-52.80,0 --115.20,-52.80,12.61,0.00,1.00,-110.40,-57.60,0 --110.40,-52.80,12.77,0.00,1.00,-100.80,-57.60,0 --100.80,-57.60,12.93,0.00,1.00,-96.00,-57.60,0 --91.20,-57.60,13.09,0.00,1.00,-91.20,-57.60,0 --81.60,-57.60,13.25,0.00,1.00,-86.40,-57.60,0 --76.80,-57.60,13.41,0.00,1.00,-81.60,-57.60,0 --67.20,-52.80,13.58,0.00,1.00,-72.00,-52.80,0 --57.60,-52.80,13.74,0.00,1.00,-67.20,-52.80,0 --52.80,-48.00,13.90,0.00,1.00,-62.40,-48.00,0 --48.00,-48.00,14.06,0.00,1.00,-57.60,-43.20,0 --43.20,-43.20,14.22,0.00,1.00,-52.80,-43.20,0 --38.40,-43.20,14.38,0.00,1.00,-48.00,-38.40,0 --33.60,-38.40,14.55,0.00,1.00,-43.20,-33.60,0 --28.80,-33.60,14.71,0.00,1.00,-38.40,-33.60,0 --24.00,-28.80,14.87,0.00,1.00,-33.60,-28.80,0 --19.20,-28.80,15.03,0.00,1.00,-28.80,-24.00,0 --19.20,-24.00,15.19,0.00,1.00,-24.00,-19.20,0 --14.40,-19.20,15.35,0.00,1.00,-19.20,-14.40,0 --9.60,-14.40,15.52,0.00,1.00,-14.40,-14.40,0 --9.60,-9.60,15.68,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,15.84,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,16.00,0.00,1.00,-4.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,0.00,4.80,0 -4.80,4.80,15.84,0.00,1.00,4.80,9.60,0 -4.80,9.60,15.68,0.00,1.00,9.60,9.60,0 -9.60,9.60,15.52,0.00,1.00,9.60,14.40,0 -14.40,14.40,15.35,0.00,1.00,14.40,19.20,0 -14.40,19.20,15.19,0.00,1.00,19.20,24.00,0 -19.20,24.00,15.03,0.00,1.00,24.00,24.00,0 -24.00,24.00,14.87,0.00,1.00,28.80,28.80,0 -24.00,28.80,14.71,0.00,1.00,33.60,33.60,0 -28.80,33.60,14.55,0.00,1.00,38.40,38.40,0 -33.60,33.60,14.38,0.00,1.00,43.20,38.40,0 -38.40,38.40,14.22,0.00,1.00,48.00,43.20,0 -43.20,43.20,14.06,0.00,1.00,52.80,43.20,0 -48.00,43.20,13.90,0.00,1.00,57.60,48.00,0 -57.60,48.00,13.74,0.00,1.00,62.40,48.00,0 -62.40,48.00,13.58,0.00,1.00,67.20,52.80,0 -67.20,48.00,13.41,0.00,1.00,72.00,52.80,0 -76.80,52.80,13.25,0.00,1.00,81.60,52.80,0 -86.40,52.80,13.09,0.00,1.00,86.40,52.80,0 -91.20,52.80,12.93,0.00,1.00,91.20,52.80,0 -100.80,52.80,12.77,0.00,1.00,96.00,52.80,0 -105.60,48.00,12.61,0.00,1.00,105.60,48.00,0 -115.20,48.00,12.44,0.00,1.00,110.40,48.00,0 -120.00,48.00,12.28,0.00,1.00,115.20,48.00,0 -124.80,43.20,12.12,0.00,1.00,120.00,43.20,0 -134.40,43.20,11.96,0.00,1.00,124.80,43.20,0 -139.20,38.40,11.80,0.00,1.00,129.60,38.40,0 -144.00,38.40,11.64,0.00,1.00,134.40,33.60,0 -148.80,33.60,11.47,0.00,1.00,139.20,33.60,0 -153.60,28.80,11.31,0.00,1.00,144.00,28.80,0 -153.60,28.80,11.15,0.00,1.00,148.80,24.00,0 -158.40,24.00,10.99,0.00,1.00,153.60,19.20,0 -163.20,19.20,10.83,0.00,1.00,158.40,19.20,0 -168.00,14.40,10.67,0.00,1.00,163.20,14.40,0 -168.00,14.40,10.51,0.00,1.00,168.00,9.60,0 -172.80,9.60,10.34,0.00,1.00,172.80,4.80,0 -177.60,4.80,10.18,0.00,1.00,172.80,0.00,0 -177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,9.86,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,9.70,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,9.54,0.00,1.00,-172.80,-14.40,0 --168.00,-14.40,9.37,0.00,1.00,-168.00,-19.20,0 --168.00,-14.40,9.21,0.00,1.00,-163.20,-19.20,0 --163.20,-19.20,9.05,0.00,1.00,-158.40,-24.00,0 --158.40,-24.00,8.89,0.00,1.00,-153.60,-28.80,0 --153.60,-28.80,8.73,0.00,1.00,-148.80,-33.60,0 --153.60,-28.80,8.57,0.00,1.00,-144.00,-33.60,0 --148.80,-33.60,8.40,0.00,1.00,-139.20,-38.40,0 --144.00,-38.40,8.24,0.00,1.00,-134.40,-43.20,0 --139.20,-38.40,8.08,0.00,1.00,-129.60,-43.20,0 --134.40,-43.20,7.92,0.00,1.00,-124.80,-48.00,0 --124.80,-43.20,7.76,0.00,1.00,-120.00,-48.00,0 --120.00,-48.00,7.60,0.00,1.00,-115.20,-48.00,0 --115.20,-48.00,7.43,0.00,1.00,-110.40,-52.80,0 --105.60,-48.00,7.27,0.00,1.00,-105.60,-52.80,0 --100.80,-52.80,7.11,0.00,1.00,-96.00,-52.80,0 --91.20,-52.80,6.95,0.00,1.00,-91.20,-52.80,0 --86.40,-52.80,6.79,0.00,1.00,-86.40,-52.80,0 --76.80,-52.80,6.63,0.00,1.00,-81.60,-52.80,0 --67.20,-48.00,6.46,0.00,1.00,-72.00,-48.00,0 --62.40,-48.00,6.30,0.00,1.00,-67.20,-48.00,0 --57.60,-48.00,6.14,0.00,1.00,-62.40,-43.20,0 --48.00,-43.20,5.98,0.00,1.00,-57.60,-43.20,0 --43.20,-43.20,5.82,0.00,1.00,-52.80,-38.40,0 --38.40,-38.40,5.66,0.00,1.00,-48.00,-38.40,0 --33.60,-33.60,5.49,0.00,1.00,-43.20,-33.60,0 --28.80,-33.60,5.33,0.00,1.00,-38.40,-28.80,0 --24.00,-28.80,5.17,0.00,1.00,-33.60,-24.00,0 --24.00,-24.00,5.01,0.00,1.00,-28.80,-24.00,0 --19.20,-24.00,4.85,0.00,1.00,-24.00,-19.20,0 --14.40,-19.20,4.69,0.00,1.00,-19.20,-14.40,0 --14.40,-14.40,4.53,0.00,1.00,-14.40,-9.60,0 --9.60,-9.60,4.36,0.00,1.00,-9.60,-9.60,0 --4.80,-9.60,4.20,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,4.04,0.00,1.00,-4.80,0.00,0 -0.00,0.00,3.88,0.00,1.00,0.00,4.80,0 -4.80,4.80,3.72,0.00,1.00,4.80,4.80,0 -4.80,4.80,3.56,0.00,1.00,4.80,9.60,0 -9.60,9.60,3.39,0.00,1.00,9.60,14.40,0 -14.40,14.40,3.23,0.00,1.00,14.40,19.20,0 -19.20,19.20,3.07,0.00,1.00,19.20,19.20,0 -19.20,19.20,2.91,0.00,1.00,24.00,24.00,0 -24.00,24.00,2.75,0.00,1.00,24.00,28.80,0 -28.80,28.80,2.59,0.00,1.00,28.80,28.80,0 -33.60,28.80,2.42,0.00,1.00,33.60,33.60,0 -38.40,33.60,2.26,0.00,1.00,38.40,38.40,0 -43.20,33.60,2.10,0.00,1.00,43.20,38.40,0 -48.00,38.40,1.94,0.00,1.00,48.00,43.20,0 -52.80,38.40,1.78,0.00,1.00,52.80,43.20,0 -57.60,43.20,1.62,0.00,1.00,62.40,43.20,0 -62.40,43.20,1.45,0.00,1.00,67.20,48.00,0 -72.00,43.20,1.29,0.00,1.00,72.00,48.00,0 -76.80,48.00,1.13,0.00,1.00,76.80,48.00,0 -86.40,48.00,0.97,0.00,1.00,86.40,48.00,0 -91.20,48.00,0.81,0.00,1.00,91.20,48.00,0 -100.80,48.00,0.65,0.00,1.00,96.00,48.00,0 -105.60,48.00,0.48,0.00,1.00,105.60,48.00,0 -110.40,43.20,0.32,0.00,1.00,110.40,43.20,0 -120.00,43.20,0.16,0.00,1.00,115.20,43.20,0 -124.80,43.20,0.00,0.00,1.00,124.80,38.40,0 -129.60,38.40,0.00,0.00,1.00,129.60,38.40,0 -134.40,38.40,0.04,0.00,1.00,134.40,33.60,0 -139.20,33.60,0.08,0.00,1.00,139.20,33.60,0 -144.00,33.60,0.12,0.00,1.00,144.00,28.80,0 -148.80,28.80,0.16,0.00,1.00,148.80,24.00,0 -153.60,24.00,0.20,0.00,1.00,153.60,24.00,0 -158.40,24.00,0.24,0.00,1.00,158.40,19.20,0 -163.20,19.20,0.28,0.00,1.00,158.40,14.40,0 -163.20,14.40,0.32,0.00,1.00,163.20,14.40,0 -168.00,14.40,0.36,0.00,1.00,168.00,9.60,0 -172.80,9.60,0.40,0.00,1.00,172.80,4.80,0 -172.80,4.80,0.44,0.00,1.00,172.80,0.00,0 -177.60,0.00,0.48,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,0.52,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,0.56,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,0.60,0.00,1.00,-172.80,-14.40,0 --168.00,-14.40,0.64,0.00,1.00,-168.00,-14.40,0 --163.20,-14.40,0.68,0.00,1.00,-163.20,-19.20,0 --163.20,-19.20,0.72,0.00,1.00,-158.40,-24.00,0 --158.40,-24.00,0.76,0.00,1.00,-158.40,-24.00,0 --153.60,-24.00,0.80,0.00,1.00,-153.60,-28.80,0 --148.80,-28.80,0.84,0.00,1.00,-148.80,-33.60,0 --144.00,-33.60,0.88,0.00,1.00,-144.00,-33.60,0 --139.20,-33.60,0.92,0.00,1.00,-139.20,-38.40,0 --134.40,-38.40,0.96,0.00,1.00,-134.40,-38.40,0 --129.60,-38.40,1.00,0.00,1.00,-129.60,-43.20,0 --124.80,-43.20,1.04,0.00,1.00,-124.80,-43.20,0 --120.00,-43.20,1.08,0.00,1.00,-115.20,-48.00,0 --110.40,-43.20,1.12,0.00,1.00,-110.40,-48.00,0 --105.60,-48.00,1.16,0.00,1.00,-105.60,-48.00,0 --100.80,-48.00,1.20,0.00,1.00,-96.00,-48.00,0 --91.20,-48.00,1.24,0.00,1.00,-91.20,-48.00,0 --86.40,-48.00,1.28,0.00,1.00,-86.40,-48.00,0 --76.80,-48.00,1.32,0.00,1.00,-76.80,-48.00,0 --72.00,-43.20,1.36,0.00,1.00,-72.00,-43.20,0 --62.40,-43.20,1.40,0.00,1.00,-67.20,-43.20,0 --57.60,-43.20,1.44,0.00,1.00,-62.40,-43.20,0 --52.80,-38.40,1.48,0.00,1.00,-52.80,-38.40,0 --48.00,-38.40,1.52,0.00,1.00,-48.00,-38.40,0 --43.20,-33.60,1.56,0.00,1.00,-43.20,-33.60,0 --38.40,-33.60,1.60,0.00,1.00,-38.40,-28.80,0 --33.60,-28.80,1.64,0.00,1.00,-33.60,-28.80,0 --28.80,-28.80,1.68,0.00,1.00,-28.80,-24.00,0 --24.00,-24.00,1.72,0.00,1.00,-24.00,-19.20,0 --19.20,-19.20,1.76,0.00,1.00,-24.00,-19.20,0 --19.20,-19.20,1.80,0.00,1.00,-19.20,-14.40,0 --14.40,-14.40,1.84,0.00,1.00,-14.40,-9.60,0 --9.60,-9.60,1.88,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,1.92,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,1.96,0.00,1.00,-4.80,0.00,0 -0.00,0.00,2.01,0.00,1.00,0.00,4.80,0 -4.80,4.80,2.05,0.00,1.00,4.80,4.80,0 -4.80,4.80,2.09,0.00,1.00,4.80,9.60,0 -9.60,9.60,2.13,0.00,1.00,9.60,14.40,0 -14.40,14.40,2.17,0.00,1.00,14.40,14.40,0 -19.20,14.40,2.21,0.00,1.00,14.40,19.20,0 -24.00,19.20,2.25,0.00,1.00,19.20,24.00,0 -24.00,24.00,2.29,0.00,1.00,24.00,24.00,0 -28.80,24.00,2.33,0.00,1.00,28.80,28.80,0 -33.60,28.80,2.37,0.00,1.00,33.60,28.80,0 -38.40,28.80,2.41,0.00,1.00,38.40,33.60,0 -43.20,33.60,2.45,0.00,1.00,43.20,33.60,0 -48.00,33.60,2.49,0.00,1.00,48.00,38.40,0 -52.80,38.40,2.53,0.00,1.00,52.80,38.40,0 -62.40,38.40,2.57,0.00,1.00,57.60,38.40,0 -67.20,38.40,2.61,0.00,1.00,62.40,43.20,0 -72.00,38.40,2.65,0.00,1.00,72.00,43.20,0 -76.80,43.20,2.69,0.00,1.00,76.80,43.20,0 -86.40,43.20,2.73,0.00,1.00,86.40,43.20,0 -91.20,43.20,2.77,0.00,1.00,91.20,43.20,0 -96.00,43.20,2.81,0.00,1.00,100.80,43.20,0 -105.60,43.20,2.85,0.00,1.00,105.60,43.20,0 -110.40,38.40,2.89,0.00,1.00,110.40,38.40,0 -115.20,38.40,2.93,0.00,1.00,120.00,38.40,0 -120.00,38.40,2.97,0.00,1.00,124.80,38.40,0 -129.60,33.60,3.01,0.00,1.00,129.60,33.60,0 -134.40,33.60,3.05,0.00,1.00,134.40,33.60,0 -139.20,28.80,3.09,0.00,1.00,139.20,28.80,0 -144.00,28.80,3.13,0.00,1.00,144.00,28.80,0 -148.80,24.00,3.17,0.00,1.00,148.80,24.00,0 -153.60,24.00,3.21,0.00,1.00,153.60,19.20,0 -153.60,19.20,3.25,0.00,1.00,158.40,19.20,0 -158.40,19.20,3.29,0.00,1.00,163.20,14.40,0 -163.20,14.40,3.33,0.00,1.00,163.20,9.60,0 -168.00,9.60,3.37,0.00,1.00,168.00,9.60,0 -172.80,9.60,3.41,0.00,1.00,172.80,4.80,0 -172.80,4.80,3.45,0.00,1.00,172.80,0.00,0 -177.60,0.00,3.49,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,3.53,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,3.57,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,3.61,0.00,1.00,-172.80,-9.60,0 --168.00,-9.60,3.65,0.00,1.00,-168.00,-14.40,0 --163.20,-14.40,3.69,0.00,1.00,-163.20,-19.20,0 --158.40,-19.20,3.73,0.00,1.00,-163.20,-19.20,0 --153.60,-19.20,3.77,0.00,1.00,-158.40,-24.00,0 --153.60,-24.00,3.81,0.00,1.00,-153.60,-28.80,0 --148.80,-24.00,3.85,0.00,1.00,-148.80,-28.80,0 --144.00,-28.80,3.89,0.00,1.00,-144.00,-33.60,0 --139.20,-28.80,3.93,0.00,1.00,-139.20,-33.60,0 --134.40,-33.60,3.97,0.00,1.00,-134.40,-38.40,0 --129.60,-33.60,4.01,0.00,1.00,-129.60,-38.40,0 --120.00,-38.40,4.05,0.00,1.00,-124.80,-38.40,0 --115.20,-38.40,4.09,0.00,1.00,-120.00,-43.20,0 --110.40,-38.40,4.13,0.00,1.00,-110.40,-43.20,0 --105.60,-43.20,4.17,0.00,1.00,-105.60,-43.20,0 --96.00,-43.20,4.21,0.00,1.00,-100.80,-43.20,0 --91.20,-43.20,4.25,0.00,1.00,-91.20,-43.20,0 --86.40,-43.20,4.29,0.00,1.00,-86.40,-43.20,0 --76.80,-43.20,4.33,0.00,1.00,-76.80,-43.20,0 --72.00,-38.40,4.37,0.00,1.00,-72.00,-38.40,0 --67.20,-38.40,4.41,0.00,1.00,-62.40,-38.40,0 --62.40,-38.40,4.45,0.00,1.00,-57.60,-38.40,0 --52.80,-38.40,4.49,0.00,1.00,-52.80,-33.60,0 --48.00,-33.60,4.53,0.00,1.00,-48.00,-33.60,0 --43.20,-33.60,4.57,0.00,1.00,-43.20,-28.80,0 --38.40,-28.80,4.61,0.00,1.00,-38.40,-28.80,0 --33.60,-28.80,4.65,0.00,1.00,-33.60,-24.00,0 --28.80,-24.00,4.69,0.00,1.00,-28.80,-24.00,0 --24.00,-24.00,4.73,0.00,1.00,-24.00,-19.20,0 --24.00,-19.20,4.77,0.00,1.00,-19.20,-14.40,0 --19.20,-14.40,4.81,0.00,1.00,-14.40,-14.40,0 --14.40,-14.40,4.85,0.00,1.00,-14.40,-9.60,0 --9.60,-9.60,4.89,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,4.93,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,4.97,0.00,1.00,-4.80,0.00,0 -0.00,0.00,5.01,0.00,1.00,0.00,4.80,0 -4.80,4.80,5.05,0.00,1.00,4.80,4.80,0 -9.60,4.80,5.09,0.00,1.00,4.80,9.60,0 -9.60,9.60,5.13,0.00,1.00,9.60,9.60,0 -14.40,9.60,5.17,0.00,1.00,9.60,14.40,0 -19.20,14.40,5.21,0.00,1.00,14.40,19.20,0 -24.00,19.20,5.25,0.00,1.00,19.20,19.20,0 -28.80,19.20,5.29,0.00,1.00,24.00,24.00,0 -33.60,24.00,5.33,0.00,1.00,24.00,24.00,0 -38.40,24.00,5.37,0.00,1.00,28.80,28.80,0 -43.20,28.80,5.41,0.00,1.00,33.60,28.80,0 -48.00,28.80,5.45,0.00,1.00,38.40,33.60,0 -52.80,28.80,5.49,0.00,1.00,43.20,33.60,0 -57.60,33.60,5.53,0.00,1.00,48.00,33.60,0 -62.40,33.60,5.57,0.00,1.00,52.80,38.40,0 -67.20,33.60,5.61,0.00,1.00,62.40,38.40,0 -72.00,38.40,5.65,0.00,1.00,67.20,38.40,0 -81.60,38.40,5.69,0.00,1.00,76.80,38.40,0 -86.40,38.40,5.73,0.00,1.00,86.40,38.40,0 -91.20,38.40,5.77,0.00,1.00,91.20,38.40,0 -96.00,38.40,5.81,0.00,1.00,100.80,38.40,0 -105.60,38.40,5.85,0.00,1.00,105.60,38.40,0 -110.40,33.60,5.89,0.00,1.00,115.20,33.60,0 -115.20,33.60,5.93,0.00,1.00,120.00,33.60,0 -120.00,33.60,5.97,0.00,1.00,129.60,33.60,0 -124.80,33.60,6.02,0.00,1.00,134.40,28.80,0 -129.60,28.80,6.06,0.00,1.00,139.20,28.80,0 -134.40,28.80,6.10,0.00,1.00,144.00,24.00,0 -139.20,24.00,6.14,0.00,1.00,148.80,24.00,0 -144.00,24.00,6.18,0.00,1.00,153.60,19.20,0 -148.80,19.20,6.22,0.00,1.00,158.40,19.20,0 -153.60,19.20,6.26,0.00,1.00,158.40,14.40,0 -158.40,14.40,6.30,0.00,1.00,163.20,14.40,0 -163.20,14.40,6.34,0.00,1.00,168.00,9.60,0 -168.00,9.60,6.38,0.00,1.00,168.00,9.60,0 -168.00,9.60,6.42,0.00,1.00,172.80,4.80,0 -172.80,4.80,6.46,0.00,1.00,177.60,0.00,0 -177.60,0.00,6.50,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,6.54,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,6.58,0.00,1.00,-177.60,-9.60,0 --168.00,-9.60,6.62,0.00,1.00,-172.80,-9.60,0 --168.00,-9.60,6.66,0.00,1.00,-168.00,-14.40,0 --163.20,-14.40,6.70,0.00,1.00,-168.00,-14.40,0 --158.40,-14.40,6.74,0.00,1.00,-163.20,-19.20,0 --153.60,-19.20,6.78,0.00,1.00,-158.40,-19.20,0 --148.80,-19.20,6.82,0.00,1.00,-158.40,-24.00,0 --144.00,-24.00,6.86,0.00,1.00,-153.60,-24.00,0 --139.20,-24.00,6.90,0.00,1.00,-148.80,-28.80,0 --134.40,-28.80,6.94,0.00,1.00,-144.00,-28.80,0 --129.60,-28.80,6.98,0.00,1.00,-139.20,-33.60,0 --124.80,-33.60,7.02,0.00,1.00,-134.40,-33.60,0 --120.00,-33.60,7.06,0.00,1.00,-129.60,-33.60,0 --115.20,-33.60,7.10,0.00,1.00,-120.00,-38.40,0 --110.40,-33.60,7.14,0.00,1.00,-115.20,-38.40,0 --105.60,-38.40,7.18,0.00,1.00,-105.60,-38.40,0 --96.00,-38.40,7.22,0.00,1.00,-100.80,-38.40,0 --91.20,-38.40,7.26,0.00,1.00,-91.20,-38.40,0 --86.40,-38.40,7.30,0.00,1.00,-86.40,-38.40,0 --81.60,-38.40,7.34,0.00,1.00,-76.80,-38.40,0 --72.00,-38.40,7.38,0.00,1.00,-67.20,-38.40,0 --67.20,-33.60,7.42,0.00,1.00,-62.40,-33.60,0 --62.40,-33.60,7.46,0.00,1.00,-52.80,-33.60,0 --57.60,-33.60,7.50,0.00,1.00,-48.00,-33.60,0 --52.80,-28.80,7.54,0.00,1.00,-43.20,-28.80,0 --48.00,-28.80,7.58,0.00,1.00,-38.40,-28.80,0 --43.20,-28.80,7.62,0.00,1.00,-33.60,-24.00,0 --38.40,-24.00,7.66,0.00,1.00,-28.80,-24.00,0 --33.60,-24.00,7.70,0.00,1.00,-24.00,-19.20,0 --28.80,-19.20,7.74,0.00,1.00,-24.00,-19.20,0 --24.00,-19.20,7.78,0.00,1.00,-19.20,-14.40,0 --19.20,-14.40,7.82,0.00,1.00,-14.40,-9.60,0 --14.40,-9.60,7.86,0.00,1.00,-9.60,-9.60,0 --9.60,-9.60,7.90,0.00,1.00,-9.60,-4.80,0 --9.60,-4.80,7.94,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,7.98,0.00,1.00,-4.80,0.00,0 -0.00,0.00,8.02,0.00,1.00,0.00,4.80,0 -4.80,4.80,8.06,0.00,1.00,4.80,4.80,0 -9.60,4.80,8.10,0.00,1.00,4.80,9.60,0 -14.40,9.60,8.14,0.00,1.00,9.60,9.60,0 -14.40,9.60,8.18,0.00,1.00,9.60,14.40,0 -19.20,14.40,8.22,0.00,1.00,14.40,14.40,0 -24.00,14.40,8.26,0.00,1.00,14.40,19.20,0 -28.80,19.20,8.30,0.00,1.00,19.20,19.20,0 -33.60,19.20,8.34,0.00,1.00,24.00,24.00,0 -38.40,19.20,8.38,0.00,1.00,28.80,24.00,0 -43.20,24.00,8.42,0.00,1.00,28.80,24.00,0 -48.00,24.00,8.46,0.00,1.00,33.60,28.80,0 -52.80,28.80,8.50,0.00,1.00,38.40,28.80,0 -57.60,28.80,8.54,0.00,1.00,48.00,28.80,0 -62.40,28.80,8.58,0.00,1.00,52.80,33.60,0 -67.20,28.80,8.62,0.00,1.00,57.60,33.60,0 -76.80,33.60,8.66,0.00,1.00,67.20,33.60,0 -81.60,33.60,8.70,0.00,1.00,76.80,33.60,0 -86.40,33.60,8.74,0.00,1.00,81.60,33.60,0 -91.20,33.60,8.78,0.00,1.00,91.20,33.60,0 -96.00,33.60,8.82,0.00,1.00,100.80,33.60,0 -100.80,33.60,8.86,0.00,1.00,110.40,33.60,0 -110.40,28.80,8.90,0.00,1.00,115.20,33.60,0 -115.20,28.80,8.94,0.00,1.00,124.80,28.80,0 -120.00,28.80,8.98,0.00,1.00,129.60,28.80,0 -124.80,28.80,9.02,0.00,1.00,139.20,28.80,0 -129.60,24.00,9.06,0.00,1.00,144.00,24.00,0 -134.40,24.00,9.10,0.00,1.00,148.80,24.00,0 -139.20,24.00,9.14,0.00,1.00,153.60,19.20,0 -144.00,19.20,9.18,0.00,1.00,153.60,19.20,0 -148.80,19.20,9.22,0.00,1.00,158.40,14.40,0 -153.60,14.40,9.26,0.00,1.00,163.20,14.40,0 -158.40,14.40,9.30,0.00,1.00,163.20,9.60,0 -163.20,9.60,9.34,0.00,1.00,168.00,9.60,0 -168.00,9.60,9.38,0.00,1.00,172.80,4.80,0 -168.00,4.80,9.42,0.00,1.00,172.80,4.80,0 -172.80,4.80,9.46,0.00,1.00,177.60,0.00,0 -177.60,0.00,9.50,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,9.54,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,9.58,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,9.62,0.00,1.00,-172.80,-9.60,0 --168.00,-9.60,9.66,0.00,1.00,-172.80,-9.60,0 --163.20,-9.60,9.70,0.00,1.00,-168.00,-14.40,0 --158.40,-14.40,9.74,0.00,1.00,-163.20,-14.40,0 --153.60,-14.40,9.78,0.00,1.00,-163.20,-19.20,0 --148.80,-19.20,9.82,0.00,1.00,-158.40,-19.20,0 --144.00,-19.20,9.86,0.00,1.00,-153.60,-24.00,0 --139.20,-24.00,9.90,0.00,1.00,-153.60,-24.00,0 --134.40,-24.00,9.94,0.00,1.00,-148.80,-28.80,0 --129.60,-24.00,9.98,0.00,1.00,-144.00,-28.80,0 --124.80,-28.80,10.03,0.00,1.00,-139.20,-28.80,0 --120.00,-28.80,10.07,0.00,1.00,-129.60,-33.60,0 --115.20,-28.80,10.11,0.00,1.00,-124.80,-33.60,0 --110.40,-28.80,10.15,0.00,1.00,-115.20,-33.60,0 --100.80,-33.60,10.19,0.00,1.00,-110.40,-33.60,0 --96.00,-33.60,10.23,0.00,1.00,-100.80,-33.60,0 --91.20,-33.60,10.27,0.00,1.00,-91.20,-33.60,0 --86.40,-33.60,10.31,0.00,1.00,-81.60,-33.60,0 --81.60,-33.60,10.35,0.00,1.00,-76.80,-33.60,0 --76.80,-33.60,10.39,0.00,1.00,-67.20,-33.60,0 --67.20,-28.80,10.43,0.00,1.00,-57.60,-28.80,0 --62.40,-28.80,10.47,0.00,1.00,-52.80,-28.80,0 --57.60,-28.80,10.51,0.00,1.00,-48.00,-28.80,0 --52.80,-28.80,10.55,0.00,1.00,-38.40,-24.00,0 --48.00,-24.00,10.59,0.00,1.00,-33.60,-24.00,0 --43.20,-24.00,10.63,0.00,1.00,-28.80,-24.00,0 --38.40,-19.20,10.67,0.00,1.00,-28.80,-19.20,0 --33.60,-19.20,10.71,0.00,1.00,-24.00,-19.20,0 --28.80,-19.20,10.75,0.00,1.00,-19.20,-14.40,0 --24.00,-14.40,10.79,0.00,1.00,-14.40,-14.40,0 --19.20,-14.40,10.83,0.00,1.00,-14.40,-9.60,0 --14.40,-9.60,10.87,0.00,1.00,-9.60,-9.60,0 --14.40,-9.60,10.91,0.00,1.00,-9.60,-4.80,0 --9.60,-4.80,10.95,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,10.99,0.00,1.00,-4.80,0.00,0 -0.00,0.00,11.03,0.00,1.00,0.00,0.00,0 -4.80,0.00,11.07,0.00,1.00,0.00,4.80,0 -9.60,4.80,11.11,0.00,1.00,4.80,4.80,0 -14.40,4.80,11.15,0.00,1.00,4.80,9.60,0 -19.20,9.60,11.19,0.00,1.00,9.60,9.60,0 -19.20,9.60,11.23,0.00,1.00,9.60,14.40,0 -24.00,14.40,11.27,0.00,1.00,14.40,14.40,0 -28.80,14.40,11.31,0.00,1.00,19.20,19.20,0 -33.60,14.40,11.35,0.00,1.00,19.20,19.20,0 -38.40,19.20,11.39,0.00,1.00,24.00,19.20,0 -43.20,19.20,11.43,0.00,1.00,28.80,24.00,0 -48.00,24.00,11.47,0.00,1.00,33.60,24.00,0 -52.80,24.00,11.51,0.00,1.00,38.40,24.00,0 -57.60,24.00,11.55,0.00,1.00,43.20,24.00,0 -62.40,24.00,11.59,0.00,1.00,48.00,28.80,0 -72.00,24.00,11.63,0.00,1.00,52.80,28.80,0 -76.80,28.80,11.67,0.00,1.00,62.40,28.80,0 -81.60,28.80,11.71,0.00,1.00,72.00,28.80,0 -86.40,28.80,11.75,0.00,1.00,81.60,28.80,0 -91.20,28.80,11.79,0.00,1.00,91.20,28.80,0 -96.00,28.80,11.83,0.00,1.00,100.80,28.80,0 -100.80,28.80,11.87,0.00,1.00,110.40,28.80,0 -105.60,28.80,11.91,0.00,1.00,120.00,28.80,0 -110.40,24.00,11.95,0.00,1.00,129.60,24.00,0 -120.00,24.00,11.99,0.00,1.00,134.40,24.00,0 -124.80,24.00,12.03,0.00,1.00,139.20,24.00,0 -129.60,24.00,12.07,0.00,1.00,144.00,24.00,0 -134.40,19.20,12.11,0.00,1.00,148.80,19.20,0 -139.20,19.20,12.15,0.00,1.00,153.60,19.20,0 -144.00,19.20,12.19,0.00,1.00,158.40,14.40,0 -148.80,14.40,12.23,0.00,1.00,163.20,14.40,0 -153.60,14.40,12.27,0.00,1.00,163.20,14.40,0 -158.40,9.60,12.31,0.00,1.00,168.00,9.60,0 -158.40,9.60,12.35,0.00,1.00,168.00,9.60,0 -163.20,9.60,12.39,0.00,1.00,172.80,4.80,0 -168.00,4.80,12.43,0.00,1.00,172.80,4.80,0 -172.80,4.80,12.47,0.00,1.00,177.60,0.00,0 -177.60,0.00,12.51,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,12.55,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,12.59,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,12.63,0.00,1.00,-172.80,-9.60,0 --163.20,-9.60,12.67,0.00,1.00,-172.80,-9.60,0 --158.40,-9.60,12.71,0.00,1.00,-168.00,-14.40,0 --158.40,-9.60,12.75,0.00,1.00,-168.00,-14.40,0 --153.60,-14.40,12.79,0.00,1.00,-163.20,-14.40,0 --148.80,-14.40,12.83,0.00,1.00,-163.20,-19.20,0 --144.00,-19.20,12.87,0.00,1.00,-158.40,-19.20,0 --139.20,-19.20,12.91,0.00,1.00,-153.60,-24.00,0 --134.40,-19.20,12.95,0.00,1.00,-148.80,-24.00,0 --129.60,-24.00,12.99,0.00,1.00,-144.00,-24.00,0 --124.80,-24.00,13.03,0.00,1.00,-139.20,-24.00,0 --120.00,-24.00,13.07,0.00,1.00,-134.40,-28.80,0 --110.40,-24.00,13.11,0.00,1.00,-129.60,-28.80,0 --105.60,-28.80,13.15,0.00,1.00,-120.00,-28.80,0 --100.80,-28.80,13.19,0.00,1.00,-110.40,-28.80,0 --96.00,-28.80,13.23,0.00,1.00,-100.80,-28.80,0 --91.20,-28.80,13.27,0.00,1.00,-91.20,-28.80,0 --86.40,-28.80,13.31,0.00,1.00,-81.60,-28.80,0 --81.60,-28.80,13.35,0.00,1.00,-72.00,-28.80,0 --76.80,-28.80,13.39,0.00,1.00,-62.40,-28.80,0 --72.00,-24.00,13.43,0.00,1.00,-52.80,-24.00,0 --62.40,-24.00,13.47,0.00,1.00,-48.00,-24.00,0 --57.60,-24.00,13.51,0.00,1.00,-43.20,-24.00,0 --52.80,-24.00,13.55,0.00,1.00,-38.40,-24.00,0 --48.00,-24.00,13.59,0.00,1.00,-33.60,-19.20,0 --43.20,-19.20,13.63,0.00,1.00,-28.80,-19.20,0 --38.40,-19.20,13.67,0.00,1.00,-24.00,-19.20,0 --33.60,-14.40,13.71,0.00,1.00,-19.20,-14.40,0 --28.80,-14.40,13.75,0.00,1.00,-19.20,-14.40,0 --24.00,-14.40,13.79,0.00,1.00,-14.40,-9.60,0 --19.20,-9.60,13.83,0.00,1.00,-9.60,-9.60,0 --19.20,-9.60,13.87,0.00,1.00,-9.60,-4.80,0 --14.40,-4.80,13.91,0.00,1.00,-4.80,-4.80,0 --9.60,-4.80,13.95,0.00,1.00,-4.80,-0.00,0 --4.80,-0.00,13.99,0.00,1.00,-0.00,0.00,0 -0.00,0.00,14.04,0.00,1.00,0.00,0.00,0 -4.80,0.00,14.08,0.00,1.00,0.00,4.80,0 -9.60,4.80,14.12,0.00,1.00,4.80,4.80,0 -14.40,4.80,14.16,0.00,1.00,4.80,9.60,0 -19.20,9.60,14.20,0.00,1.00,9.60,9.60,0 -24.00,9.60,14.24,0.00,1.00,9.60,9.60,0 -28.80,9.60,14.28,0.00,1.00,14.40,14.40,0 -33.60,14.40,14.32,0.00,1.00,14.40,14.40,0 -38.40,14.40,14.36,0.00,1.00,19.20,14.40,0 -43.20,14.40,14.40,0.00,1.00,19.20,19.20,0 -48.00,14.40,14.44,0.00,1.00,24.00,19.20,0 -52.80,19.20,14.48,0.00,1.00,28.80,19.20,0 -57.60,19.20,14.52,0.00,1.00,33.60,19.20,0 -62.40,19.20,14.56,0.00,1.00,38.40,24.00,0 -67.20,19.20,14.60,0.00,1.00,43.20,24.00,0 -72.00,24.00,14.64,0.00,1.00,48.00,24.00,0 -76.80,24.00,14.68,0.00,1.00,57.60,24.00,0 -81.60,24.00,14.72,0.00,1.00,67.20,24.00,0 -86.40,24.00,14.76,0.00,1.00,81.60,24.00,0 -91.20,24.00,14.80,0.00,1.00,91.20,24.00,0 -96.00,24.00,14.84,0.00,1.00,105.60,24.00,0 -100.80,24.00,14.88,0.00,1.00,115.20,24.00,0 -105.60,24.00,14.92,0.00,1.00,124.80,24.00,0 -110.40,19.20,14.96,0.00,1.00,134.40,19.20,0 -115.20,19.20,15.00,0.00,1.00,139.20,19.20,0 -120.00,19.20,15.04,0.00,1.00,144.00,19.20,0 -124.80,19.20,15.08,0.00,1.00,148.80,19.20,0 -129.60,19.20,15.12,0.00,1.00,153.60,19.20,0 -134.40,14.40,15.16,0.00,1.00,158.40,14.40,0 -139.20,14.40,15.20,0.00,1.00,163.20,14.40,0 -144.00,14.40,15.24,0.00,1.00,163.20,14.40,0 -148.80,9.60,15.28,0.00,1.00,168.00,9.60,0 -153.60,9.60,15.32,0.00,1.00,168.00,9.60,0 -158.40,9.60,15.36,0.00,1.00,172.80,4.80,0 -163.20,4.80,15.40,0.00,1.00,172.80,4.80,0 -168.00,4.80,15.44,0.00,1.00,177.60,4.80,0 -172.80,4.80,15.48,0.00,1.00,177.60,0.00,0 -177.60,0.00,15.52,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,15.56,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,15.60,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,15.64,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,15.68,0.00,1.00,-172.80,-9.60,0 --158.40,-9.60,15.72,0.00,1.00,-172.80,-9.60,0 --153.60,-9.60,15.76,0.00,1.00,-168.00,-14.40,0 --148.80,-9.60,15.80,0.00,1.00,-168.00,-14.40,0 --144.00,-14.40,15.84,0.00,1.00,-163.20,-14.40,0 --139.20,-14.40,15.88,0.00,1.00,-163.20,-19.20,0 --134.40,-14.40,15.92,0.00,1.00,-158.40,-19.20,0 --129.60,-19.20,15.96,0.00,1.00,-153.60,-19.20,0 --124.80,-19.20,16.00,0.00,1.00,-148.80,-19.20,0 --120.00,-19.20,16.00,0.00,1.00,-144.00,-19.20,0 --115.20,-19.20,15.96,0.00,1.00,-139.20,-24.00,0 --110.40,-19.20,15.92,0.00,1.00,-134.40,-24.00,0 --105.60,-24.00,15.88,0.00,1.00,-124.80,-24.00,0 --100.80,-24.00,15.84,0.00,1.00,-115.20,-24.00,0 --96.00,-24.00,15.80,0.00,1.00,-105.60,-24.00,0 --91.20,-24.00,15.76,0.00,1.00,-91.20,-24.00,0 --86.40,-24.00,15.72,0.00,1.00,-81.60,-24.00,0 --81.60,-24.00,15.68,0.00,1.00,-67.20,-24.00,0 --76.80,-24.00,15.64,0.00,1.00,-57.60,-24.00,0 --72.00,-24.00,15.60,0.00,1.00,-48.00,-24.00,0 --67.20,-19.20,15.56,0.00,1.00,-43.20,-19.20,0 --62.40,-19.20,15.52,0.00,1.00,-38.40,-19.20,0 --57.60,-19.20,15.48,0.00,1.00,-33.60,-19.20,0 --52.80,-19.20,15.44,0.00,1.00,-28.80,-19.20,0 --48.00,-14.40,15.40,0.00,1.00,-24.00,-14.40,0 --43.20,-14.40,15.36,0.00,1.00,-19.20,-14.40,0 --38.40,-14.40,15.32,0.00,1.00,-19.20,-14.40,0 --33.60,-14.40,15.28,0.00,1.00,-14.40,-9.60,0 --28.80,-9.60,15.24,0.00,1.00,-14.40,-9.60,0 --24.00,-9.60,15.20,0.00,1.00,-9.60,-9.60,0 --19.20,-9.60,15.16,0.00,1.00,-9.60,-4.80,0 --14.40,-4.80,15.12,0.00,1.00,-4.80,-4.80,0 --9.60,-4.80,15.08,0.00,1.00,-4.80,-0.00,0 --4.80,-0.00,15.04,0.00,1.00,-0.00,0.00,0 -0.00,0.00,15.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,14.96,0.00,1.00,0.00,4.80,0 -9.60,4.80,14.92,0.00,1.00,4.80,4.80,0 -14.40,4.80,14.88,0.00,1.00,4.80,4.80,0 -19.20,4.80,14.84,0.00,1.00,4.80,9.60,0 -24.00,9.60,14.80,0.00,1.00,9.60,9.60,0 -28.80,9.60,14.76,0.00,1.00,9.60,9.60,0 -33.60,9.60,14.72,0.00,1.00,9.60,9.60,0 -38.40,9.60,14.68,0.00,1.00,14.40,14.40,0 -43.20,14.40,14.64,0.00,1.00,14.40,14.40,0 -48.00,14.40,14.60,0.00,1.00,19.20,14.40,0 -52.80,14.40,14.56,0.00,1.00,24.00,14.40,0 -57.60,14.40,14.52,0.00,1.00,24.00,19.20,0 -62.40,14.40,14.48,0.00,1.00,28.80,19.20,0 -67.20,14.40,14.44,0.00,1.00,38.40,19.20,0 -72.00,19.20,14.40,0.00,1.00,43.20,19.20,0 -76.80,19.20,14.36,0.00,1.00,52.80,19.20,0 -81.60,19.20,14.32,0.00,1.00,62.40,19.20,0 -86.40,19.20,14.28,0.00,1.00,76.80,19.20,0 -91.20,19.20,14.24,0.00,1.00,96.00,19.20,0 -96.00,19.20,14.20,0.00,1.00,110.40,19.20,0 -100.80,19.20,14.16,0.00,1.00,120.00,19.20,0 -105.60,19.20,14.12,0.00,1.00,134.40,19.20,0 -110.40,19.20,14.08,0.00,1.00,139.20,19.20,0 -115.20,14.40,14.04,0.00,1.00,148.80,14.40,0 -120.00,14.40,13.99,0.00,1.00,153.60,14.40,0 -124.80,14.40,13.95,0.00,1.00,158.40,14.40,0 -129.60,14.40,13.91,0.00,1.00,158.40,14.40,0 -134.40,14.40,13.87,0.00,1.00,163.20,14.40,0 -139.20,9.60,13.83,0.00,1.00,163.20,9.60,0 -144.00,9.60,13.79,0.00,1.00,168.00,9.60,0 -148.80,9.60,13.75,0.00,1.00,168.00,9.60,0 -153.60,9.60,13.71,0.00,1.00,172.80,4.80,0 -158.40,4.80,13.67,0.00,1.00,172.80,4.80,0 -163.20,4.80,13.63,0.00,1.00,172.80,4.80,0 -168.00,4.80,13.59,0.00,1.00,177.60,0.00,0 -172.80,0.00,13.55,0.00,1.00,177.60,0.00,0 -177.60,0.00,13.51,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,13.47,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,13.43,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,13.39,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,13.35,0.00,1.00,-172.80,-4.80,0 --158.40,-4.80,13.31,0.00,1.00,-172.80,-9.60,0 --153.60,-9.60,13.27,0.00,1.00,-172.80,-9.60,0 --148.80,-9.60,13.23,0.00,1.00,-168.00,-9.60,0 --144.00,-9.60,13.19,0.00,1.00,-168.00,-14.40,0 --139.20,-9.60,13.15,0.00,1.00,-163.20,-14.40,0 --134.40,-14.40,13.11,0.00,1.00,-163.20,-14.40,0 --129.60,-14.40,13.07,0.00,1.00,-158.40,-14.40,0 --124.80,-14.40,13.03,0.00,1.00,-158.40,-14.40,0 --120.00,-14.40,12.99,0.00,1.00,-153.60,-19.20,0 --115.20,-14.40,12.95,0.00,1.00,-148.80,-19.20,0 --110.40,-19.20,12.91,0.00,1.00,-139.20,-19.20,0 --105.60,-19.20,12.87,0.00,1.00,-134.40,-19.20,0 --100.80,-19.20,12.83,0.00,1.00,-120.00,-19.20,0 --96.00,-19.20,12.79,0.00,1.00,-110.40,-19.20,0 --91.20,-19.20,12.75,0.00,1.00,-96.00,-19.20,0 --86.40,-19.20,12.71,0.00,1.00,-76.80,-19.20,0 --81.60,-19.20,12.67,0.00,1.00,-62.40,-19.20,0 --76.80,-19.20,12.63,0.00,1.00,-52.80,-19.20,0 --72.00,-19.20,12.59,0.00,1.00,-43.20,-19.20,0 --67.20,-14.40,12.55,0.00,1.00,-38.40,-19.20,0 --62.40,-14.40,12.51,0.00,1.00,-28.80,-14.40,0 --57.60,-14.40,12.47,0.00,1.00,-24.00,-14.40,0 --52.80,-14.40,12.43,0.00,1.00,-24.00,-14.40,0 --48.00,-14.40,12.39,0.00,1.00,-19.20,-14.40,0 --43.20,-14.40,12.35,0.00,1.00,-14.40,-9.60,0 --38.40,-9.60,12.31,0.00,1.00,-14.40,-9.60,0 --33.60,-9.60,12.27,0.00,1.00,-9.60,-9.60,0 --28.80,-9.60,12.23,0.00,1.00,-9.60,-9.60,0 --24.00,-9.60,12.19,0.00,1.00,-9.60,-4.80,0 --19.20,-4.80,12.15,0.00,1.00,-4.80,-4.80,0 --14.40,-4.80,12.11,0.00,1.00,-4.80,-4.80,0 --9.60,-4.80,12.07,0.00,1.00,-4.80,-0.00,0 --4.80,-0.00,12.03,0.00,1.00,-0.00,0.00,0 -0.00,0.00,11.99,0.00,1.00,0.00,0.00,0 -4.80,0.00,11.95,0.00,1.00,0.00,0.00,0 -9.60,0.00,11.91,0.00,1.00,0.00,4.80,0 -14.40,4.80,11.87,0.00,1.00,4.80,4.80,0 -19.20,4.80,11.83,0.00,1.00,4.80,4.80,0 -24.00,4.80,11.79,0.00,1.00,4.80,4.80,0 -28.80,4.80,11.75,0.00,1.00,4.80,9.60,0 -33.60,9.60,11.71,0.00,1.00,9.60,9.60,0 -38.40,9.60,11.67,0.00,1.00,9.60,9.60,0 -43.20,9.60,11.63,0.00,1.00,14.40,9.60,0 -48.00,9.60,11.59,0.00,1.00,14.40,9.60,0 -52.80,9.60,11.55,0.00,1.00,14.40,14.40,0 -57.60,9.60,11.51,0.00,1.00,19.20,14.40,0 -62.40,9.60,11.47,0.00,1.00,24.00,14.40,0 -67.20,14.40,11.43,0.00,1.00,28.80,14.40,0 -72.00,14.40,11.39,0.00,1.00,33.60,14.40,0 -76.80,14.40,11.35,0.00,1.00,43.20,14.40,0 -81.60,14.40,11.31,0.00,1.00,57.60,14.40,0 -86.40,14.40,11.27,0.00,1.00,76.80,14.40,0 -91.20,14.40,11.23,0.00,1.00,96.00,14.40,0 -96.00,14.40,11.19,0.00,1.00,115.20,14.40,0 -100.80,14.40,11.15,0.00,1.00,129.60,14.40,0 -105.60,14.40,11.11,0.00,1.00,139.20,14.40,0 -110.40,14.40,11.07,0.00,1.00,148.80,14.40,0 -115.20,9.60,11.03,0.00,1.00,153.60,14.40,0 -120.00,9.60,10.99,0.00,1.00,158.40,9.60,0 -124.80,9.60,10.95,0.00,1.00,163.20,9.60,0 -129.60,9.60,10.91,0.00,1.00,163.20,9.60,0 -134.40,9.60,10.87,0.00,1.00,168.00,9.60,0 -139.20,9.60,10.83,0.00,1.00,168.00,9.60,0 -144.00,9.60,10.79,0.00,1.00,172.80,9.60,0 -148.80,4.80,10.75,0.00,1.00,172.80,4.80,0 -153.60,4.80,10.71,0.00,1.00,172.80,4.80,0 -158.40,4.80,10.67,0.00,1.00,172.80,4.80,0 -163.20,4.80,10.63,0.00,1.00,177.60,4.80,0 -168.00,4.80,10.59,0.00,1.00,177.60,0.00,0 -172.80,0.00,10.55,0.00,1.00,177.60,0.00,0 -177.60,0.00,10.51,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.47,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,10.43,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,10.39,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,10.35,0.00,1.00,-177.60,-4.80,0 --158.40,-4.80,10.31,0.00,1.00,-172.80,-4.80,0 --153.60,-4.80,10.27,0.00,1.00,-172.80,-9.60,0 --148.80,-4.80,10.23,0.00,1.00,-172.80,-9.60,0 --144.00,-9.60,10.19,0.00,1.00,-172.80,-9.60,0 --139.20,-9.60,10.15,0.00,1.00,-168.00,-9.60,0 --134.40,-9.60,10.11,0.00,1.00,-168.00,-9.60,0 --129.60,-9.60,10.07,0.00,1.00,-163.20,-9.60,0 --124.80,-9.60,10.03,0.00,1.00,-163.20,-14.40,0 --120.00,-9.60,9.98,0.00,1.00,-158.40,-14.40,0 --115.20,-9.60,9.94,0.00,1.00,-153.60,-14.40,0 --110.40,-14.40,9.90,0.00,1.00,-148.80,-14.40,0 --105.60,-14.40,9.86,0.00,1.00,-139.20,-14.40,0 --100.80,-14.40,9.82,0.00,1.00,-129.60,-14.40,0 --96.00,-14.40,9.78,0.00,1.00,-115.20,-14.40,0 --91.20,-14.40,9.74,0.00,1.00,-96.00,-14.40,0 --86.40,-14.40,9.70,0.00,1.00,-76.80,-14.40,0 --81.60,-14.40,9.66,0.00,1.00,-57.60,-14.40,0 --76.80,-14.40,9.62,0.00,1.00,-43.20,-14.40,0 --72.00,-14.40,9.58,0.00,1.00,-33.60,-14.40,0 --67.20,-14.40,9.54,0.00,1.00,-28.80,-14.40,0 --62.40,-9.60,9.50,0.00,1.00,-24.00,-14.40,0 --57.60,-9.60,9.46,0.00,1.00,-19.20,-9.60,0 --52.80,-9.60,9.42,0.00,1.00,-14.40,-9.60,0 --48.00,-9.60,9.38,0.00,1.00,-14.40,-9.60,0 --43.20,-9.60,9.34,0.00,1.00,-14.40,-9.60,0 --38.40,-9.60,9.30,0.00,1.00,-9.60,-9.60,0 --33.60,-9.60,9.26,0.00,1.00,-9.60,-4.80,0 --28.80,-4.80,9.22,0.00,1.00,-4.80,-4.80,0 --24.00,-4.80,9.18,0.00,1.00,-4.80,-4.80,0 --19.20,-4.80,9.14,0.00,1.00,-4.80,-4.80,0 --14.40,-4.80,9.10,0.00,1.00,-4.80,-0.00,0 --9.60,-0.00,9.06,0.00,1.00,-0.00,-0.00,0 --4.80,-0.00,9.02,0.00,1.00,-0.00,0.00,0 -0.00,0.00,8.98,0.00,1.00,0.00,0.00,0 -4.80,0.00,8.94,0.00,1.00,0.00,0.00,0 -9.60,0.00,8.90,0.00,1.00,0.00,0.00,0 -14.40,0.00,8.86,0.00,1.00,0.00,4.80,0 -19.20,4.80,8.82,0.00,1.00,4.80,4.80,0 -24.00,4.80,8.78,0.00,1.00,4.80,4.80,0 -28.80,4.80,8.74,0.00,1.00,4.80,4.80,0 -33.60,4.80,8.70,0.00,1.00,4.80,4.80,0 -38.40,4.80,8.66,0.00,1.00,4.80,4.80,0 -43.20,4.80,8.62,0.00,1.00,9.60,4.80,0 -48.00,4.80,8.58,0.00,1.00,9.60,9.60,0 -52.80,4.80,8.54,0.00,1.00,9.60,9.60,0 -57.60,4.80,8.50,0.00,1.00,14.40,9.60,0 -62.40,9.60,8.46,0.00,1.00,14.40,9.60,0 -67.20,9.60,8.42,0.00,1.00,19.20,9.60,0 -72.00,9.60,8.38,0.00,1.00,24.00,9.60,0 -76.80,9.60,8.34,0.00,1.00,33.60,9.60,0 -81.60,9.60,8.30,0.00,1.00,43.20,9.60,0 -86.40,9.60,8.26,0.00,1.00,67.20,9.60,0 -91.20,9.60,8.22,0.00,1.00,96.00,9.60,0 -96.00,9.60,8.18,0.00,1.00,124.80,9.60,0 -100.80,9.60,8.14,0.00,1.00,144.00,9.60,0 -105.60,9.60,8.10,0.00,1.00,153.60,9.60,0 -110.40,9.60,8.06,0.00,1.00,158.40,9.60,0 -115.20,9.60,8.02,0.00,1.00,163.20,9.60,0 -120.00,9.60,7.98,0.00,1.00,168.00,9.60,0 -124.80,4.80,7.94,0.00,1.00,168.00,9.60,0 -129.60,4.80,7.90,0.00,1.00,168.00,4.80,0 -134.40,4.80,7.86,0.00,1.00,172.80,4.80,0 -139.20,4.80,7.82,0.00,1.00,172.80,4.80,0 -144.00,4.80,7.78,0.00,1.00,172.80,4.80,0 -148.80,4.80,7.74,0.00,1.00,172.80,4.80,0 -153.60,4.80,7.70,0.00,1.00,177.60,4.80,0 -158.40,4.80,7.66,0.00,1.00,177.60,4.80,0 -163.20,4.80,7.62,0.00,1.00,177.60,0.00,0 -168.00,0.00,7.58,0.00,1.00,177.60,0.00,0 -172.80,0.00,7.54,0.00,1.00,177.60,0.00,0 -177.60,0.00,7.50,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,7.46,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,7.42,0.00,1.00,-177.60,-0.00,0 --168.00,-0.00,7.38,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,7.34,0.00,1.00,-177.60,-4.80,0 --158.40,-4.80,7.30,0.00,1.00,-177.60,-4.80,0 --153.60,-4.80,7.26,0.00,1.00,-177.60,-4.80,0 --148.80,-4.80,7.22,0.00,1.00,-172.80,-4.80,0 --144.00,-4.80,7.18,0.00,1.00,-172.80,-4.80,0 --139.20,-4.80,7.14,0.00,1.00,-172.80,-4.80,0 --134.40,-4.80,7.10,0.00,1.00,-172.80,-9.60,0 --129.60,-4.80,7.06,0.00,1.00,-168.00,-9.60,0 --124.80,-4.80,7.02,0.00,1.00,-168.00,-9.60,0 --120.00,-9.60,6.98,0.00,1.00,-168.00,-9.60,0 --115.20,-9.60,6.94,0.00,1.00,-163.20,-9.60,0 --110.40,-9.60,6.90,0.00,1.00,-158.40,-9.60,0 --105.60,-9.60,6.86,0.00,1.00,-153.60,-9.60,0 --100.80,-9.60,6.82,0.00,1.00,-144.00,-9.60,0 --96.00,-9.60,6.78,0.00,1.00,-124.80,-9.60,0 --91.20,-9.60,6.74,0.00,1.00,-96.00,-9.60,0 --86.40,-9.60,6.70,0.00,1.00,-67.20,-9.60,0 --81.60,-9.60,6.66,0.00,1.00,-43.20,-9.60,0 --76.80,-9.60,6.62,0.00,1.00,-33.60,-9.60,0 --72.00,-9.60,6.58,0.00,1.00,-24.00,-9.60,0 --67.20,-9.60,6.54,0.00,1.00,-19.20,-9.60,0 --62.40,-9.60,6.50,0.00,1.00,-14.40,-9.60,0 --57.60,-4.80,6.46,0.00,1.00,-14.40,-9.60,0 --52.80,-4.80,6.42,0.00,1.00,-9.60,-4.80,0 --48.00,-4.80,6.38,0.00,1.00,-9.60,-4.80,0 --43.20,-4.80,6.34,0.00,1.00,-9.60,-4.80,0 --38.40,-4.80,6.30,0.00,1.00,-4.80,-4.80,0 --33.60,-4.80,6.26,0.00,1.00,-4.80,-4.80,0 --28.80,-4.80,6.22,0.00,1.00,-4.80,-4.80,0 --24.00,-4.80,6.18,0.00,1.00,-4.80,-4.80,0 --19.20,-4.80,6.14,0.00,1.00,-4.80,-0.00,0 --14.40,-0.00,6.10,0.00,1.00,-0.00,-0.00,0 --9.60,-0.00,6.06,0.00,1.00,-0.00,-0.00,0 --4.80,-0.00,6.02,0.00,1.00,-0.00,0.00,0 -0.00,0.00,5.97,0.00,1.00,0.00,0.00,0 -4.80,0.00,5.93,0.00,1.00,0.00,0.00,0 -9.60,0.00,5.89,0.00,1.00,0.00,0.00,0 -14.40,0.00,5.85,0.00,1.00,0.00,0.00,0 -19.20,0.00,5.81,0.00,1.00,0.00,0.00,0 -24.00,0.00,5.77,0.00,1.00,0.00,0.00,0 -28.80,0.00,5.73,0.00,1.00,0.00,4.80,0 -33.60,0.00,5.69,0.00,1.00,0.00,4.80,0 -38.40,0.00,5.65,0.00,1.00,4.80,4.80,0 -43.20,4.80,5.61,0.00,1.00,4.80,4.80,0 -48.00,4.80,5.57,0.00,1.00,4.80,4.80,0 -52.80,4.80,5.53,0.00,1.00,4.80,4.80,0 -57.60,4.80,5.49,0.00,1.00,4.80,4.80,0 -62.40,4.80,5.45,0.00,1.00,4.80,4.80,0 -67.20,4.80,5.41,0.00,1.00,9.60,4.80,0 -72.00,4.80,5.37,0.00,1.00,9.60,4.80,0 -76.80,4.80,5.33,0.00,1.00,14.40,4.80,0 -81.60,4.80,5.29,0.00,1.00,24.00,4.80,0 -86.40,4.80,5.25,0.00,1.00,43.20,4.80,0 -91.20,4.80,5.21,0.00,1.00,110.40,4.80,0 -96.00,4.80,5.17,0.00,1.00,148.80,4.80,0 -100.80,4.80,5.13,0.00,1.00,163.20,4.80,0 -105.60,4.80,5.09,0.00,1.00,168.00,4.80,0 -110.40,4.80,5.05,0.00,1.00,172.80,4.80,0 -115.20,4.80,5.01,0.00,1.00,172.80,4.80,0 -120.00,4.80,4.97,0.00,1.00,172.80,4.80,0 -124.80,4.80,4.93,0.00,1.00,172.80,4.80,0 -129.60,4.80,4.89,0.00,1.00,177.60,4.80,0 -134.40,4.80,4.85,0.00,1.00,177.60,4.80,0 -139.20,0.00,4.81,0.00,1.00,177.60,4.80,0 -144.00,0.00,4.77,0.00,1.00,177.60,4.80,0 -148.80,0.00,4.73,0.00,1.00,177.60,0.00,0 -153.60,0.00,4.69,0.00,1.00,177.60,0.00,0 -158.40,0.00,4.65,0.00,1.00,177.60,0.00,0 -163.20,0.00,4.61,0.00,1.00,177.60,0.00,0 -168.00,0.00,4.57,0.00,1.00,177.60,0.00,0 -172.80,0.00,4.53,0.00,1.00,177.60,0.00,0 -177.60,0.00,4.49,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,4.45,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,4.41,0.00,1.00,-177.60,-0.00,0 --168.00,-0.00,4.37,0.00,1.00,-177.60,-0.00,0 --163.20,-0.00,4.33,0.00,1.00,-177.60,-0.00,0 --158.40,-0.00,4.29,0.00,1.00,-177.60,-0.00,0 --153.60,-0.00,4.25,0.00,1.00,-177.60,-4.80,0 --148.80,-0.00,4.21,0.00,1.00,-177.60,-4.80,0 --144.00,-0.00,4.17,0.00,1.00,-177.60,-4.80,0 --139.20,-0.00,4.13,0.00,1.00,-177.60,-4.80,0 --134.40,-4.80,4.09,0.00,1.00,-177.60,-4.80,0 --129.60,-4.80,4.05,0.00,1.00,-177.60,-4.80,0 --124.80,-4.80,4.01,0.00,1.00,-172.80,-4.80,0 --120.00,-4.80,3.97,0.00,1.00,-172.80,-4.80,0 --115.20,-4.80,3.93,0.00,1.00,-172.80,-4.80,0 --110.40,-4.80,3.89,0.00,1.00,-172.80,-4.80,0 --105.60,-4.80,3.85,0.00,1.00,-168.00,-4.80,0 --100.80,-4.80,3.81,0.00,1.00,-163.20,-4.80,0 --96.00,-4.80,3.77,0.00,1.00,-148.80,-4.80,0 --91.20,-4.80,3.73,0.00,1.00,-110.40,-4.80,0 --86.40,-4.80,3.69,0.00,1.00,-43.20,-4.80,0 --81.60,-4.80,3.65,0.00,1.00,-24.00,-4.80,0 --76.80,-4.80,3.61,0.00,1.00,-14.40,-4.80,0 --72.00,-4.80,3.57,0.00,1.00,-9.60,-4.80,0 --67.20,-4.80,3.53,0.00,1.00,-9.60,-4.80,0 --62.40,-4.80,3.49,0.00,1.00,-4.80,-4.80,0 --57.60,-4.80,3.45,0.00,1.00,-4.80,-4.80,0 --52.80,-4.80,3.41,0.00,1.00,-4.80,-4.80,0 --48.00,-4.80,3.37,0.00,1.00,-4.80,-4.80,0 --43.20,-4.80,3.33,0.00,1.00,-4.80,-4.80,0 --38.40,-0.00,3.29,0.00,1.00,-4.80,-4.80,0 --33.60,-0.00,3.25,0.00,1.00,-0.00,-0.00,0 --28.80,-0.00,3.21,0.00,1.00,-0.00,-0.00,0 --24.00,-0.00,3.17,0.00,1.00,-0.00,-0.00,0 --19.20,-0.00,3.13,0.00,1.00,-0.00,-0.00,0 --14.40,-0.00,3.09,0.00,1.00,-0.00,-0.00,0 --9.60,-0.00,3.05,0.00,1.00,-0.00,-0.00,0 --4.80,-0.00,3.01,0.00,1.00,-0.00,0.00,0 -0.00,0.00,2.97,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,2.93,0.00,1.00,-0.00,0.00,0 -9.60,-0.00,2.89,0.00,1.00,-0.00,0.00,0 -14.40,-0.00,2.85,0.00,1.00,-0.00,0.00,0 -19.20,-0.00,2.81,0.00,1.00,-0.00,0.00,0 -24.00,-0.00,2.77,0.00,1.00,-0.00,0.00,0 -28.80,-0.00,2.73,0.00,1.00,-0.00,0.00,0 -33.60,-0.00,2.69,0.00,1.00,-0.00,0.00,0 -38.40,-0.00,2.65,0.00,1.00,-0.00,0.00,0 -43.20,-0.00,2.61,0.00,1.00,-0.00,0.00,0 -48.00,-0.00,2.57,0.00,1.00,-0.00,0.00,0 -52.80,-0.00,2.53,0.00,1.00,-0.00,0.00,0 -57.60,-0.00,2.49,0.00,1.00,-0.00,0.00,0 -62.40,-0.00,2.45,0.00,1.00,-0.00,0.00,0 -67.20,-0.00,2.41,0.00,1.00,-4.80,0.00,0 -72.00,-0.00,2.37,0.00,1.00,-4.80,0.00,0 -76.80,-0.00,2.33,0.00,1.00,-4.80,0.00,0 -81.60,-0.00,2.29,0.00,1.00,-9.60,0.00,0 -86.40,-0.00,2.25,0.00,1.00,-19.20,0.00,0 -91.20,-0.00,2.21,0.00,1.00,-134.40,0.00,0 -96.00,-0.00,2.17,0.00,1.00,-168.00,0.00,0 -100.80,-0.00,2.13,0.00,1.00,-172.80,0.00,0 -105.60,-0.00,2.09,0.00,1.00,-177.60,0.00,0 -110.40,-0.00,2.05,0.00,1.00,-177.60,0.00,0 -115.20,-0.00,2.01,0.00,1.00,-177.60,0.00,0 -120.00,-0.00,1.96,0.00,1.00,-177.60,0.00,0 -124.80,-0.00,1.92,0.00,1.00,-177.60,0.00,0 -129.60,-0.00,1.88,0.00,1.00,-177.60,0.00,0 -134.40,-0.00,1.84,0.00,1.00,-177.60,0.00,0 -139.20,-0.00,1.80,0.00,1.00,-177.60,0.00,0 -144.00,-0.00,1.76,0.00,1.00,-177.60,0.00,0 -148.80,-0.00,1.72,0.00,1.00,-177.60,0.00,0 -153.60,-0.00,1.68,0.00,1.00,-177.60,0.00,0 -158.40,-0.00,1.64,0.00,1.00,-177.60,0.00,0 -163.20,-0.00,1.60,0.00,1.00,-177.60,0.00,0 -168.00,-0.00,1.56,0.00,1.00,-177.60,0.00,0 -172.80,-0.00,1.52,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,1.48,0.00,1.00,-177.60,0.00,0 --177.60,0.00,1.44,0.00,1.00,177.60,0.00,0 --172.80,0.00,1.40,0.00,1.00,177.60,0.00,0 --168.00,0.00,1.36,0.00,1.00,177.60,0.00,0 --163.20,0.00,1.32,0.00,1.00,177.60,0.00,0 --158.40,0.00,1.28,0.00,1.00,177.60,0.00,0 --153.60,0.00,1.24,0.00,1.00,177.60,0.00,0 --148.80,0.00,1.20,0.00,1.00,177.60,0.00,0 --144.00,0.00,1.16,0.00,1.00,177.60,0.00,0 --139.20,0.00,1.12,0.00,1.00,177.60,0.00,0 --134.40,0.00,1.08,0.00,1.00,177.60,0.00,0 --129.60,0.00,1.04,0.00,1.00,177.60,0.00,0 --124.80,0.00,1.00,0.00,1.00,177.60,0.00,0 --120.00,0.00,0.96,0.00,1.00,177.60,0.00,0 --115.20,0.00,0.92,0.00,1.00,177.60,0.00,0 --110.40,0.00,0.88,0.00,1.00,177.60,0.00,0 --105.60,0.00,0.84,0.00,1.00,177.60,0.00,0 --100.80,0.00,0.80,0.00,1.00,172.80,0.00,0 --96.00,0.00,0.76,0.00,1.00,168.00,0.00,0 --91.20,0.00,0.72,0.00,1.00,134.40,0.00,0 --86.40,0.00,0.68,0.00,1.00,19.20,0.00,0 --81.60,0.00,0.64,0.00,1.00,9.60,0.00,0 --76.80,0.00,0.60,0.00,1.00,4.80,0.00,0 --72.00,0.00,0.56,0.00,1.00,4.80,0.00,0 --67.20,0.00,0.52,0.00,1.00,4.80,0.00,0 --62.40,0.00,0.48,0.00,1.00,0.00,0.00,0 --57.60,0.00,0.44,0.00,1.00,0.00,0.00,0 --52.80,0.00,0.40,0.00,1.00,0.00,0.00,0 --48.00,0.00,0.36,0.00,1.00,0.00,0.00,0 --43.20,0.00,0.32,0.00,1.00,0.00,0.00,0 --38.40,0.00,0.28,0.00,1.00,0.00,0.00,0 --33.60,0.00,0.24,0.00,1.00,0.00,0.00,0 --28.80,0.00,0.20,0.00,1.00,0.00,0.00,0 --24.00,0.00,0.16,0.00,1.00,0.00,0.00,0 --19.20,0.00,0.12,0.00,1.00,0.00,0.00,0 --14.40,0.00,0.08,0.00,1.00,0.00,0.00,0 --9.60,0.00,0.04,0.00,1.00,0.00,0.00,0 --4.80,0.00,0.00,0.00,1.00,0.00,0.00,0 diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC16c.met b/scripts/testv/stvOMASA_4ISM_2MASA2TC16c.met deleted file mode 100644 index 1b62022af572fc4f198e4212cca88d51913ec3c4..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_2MASA2TC16c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2eb412d646d7a32c77413dea54dc44cf45dc49e6d8c2de19abe4f4b93a91fa4a -size 159900 diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC16c.wav b/scripts/testv/stvOMASA_4ISM_2MASA2TC16c.wav deleted file mode 100644 index 02f2d705c14b801c161797b33e94bddc06d4bdad..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_2MASA2TC16c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:440df9d8e2c9a5a6849cd50d66316b6c6663096cea66c561b2dd59bf7a6f75c3 -size 576080 diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC16c_ISM1.csv b/scripts/testv/stvOMASA_4ISM_2MASA2TC16c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_2MASA2TC16c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC16c_ISM2.csv b/scripts/testv/stvOMASA_4ISM_2MASA2TC16c_ISM2.csv deleted file mode 100644 index f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_2MASA2TC16c_ISM2.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,4.80,16.00,0.00,1.00,0.00,0.00,0 -0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0 -0.00,14.40,15.96,0.00,1.00,4.80,9.60,0 -0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0 -0.00,24.00,15.91,0.00,1.00,14.40,19.20,0 -0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0 -0.00,33.60,15.87,0.00,1.00,19.20,28.80,0 -0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0 -0.00,43.20,15.83,0.00,1.00,28.80,38.40,0 -0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0 -0.00,52.80,15.79,0.00,1.00,38.40,48.00,0 -0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0 -0.00,62.40,15.74,0.00,1.00,48.00,57.60,0 -4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0 -4.80,72.00,15.70,0.00,1.00,57.60,67.20,0 -4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0 -9.60,81.60,15.66,0.00,1.00,72.00,76.80,0 -19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0 -134.40,86.40,15.62,0.00,1.00,86.40,86.40,0 -168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0 -172.80,76.80,15.57,0.00,1.00,100.80,86.40,0 -177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0 -177.60,67.20,15.53,0.00,1.00,110.40,76.80,0 -177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0 -177.60,57.60,15.49,0.00,1.00,124.80,67.20,0 -177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0 -177.60,48.00,15.44,0.00,1.00,134.40,57.60,0 -177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0 -177.60,38.40,15.40,0.00,1.00,144.00,48.00,0 -177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0 -177.60,28.80,15.36,0.00,1.00,153.60,38.40,0 -177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0 -177.60,19.20,15.32,0.00,1.00,158.40,28.80,0 -177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0 -177.60,9.60,15.27,0.00,1.00,168.00,19.20,0 -177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0 -177.60,0.00,15.23,0.00,1.00,172.80,9.60,0 --177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0 --177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0 --177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0 --177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0 --177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0 --177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0 --177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0 --177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0 --177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0 --177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0 --177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0 --177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0 --177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0 --177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0 --177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0 --177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0 --172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0 --168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0 --134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0 --19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0 --9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0 --4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0 --4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0 --4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0 --0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0 --0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0 --0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0 --0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0 --0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0 --0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0 --0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0 --0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0 --0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0 --0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0 --0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0 --0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0 --0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0 --0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,14.40,0.00,1.00,0.00,0.00,0 --0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0 --0.00,14.40,14.36,0.00,1.00,9.60,9.60,0 --0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0 --0.00,24.00,14.31,0.00,1.00,14.40,19.20,0 --0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0 --0.00,33.60,14.27,0.00,1.00,24.00,28.80,0 --4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0 --4.80,43.20,14.23,0.00,1.00,28.80,38.40,0 --4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0 --4.80,52.80,14.18,0.00,1.00,38.40,48.00,0 --4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0 --4.80,62.40,14.14,0.00,1.00,48.00,57.60,0 --9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0 --9.60,72.00,14.10,0.00,1.00,62.40,67.20,0 --14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0 --24.00,81.60,14.06,0.00,1.00,72.00,76.80,0 --43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0 --110.40,86.40,14.01,0.00,1.00,86.40,86.40,0 --148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0 --163.20,76.80,13.97,0.00,1.00,96.00,81.60,0 --168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0 --172.80,67.20,13.93,0.00,1.00,110.40,72.00,0 --172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0 --172.80,57.60,13.89,0.00,1.00,120.00,62.40,0 --172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0 --177.60,48.00,13.84,0.00,1.00,134.40,52.80,0 --177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0 --177.60,38.40,13.80,0.00,1.00,144.00,43.20,0 --177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0 --177.60,28.80,13.76,0.00,1.00,148.80,33.60,0 --177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0 --177.60,19.20,13.71,0.00,1.00,158.40,24.00,0 --177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0 --177.60,9.60,13.67,0.00,1.00,168.00,14.40,0 --177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0 --177.60,0.00,13.63,0.00,1.00,172.80,4.80,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0 -177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0 -177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0 -177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0 -177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0 -177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0 -177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0 -172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0 -172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0 -172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0 -172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0 -168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0 -163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0 -148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0 -110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0 -43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0 -24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0 -14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0 -9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0 -9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0 -4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0 -4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0 -4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0 -4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0 -4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0 -0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0 -0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0 -0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0 -0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0 -0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,12.80,0.00,1.00,0.00,0.00,0 --0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0 --0.00,14.40,12.75,0.00,1.00,9.60,9.60,0 --4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0 --4.80,24.00,12.71,0.00,1.00,14.40,19.20,0 --4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0 --4.80,33.60,12.67,0.00,1.00,24.00,28.80,0 --4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0 --9.60,43.20,12.62,0.00,1.00,33.60,38.40,0 --9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0 --9.60,52.80,12.58,0.00,1.00,43.20,48.00,0 --14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0 --14.40,62.40,12.54,0.00,1.00,52.80,57.60,0 --19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0 --24.00,72.00,12.50,0.00,1.00,62.40,67.20,0 --33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0 --43.20,76.80,12.45,0.00,1.00,72.00,72.00,0 --67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0 --96.00,81.60,12.41,0.00,1.00,86.40,81.60,0 --124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0 --144.00,76.80,12.37,0.00,1.00,96.00,76.80,0 --153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0 --158.40,67.20,12.33,0.00,1.00,110.40,72.00,0 --163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0 --168.00,57.60,12.28,0.00,1.00,120.00,62.40,0 --168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0 --168.00,48.00,12.24,0.00,1.00,129.60,52.80,0 --172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0 --172.80,38.40,12.20,0.00,1.00,139.20,43.20,0 --172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0 --172.80,28.80,12.15,0.00,1.00,148.80,33.60,0 --177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0 --177.60,19.20,12.11,0.00,1.00,158.40,24.00,0 --177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0 --177.60,9.60,12.07,0.00,1.00,168.00,14.40,0 --177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0 --177.60,0.00,12.03,0.00,1.00,172.80,4.80,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0 -177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0 -172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0 -172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0 -168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0 -168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0 -168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0 -163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0 -158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0 -153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0 -144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0 -124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0 -96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0 -67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0 -43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0 -33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0 -24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0 -19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0 -14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0 -14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0 -9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0 -9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0 -9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0 -4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0 -4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0 -0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,11.19,0.00,1.00,0.00,0.00,0 --0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0 --4.80,14.40,11.15,0.00,1.00,9.60,9.60,0 --4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0 --4.80,24.00,11.11,0.00,1.00,14.40,19.20,0 --4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0 --9.60,33.60,11.07,0.00,1.00,24.00,28.80,0 --9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0 --14.40,43.20,11.02,0.00,1.00,33.60,38.40,0 --14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0 --14.40,52.80,10.98,0.00,1.00,43.20,48.00,0 --19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0 --24.00,57.60,10.94,0.00,1.00,52.80,52.80,0 --28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0 --33.60,67.20,10.89,0.00,1.00,62.40,62.40,0 --43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0 --57.60,72.00,10.85,0.00,1.00,76.80,72.00,0 --76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0 --96.00,76.80,10.81,0.00,1.00,86.40,76.80,0 --115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0 --129.60,72.00,10.77,0.00,1.00,96.00,76.80,0 --139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0 --148.80,67.20,10.72,0.00,1.00,105.60,67.20,0 --153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0 --158.40,57.60,10.68,0.00,1.00,120.00,62.40,0 --163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0 --163.20,48.00,10.64,0.00,1.00,129.60,52.80,0 --168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0 --168.00,38.40,10.60,0.00,1.00,139.20,43.20,0 --172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0 --172.80,28.80,10.55,0.00,1.00,148.80,33.60,0 --172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0 --172.80,19.20,10.51,0.00,1.00,158.40,24.00,0 --177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0 --177.60,9.60,10.47,0.00,1.00,163.20,14.40,0 --177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0 --177.60,0.00,10.42,0.00,1.00,172.80,4.80,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0 -168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0 -168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0 -163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0 -163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0 -158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0 -153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0 -148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0 -139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0 -129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0 -115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0 -96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0 -76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0 -57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0 -43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0 -33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0 -28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0 -24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0 -19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0 -14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0 -14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0 -14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0 -9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0 -9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0 -4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0 -4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0 -0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,9.59,0.00,1.00,0.00,0.00,0 --4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0 --4.80,14.40,9.55,0.00,1.00,9.60,9.60,0 --4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0 --9.60,24.00,9.51,0.00,1.00,19.20,19.20,0 --9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0 --9.60,33.60,9.46,0.00,1.00,24.00,28.80,0 --14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0 --14.40,38.40,9.42,0.00,1.00,33.60,33.60,0 --19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0 --24.00,48.00,9.38,0.00,1.00,43.20,43.20,0 --24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0 --28.80,57.60,9.34,0.00,1.00,52.80,52.80,0 --38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0 --43.20,62.40,9.29,0.00,1.00,67.20,62.40,0 --52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0 --62.40,72.00,9.25,0.00,1.00,76.80,67.20,0 --76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0 --96.00,72.00,9.21,0.00,1.00,86.40,72.00,0 --110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0 --120.00,67.20,9.16,0.00,1.00,96.00,72.00,0 --134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0 --139.20,62.40,9.12,0.00,1.00,105.60,67.20,0 --148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0 --153.60,57.60,9.08,0.00,1.00,115.20,57.60,0 --158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0 --158.40,48.00,9.04,0.00,1.00,129.60,52.80,0 --163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0 --163.20,38.40,8.99,0.00,1.00,139.20,43.20,0 --168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0 --168.00,28.80,8.95,0.00,1.00,148.80,33.60,0 --172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0 --172.80,19.20,8.91,0.00,1.00,153.60,24.00,0 --172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0 --177.60,9.60,8.87,0.00,1.00,163.20,14.40,0 --177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0 --177.60,0.00,8.82,0.00,1.00,172.80,4.80,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0 -168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0 -163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0 -163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0 -158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0 -158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0 -153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0 -148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0 -139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0 -134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0 -120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0 -110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0 -96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0 -76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0 -62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0 -52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0 -43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0 -38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0 -28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0 -24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0 -24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0 -19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0 -14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0 -14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0 -9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0 -9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0 -9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0 -0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,7.99,0.00,1.00,0.00,0.00,0 --4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0 --4.80,14.40,7.95,0.00,1.00,9.60,9.60,0 --9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0 --9.60,24.00,7.90,0.00,1.00,19.20,19.20,0 --14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0 --14.40,28.80,7.86,0.00,1.00,28.80,24.00,0 --19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0 --19.20,38.40,7.82,0.00,1.00,38.40,33.60,0 --24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0 --28.80,48.00,7.78,0.00,1.00,48.00,43.20,0 --33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0 --38.40,52.80,7.73,0.00,1.00,57.60,52.80,0 --43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0 --48.00,62.40,7.69,0.00,1.00,67.20,57.60,0 --57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0 --67.20,67.20,7.65,0.00,1.00,76.80,62.40,0 --81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0 --91.20,67.20,7.60,0.00,1.00,86.40,67.20,0 --105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0 --115.20,67.20,7.56,0.00,1.00,96.00,67.20,0 --124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0 --134.40,57.60,7.52,0.00,1.00,105.60,62.40,0 --139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0 --144.00,52.80,7.48,0.00,1.00,115.20,57.60,0 --148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0 --153.60,43.20,7.43,0.00,1.00,124.80,48.00,0 --158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0 --163.20,38.40,7.39,0.00,1.00,134.40,38.40,0 --163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0 --168.00,28.80,7.35,0.00,1.00,144.00,33.60,0 --168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0 --172.80,19.20,7.31,0.00,1.00,153.60,24.00,0 --172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0 --177.60,9.60,7.26,0.00,1.00,163.20,14.40,0 --177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0 --177.60,0.00,7.22,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0 -163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0 -158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0 -153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0 -148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0 -144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0 -139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0 -134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0 -124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0 -115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0 -105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0 -91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0 -81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0 -67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0 -57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0 -48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0 -43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0 -38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0 -33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0 -28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0 -24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0 -19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0 -19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0 -14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0 -9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0 -0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,6.39,0.00,1.00,0.00,0.00,0 --4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0 --4.80,14.40,6.34,0.00,1.00,9.60,9.60,0 --9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0 --9.60,19.20,6.30,0.00,1.00,19.20,14.40,0 --14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0 --19.20,28.80,6.26,0.00,1.00,28.80,24.00,0 --19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0 --24.00,38.40,6.22,0.00,1.00,38.40,33.60,0 --28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0 --33.60,43.20,6.17,0.00,1.00,48.00,38.40,0 --38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0 --43.20,52.80,6.13,0.00,1.00,57.60,48.00,0 --48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0 --52.80,57.60,6.09,0.00,1.00,67.20,52.80,0 --62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0 --72.00,62.40,6.05,0.00,1.00,76.80,57.60,0 --81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0 --91.20,62.40,6.00,0.00,1.00,86.40,62.40,0 --100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0 --110.40,62.40,5.96,0.00,1.00,96.00,62.40,0 --120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0 --129.60,57.60,5.92,0.00,1.00,105.60,57.60,0 --134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0 --139.20,48.00,5.87,0.00,1.00,115.20,52.80,0 --144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0 --148.80,43.20,5.83,0.00,1.00,124.80,48.00,0 --153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0 --158.40,33.60,5.79,0.00,1.00,134.40,38.40,0 --163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0 --163.20,28.80,5.75,0.00,1.00,144.00,28.80,0 --168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0 --168.00,19.20,5.70,0.00,1.00,153.60,24.00,0 --172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0 --172.80,9.60,5.66,0.00,1.00,163.20,14.40,0 --177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0 --177.60,0.00,5.62,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0 -163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0 -158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0 -148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0 -144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0 -139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0 -134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0 -129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0 -120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0 -110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0 -100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0 -91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0 -81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0 -72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0 -62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0 -52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0 -48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0 -43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0 -38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0 -33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0 -28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0 -24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0 -19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0 -19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0 -9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0 -4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0 -0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,4.79,0.00,1.00,0.00,0.00,0 --4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0 --9.60,14.40,4.74,0.00,1.00,9.60,9.60,0 --9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0 --14.40,19.20,4.70,0.00,1.00,19.20,14.40,0 --14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0 --19.20,28.80,4.66,0.00,1.00,28.80,24.00,0 --24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0 --28.80,33.60,4.61,0.00,1.00,38.40,28.80,0 --28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0 --33.60,43.20,4.57,0.00,1.00,48.00,38.40,0 --38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0 --48.00,48.00,4.53,0.00,1.00,57.60,43.20,0 --52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0 --57.60,52.80,4.49,0.00,1.00,67.20,48.00,0 --67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0 --76.80,57.60,4.44,0.00,1.00,76.80,52.80,0 --81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0 --91.20,57.60,4.40,0.00,1.00,86.40,57.60,0 --100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0 --110.40,57.60,4.36,0.00,1.00,96.00,57.60,0 --115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0 --124.80,52.80,4.32,0.00,1.00,105.60,52.80,0 --129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0 --139.20,48.00,4.27,0.00,1.00,115.20,48.00,0 --144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0 --148.80,38.40,4.23,0.00,1.00,124.80,43.20,0 --153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0 --153.60,33.60,4.19,0.00,1.00,134.40,38.40,0 --158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0 --163.20,24.00,4.14,0.00,1.00,144.00,28.80,0 --163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0 --168.00,19.20,4.10,0.00,1.00,153.60,24.00,0 --172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0 --172.80,9.60,4.06,0.00,1.00,163.20,14.40,0 --177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0 --177.60,0.00,4.02,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0 -163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0 -163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0 -158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0 -148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0 -144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0 -139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0 -129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0 -124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0 -115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0 -110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0 -100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0 -91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0 -81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0 -76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0 -67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0 -57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0 -52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0 -48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0 -38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0 -33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0 -28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0 -28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0 -24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0 -19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0 -14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0 -14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0 -9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0 -0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.18,0.00,1.00,0.00,0.00,0 --4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0 --9.60,9.60,3.14,0.00,1.00,9.60,9.60,0 --9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0 --14.40,19.20,3.10,0.00,1.00,19.20,14.40,0 --19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0 --24.00,24.00,3.05,0.00,1.00,28.80,24.00,0 --24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0 --28.80,33.60,3.01,0.00,1.00,38.40,28.80,0 --33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0 --38.40,38.40,2.97,0.00,1.00,48.00,33.60,0 --43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0 --48.00,43.20,2.93,0.00,1.00,57.60,43.20,0 --52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0 --62.40,48.00,2.88,0.00,1.00,67.20,48.00,0 --67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0 --76.80,52.80,2.84,0.00,1.00,76.80,48.00,0 --86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0 --91.20,52.80,2.80,0.00,1.00,86.40,52.80,0 --100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0 --105.60,52.80,2.76,0.00,1.00,96.00,52.80,0 --115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0 --120.00,48.00,2.71,0.00,1.00,105.60,48.00,0 --129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0 --134.40,43.20,2.67,0.00,1.00,115.20,43.20,0 --139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0 --144.00,38.40,2.63,0.00,1.00,124.80,38.40,0 --148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0 --153.60,33.60,2.58,0.00,1.00,134.40,33.60,0 --158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0 --158.40,24.00,2.54,0.00,1.00,144.00,28.80,0 --163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0 --168.00,19.20,2.50,0.00,1.00,153.60,19.20,0 --168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.46,0.00,1.00,163.20,14.40,0 --177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.41,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0 -158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0 -148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0 -144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0 -139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0 -134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0 -129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0 -120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0 -115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0 -105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0 -100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0 -91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0 -86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0 -76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0 -67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0 -62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0 -52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0 -48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0 -43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0 -38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0 -33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0 -28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0 -24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0 -24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0 -19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0 -0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.58,0.00,1.00,0.00,0.00,0 --4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.54,0.00,1.00,9.60,4.80,0 --14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0 --14.40,19.20,1.50,0.00,1.00,19.20,14.40,0 --19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0 --24.00,24.00,1.45,0.00,1.00,28.80,19.20,0 --28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0 --33.60,28.80,1.41,0.00,1.00,38.40,28.80,0 --38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0 --43.20,38.40,1.37,0.00,1.00,48.00,33.60,0 --48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0 --52.80,43.20,1.32,0.00,1.00,57.60,38.40,0 --57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0 --62.40,43.20,1.28,0.00,1.00,67.20,43.20,0 --72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0 --76.80,48.00,1.24,0.00,1.00,76.80,43.20,0 --86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0 --91.20,48.00,1.20,0.00,1.00,86.40,48.00,0 --100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0 --105.60,48.00,1.15,0.00,1.00,96.00,48.00,0 --110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0 --120.00,43.20,1.11,0.00,1.00,105.60,43.20,0 --124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0 --129.60,38.40,1.07,0.00,1.00,115.20,43.20,0 --134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0 --139.20,33.60,1.03,0.00,1.00,124.80,38.40,0 --144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0 --148.80,28.80,0.98,0.00,1.00,134.40,33.60,0 --153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0 --158.40,24.00,0.94,0.00,1.00,144.00,24.00,0 --163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0 --163.20,14.40,0.90,0.00,1.00,153.60,19.20,0 --168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.85,0.00,1.00,163.20,14.40,0 --172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.81,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0 -148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0 -144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0 -139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0 -134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0 -129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0 -124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0 -120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0 -110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0 -105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0 -100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0 -91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0 -86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0 -76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0 -72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0 -62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0 -57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0 -52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0 -48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0 -43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0 -38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0 -28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0 -19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0 -0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,0.00,0.00,1.00,0.00,0.00,0 --4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0 --9.60,9.60,0.04,0.00,1.00,9.60,4.80,0 --14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0 --19.20,14.40,0.09,0.00,1.00,19.20,14.40,0 --24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0 --24.00,24.00,0.13,0.00,1.00,28.80,19.20,0 --28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0 --33.60,28.80,0.17,0.00,1.00,38.40,24.00,0 --38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0 --43.20,33.60,0.21,0.00,1.00,48.00,28.80,0 --48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0 --52.80,38.40,0.26,0.00,1.00,57.60,33.60,0 --62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0 --67.20,38.40,0.30,0.00,1.00,67.20,38.40,0 --72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0 --76.80,43.20,0.34,0.00,1.00,76.80,38.40,0 --86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0 --91.20,43.20,0.38,0.00,1.00,86.40,43.20,0 --96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0 --105.60,43.20,0.43,0.00,1.00,96.00,43.20,0 --110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0 --115.20,38.40,0.47,0.00,1.00,105.60,38.40,0 --124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0 --129.60,38.40,0.51,0.00,1.00,115.20,38.40,0 --134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0 --139.20,33.60,0.56,0.00,1.00,124.80,33.60,0 --144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0 --148.80,28.80,0.60,0.00,1.00,134.40,28.80,0 --153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0 --158.40,19.20,0.64,0.00,1.00,144.00,24.00,0 --158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0 --163.20,14.40,0.68,0.00,1.00,153.60,19.20,0 --168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.73,0.00,1.00,163.20,9.60,0 --172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.77,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0 -158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0 -158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0 -148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0 -144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0 -139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0 -134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0 -129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0 -124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0 -115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0 -110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0 -105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0 -96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0 -91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0 -86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0 -76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0 -72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0 -67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0 -62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0 -52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0 -48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0 -43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0 -38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0 -28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0 -19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0 -0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.60,0.00,1.00,0.00,0.00,0 --9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.64,0.00,1.00,9.60,4.80,0 --14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0 --19.20,14.40,1.69,0.00,1.00,19.20,9.60,0 --24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0 --28.80,19.20,1.73,0.00,1.00,28.80,19.20,0 --33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0 --38.40,24.00,1.77,0.00,1.00,38.40,24.00,0 --43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0 --48.00,28.80,1.82,0.00,1.00,48.00,28.80,0 --52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0 --57.60,33.60,1.86,0.00,1.00,57.60,28.80,0 --62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0 --67.20,38.40,1.90,0.00,1.00,67.20,33.60,0 --72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0 --81.60,38.40,1.94,0.00,1.00,76.80,38.40,0 --86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0 --91.20,38.40,1.99,0.00,1.00,86.40,38.40,0 --96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0 --105.60,38.40,2.03,0.00,1.00,96.00,38.40,0 --110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0 --115.20,33.60,2.07,0.00,1.00,105.60,33.60,0 --120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0 --124.80,33.60,2.11,0.00,1.00,115.20,33.60,0 --129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0 --134.40,28.80,2.16,0.00,1.00,124.80,28.80,0 --139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0 --144.00,24.00,2.20,0.00,1.00,134.40,24.00,0 --148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0 --153.60,19.20,2.24,0.00,1.00,144.00,19.20,0 --158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0 --163.20,14.40,2.29,0.00,1.00,153.60,14.40,0 --168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.33,0.00,1.00,163.20,9.60,0 --172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.37,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0 -153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0 -144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0 -134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0 -124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0 -120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0 -115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0 -110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0 -105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0 -96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0 -91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0 -86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0 -81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0 -72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0 -67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0 -62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0 -57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0 -52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0 -48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0 -43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0 -38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0 -33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0 -28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0 -14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.20,0.00,1.00,0.00,0.00,0 --9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0 --14.40,9.60,3.25,0.00,1.00,9.60,4.80,0 --14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0 --19.20,14.40,3.29,0.00,1.00,19.20,9.60,0 --24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0 --28.80,19.20,3.33,0.00,1.00,28.80,14.40,0 --33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0 --38.40,24.00,3.38,0.00,1.00,38.40,19.20,0 --43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0 --48.00,24.00,3.42,0.00,1.00,48.00,24.00,0 --52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0 --57.60,28.80,3.46,0.00,1.00,57.60,28.80,0 --62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0 --67.20,33.60,3.50,0.00,1.00,67.20,28.80,0 --72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0 --81.60,33.60,3.55,0.00,1.00,76.80,33.60,0 --86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0 --91.20,33.60,3.59,0.00,1.00,86.40,33.60,0 --96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0 --100.80,33.60,3.63,0.00,1.00,96.00,33.60,0 --110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0 --115.20,33.60,3.67,0.00,1.00,105.60,28.80,0 --120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0 --124.80,28.80,3.72,0.00,1.00,115.20,28.80,0 --129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0 --134.40,24.00,3.76,0.00,1.00,124.80,24.00,0 --139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0 --144.00,19.20,3.80,0.00,1.00,134.40,24.00,0 --148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0 --153.60,14.40,3.85,0.00,1.00,144.00,19.20,0 --158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0 --163.20,9.60,3.89,0.00,1.00,153.60,14.40,0 --168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0 --168.00,4.80,3.93,0.00,1.00,163.20,9.60,0 --172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0 --177.60,0.00,3.97,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0 -124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0 -120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0 -115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0 -110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0 -100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0 -96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0 -91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0 -86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0 -81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0 -72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0 -67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0 -62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0 -57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0 -52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0 -48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0 -43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0 -38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0 -33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0 -28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0 -24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0 -14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0 -14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0 --4.80,0.00,4.81,0.00,1.00,0.00,0.00,0 --9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0 --14.40,4.80,4.85,0.00,1.00,9.60,4.80,0 --19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0 --19.20,9.60,4.89,0.00,1.00,19.20,9.60,0 --24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0 --28.80,14.40,4.93,0.00,1.00,28.80,14.40,0 --33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0 --38.40,19.20,4.98,0.00,1.00,38.40,14.40,0 --43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0 --48.00,24.00,5.02,0.00,1.00,48.00,19.20,0 --52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0 --57.60,24.00,5.06,0.00,1.00,57.60,24.00,0 --62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0 --72.00,28.80,5.11,0.00,1.00,67.20,24.00,0 --76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0 --81.60,28.80,5.15,0.00,1.00,76.80,28.80,0 --86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0 --91.20,28.80,5.19,0.00,1.00,86.40,28.80,0 --96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0 --100.80,28.80,5.23,0.00,1.00,96.00,28.80,0 --105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0 --115.20,28.80,5.28,0.00,1.00,105.60,28.80,0 --120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0 --124.80,24.00,5.32,0.00,1.00,115.20,24.00,0 --129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0 --134.40,24.00,5.36,0.00,1.00,124.80,24.00,0 --139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0 --144.00,19.20,5.40,0.00,1.00,134.40,19.20,0 --148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0 --153.60,14.40,5.45,0.00,1.00,144.00,14.40,0 --158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0 --163.20,9.60,5.49,0.00,1.00,153.60,9.60,0 --163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0 --168.00,4.80,5.53,0.00,1.00,163.20,9.60,0 --172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0 --177.60,0.00,5.58,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0 -163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0 -129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0 -124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0 -120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0 -115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0 -105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0 -100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0 -96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0 -91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0 -86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0 -81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0 -76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0 -72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0 -62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0 -57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0 -52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0 -48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0 -43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0 -38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0 -33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0 -28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0 -24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0 -19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0 -19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0 -0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,6.41,0.00,1.00,0.00,0.00,0 --9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0 --14.40,4.80,6.45,0.00,1.00,9.60,4.80,0 --19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0 --24.00,9.60,6.49,0.00,1.00,19.20,9.60,0 --28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0 --33.60,14.40,6.54,0.00,1.00,28.80,9.60,0 --33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0 --38.40,14.40,6.58,0.00,1.00,38.40,14.40,0 --43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0 --48.00,19.20,6.62,0.00,1.00,48.00,14.40,0 --57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0 --62.40,19.20,6.66,0.00,1.00,57.60,19.20,0 --67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0 --72.00,24.00,6.71,0.00,1.00,67.20,19.20,0 --76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0 --81.60,24.00,6.75,0.00,1.00,76.80,24.00,0 --86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0 --91.20,24.00,6.79,0.00,1.00,86.40,24.00,0 --96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0 --100.80,24.00,6.84,0.00,1.00,96.00,24.00,0 --105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0 --110.40,24.00,6.88,0.00,1.00,105.60,24.00,0 --115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0 --120.00,19.20,6.92,0.00,1.00,115.20,19.20,0 --129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0 --134.40,19.20,6.96,0.00,1.00,124.80,19.20,0 --139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0 --144.00,14.40,7.01,0.00,1.00,134.40,14.40,0 --148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0 --148.80,14.40,7.05,0.00,1.00,144.00,14.40,0 --153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0 --158.40,9.60,7.09,0.00,1.00,153.60,9.60,0 --163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0 --168.00,4.80,7.13,0.00,1.00,163.20,4.80,0 --172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0 --177.60,0.00,7.18,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0 -163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0 -158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0 -148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0 -144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0 -134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0 -129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0 -120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0 -115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0 -110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0 -105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0 -100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0 -96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0 -91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0 -86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0 -81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0 -76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0 -72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0 -67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0 -62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0 -57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0 -48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0 -43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0 -38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0 -33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0 -33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0 -28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0 -24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0 -19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0 -0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,8.01,0.00,1.00,0.00,0.00,0 --9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0 --14.40,4.80,8.05,0.00,1.00,9.60,4.80,0 --19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0 --24.00,9.60,8.10,0.00,1.00,19.20,4.80,0 --28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0 --33.60,9.60,8.14,0.00,1.00,24.00,9.60,0 --38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0 --43.20,14.40,8.18,0.00,1.00,33.60,9.60,0 --48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0 --52.80,14.40,8.22,0.00,1.00,43.20,14.40,0 --57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0 --62.40,19.20,8.27,0.00,1.00,52.80,14.40,0 --67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0 --72.00,19.20,8.31,0.00,1.00,62.40,14.40,0 --76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0 --81.60,19.20,8.35,0.00,1.00,76.80,19.20,0 --86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0 --91.20,19.20,8.40,0.00,1.00,86.40,19.20,0 --96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0 --100.80,19.20,8.44,0.00,1.00,96.00,19.20,0 --105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0 --110.40,19.20,8.48,0.00,1.00,105.60,19.20,0 --115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0 --120.00,14.40,8.52,0.00,1.00,120.00,14.40,0 --124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0 --129.60,14.40,8.57,0.00,1.00,129.60,14.40,0 --134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0 --139.20,14.40,8.61,0.00,1.00,139.20,14.40,0 --144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0 --148.80,9.60,8.65,0.00,1.00,148.80,9.60,0 --153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0 --158.40,4.80,8.69,0.00,1.00,158.40,9.60,0 --163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0 --168.00,4.80,8.74,0.00,1.00,163.20,4.80,0 --172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0 -148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0 -144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0 -139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0 -134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0 -129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0 -124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0 -120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0 -115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0 -110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0 -105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0 -100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0 -96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0 -91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0 -86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0 -81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0 -76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0 -72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0 -67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0 -62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0 -52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0 -48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0 -43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0 -38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0 -33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0 -28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0 -24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0 -19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0 -9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0 -0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,9.61,0.00,1.00,0.00,0.00,0 --9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0 --14.40,4.80,9.66,0.00,1.00,9.60,0.00,0 --19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0 --24.00,4.80,9.70,0.00,1.00,14.40,4.80,0 --28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0 --33.60,9.60,9.74,0.00,1.00,24.00,4.80,0 --38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0 --43.20,9.60,9.78,0.00,1.00,33.60,9.60,0 --48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0 --52.80,9.60,9.83,0.00,1.00,43.20,9.60,0 --57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0 --62.40,14.40,9.87,0.00,1.00,52.80,9.60,0 --67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0 --72.00,14.40,9.91,0.00,1.00,62.40,14.40,0 --76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0 --81.60,14.40,9.95,0.00,1.00,76.80,14.40,0 --86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0 --91.20,14.40,10.00,0.00,1.00,86.40,14.40,0 --96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0 --100.80,14.40,10.04,0.00,1.00,96.00,14.40,0 --105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0 --110.40,14.40,10.08,0.00,1.00,110.40,14.40,0 --115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0 --120.00,14.40,10.13,0.00,1.00,120.00,9.60,0 --124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0 --129.60,9.60,10.17,0.00,1.00,129.60,9.60,0 --134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0 --139.20,9.60,10.21,0.00,1.00,139.20,9.60,0 --144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0 --148.80,9.60,10.25,0.00,1.00,148.80,9.60,0 --153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0 --158.40,4.80,10.30,0.00,1.00,158.40,4.80,0 --163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0 --168.00,4.80,10.34,0.00,1.00,168.00,4.80,0 --172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0 -148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0 -144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0 -139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0 -134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0 -129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0 -124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0 -120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0 -115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0 -110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0 -105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0 -100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0 -96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0 -91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0 -86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0 -81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0 -76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0 -72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0 -67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0 -62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0 -48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0 -43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0 -38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0 -33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0 -28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0 -24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0 -19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0 -14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,11.21,0.00,1.00,0.00,0.00,0 --9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0 --14.40,0.00,11.26,0.00,1.00,9.60,0.00,0 --19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0 --24.00,4.80,11.30,0.00,1.00,14.40,4.80,0 --28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0 --33.60,4.80,11.34,0.00,1.00,24.00,4.80,0 --38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0 --43.20,4.80,11.39,0.00,1.00,33.60,4.80,0 --48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0 --52.80,9.60,11.43,0.00,1.00,43.20,4.80,0 --57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0 --62.40,9.60,11.47,0.00,1.00,52.80,4.80,0 --67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0 --72.00,9.60,11.51,0.00,1.00,62.40,9.60,0 --76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0 --81.60,9.60,11.56,0.00,1.00,72.00,9.60,0 --86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0 --91.20,9.60,11.60,0.00,1.00,86.40,9.60,0 --96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0 --100.80,9.60,11.64,0.00,1.00,96.00,9.60,0 --105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0 --110.40,9.60,11.68,0.00,1.00,110.40,9.60,0 --115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0 --120.00,9.60,11.73,0.00,1.00,120.00,9.60,0 --124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0 --129.60,9.60,11.77,0.00,1.00,129.60,4.80,0 --134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0 --139.20,4.80,11.81,0.00,1.00,139.20,4.80,0 --144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0 --148.80,4.80,11.86,0.00,1.00,148.80,4.80,0 --153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0 --158.40,4.80,11.90,0.00,1.00,158.40,4.80,0 --163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0 --168.00,0.00,11.94,0.00,1.00,168.00,4.80,0 --172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0 -158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0 -148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0 -144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0 -139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0 -134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0 -129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0 -124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0 -120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0 -115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0 -110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0 -105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0 -100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0 -96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0 -91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0 -86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0 -81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0 -76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0 -72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0 -67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0 -62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0 -57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0 -43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0 -33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0 -28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0 -24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0 -19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,12.82,0.00,1.00,0.00,0.00,0 --9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0 --14.40,0.00,12.86,0.00,1.00,9.60,0.00,0 --19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0 --24.00,0.00,12.90,0.00,1.00,14.40,0.00,0 --28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0 --33.60,4.80,12.95,0.00,1.00,24.00,0.00,0 --38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0 --43.20,4.80,12.99,0.00,1.00,28.80,0.00,0 --48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0 --52.80,4.80,13.03,0.00,1.00,38.40,4.80,0 --57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0 --62.40,4.80,13.07,0.00,1.00,48.00,4.80,0 --67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0 --72.00,4.80,13.12,0.00,1.00,62.40,4.80,0 --76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0 --81.60,4.80,13.16,0.00,1.00,72.00,4.80,0 --86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0 --91.20,4.80,13.20,0.00,1.00,86.40,4.80,0 --96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0 --100.80,4.80,13.24,0.00,1.00,96.00,4.80,0 --105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0 --110.40,4.80,13.29,0.00,1.00,110.40,4.80,0 --115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0 --120.00,4.80,13.33,0.00,1.00,120.00,4.80,0 --124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0 --129.60,4.80,13.37,0.00,1.00,134.40,4.80,0 --134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0 --139.20,4.80,13.42,0.00,1.00,144.00,4.80,0 --144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0 --148.80,4.80,13.46,0.00,1.00,153.60,0.00,0 --153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0 --158.40,0.00,13.50,0.00,1.00,158.40,0.00,0 --163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0 --168.00,0.00,13.54,0.00,1.00,168.00,0.00,0 --172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0 -163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0 -158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0 -153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0 -148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0 -144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0 -139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0 -134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0 -129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0 -124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0 -120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0 -115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0 -110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0 -105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0 -100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0 -96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0 -91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0 -86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0 -81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0 -76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0 -72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0 -67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0 -57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0 -52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0 -43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0 -33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0 -28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0 -24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0 -19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0 -14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0 -9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,14.42,0.00,1.00,0.00,0.00,0 --9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0 --14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0 --19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0 --24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0 --28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0 --33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0 --38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0 --43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0 --48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0 --52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0 --57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0 --62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0 --67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0 --72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0 --76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0 --81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0 --86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0 --91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0 --96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0 --100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0 --105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0 --110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0 --115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0 --120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0 --124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0 --129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0 --134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0 --139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0 --144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0 --148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0 --153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0 --158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0 --163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0 --168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0 --172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0 -177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0 -172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0 -168.00,0.00,15.25,0.00,1.00,4.80,0.00,0 -163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0 -158.40,0.00,15.30,0.00,1.00,9.60,0.00,0 -153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0 -148.80,0.00,15.34,0.00,1.00,19.20,0.00,0 -144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0 -139.20,0.00,15.38,0.00,1.00,28.80,0.00,0 -134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0 -129.60,0.00,15.42,0.00,1.00,33.60,0.00,0 -124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0 -120.00,0.00,15.47,0.00,1.00,43.20,0.00,0 -115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0 -110.40,0.00,15.51,0.00,1.00,57.60,0.00,0 -105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0 -100.80,0.00,15.55,0.00,1.00,67.20,0.00,0 -96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0 -91.20,0.00,15.59,0.00,1.00,81.60,0.00,0 -86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0 -81.60,0.00,15.64,0.00,1.00,96.00,0.00,0 -76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0 -72.00,0.00,15.68,0.00,1.00,110.40,0.00,0 -67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0 -62.40,0.00,15.72,0.00,1.00,120.00,0.00,0 -57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0 -52.80,0.00,15.77,0.00,1.00,134.40,0.00,0 -48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0 -43.20,0.00,15.81,0.00,1.00,144.00,0.00,0 -38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0 -33.60,0.00,15.85,0.00,1.00,153.60,0.00,0 -28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0 -24.00,0.00,15.89,0.00,1.00,158.40,0.00,0 -19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0 -14.40,0.00,15.94,0.00,1.00,168.00,0.00,0 -9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0 -4.80,0.00,15.98,0.00,1.00,172.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC16c_ISM3.csv b/scripts/testv/stvOMASA_4ISM_2MASA2TC16c_ISM3.csv deleted file mode 100644 index 14eee9b693b536fa2fd22d2813d7f588b8930b06..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_2MASA2TC16c_ISM3.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0 --177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0 -4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0 --168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0 -14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0 --163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0 -19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0 --153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0 -28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0 --148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0 -38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0 --139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0 -48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0 --124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0 -57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0 --115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0 -72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0 --100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0 -86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0 --86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0 -100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0 --76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0 -110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0 --62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0 -124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0 --52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0 -134.40,33.60,0.28,0.00,1.00,177.60,0.00,0 --38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0 -144.00,28.80,0.30,0.00,1.00,177.60,0.00,0 --33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0 -153.60,24.00,0.32,0.00,1.00,177.60,0.00,0 --24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0 -158.40,19.20,0.34,0.00,1.00,177.60,0.00,0 --14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0 -168.00,9.60,0.36,0.00,1.00,177.60,0.00,0 --9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0 -172.80,4.80,0.38,0.00,1.00,177.60,0.00,0 --0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0 --177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0 -4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0 -14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0 -19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0 --158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0 -28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0 --148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0 -33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0 --139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0 -43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0 --129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0 -57.60,38.40,15.47,0.00,1.00,177.60,0.00,0 --120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0 -67.20,43.20,15.44,0.00,1.00,177.60,0.00,0 --105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0 -81.60,43.20,15.42,0.00,1.00,177.60,0.00,0 --91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0 -96.00,43.20,15.40,0.00,1.00,0.00,0.00,0 --76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0 -110.40,43.20,15.38,0.00,1.00,0.00,0.00,0 --67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0 -120.00,38.40,15.36,0.00,1.00,0.00,0.00,0 --52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0 -129.60,38.40,15.34,0.00,1.00,0.00,0.00,0 --43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0 -144.00,33.60,15.32,0.00,1.00,0.00,0.00,0 --33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0 -148.80,24.00,15.30,0.00,1.00,0.00,0.00,0 --24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0 -158.40,19.20,15.27,0.00,1.00,0.00,0.00,0 --19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0 -168.00,14.40,15.25,0.00,1.00,0.00,0.00,0 --9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0 -172.80,4.80,15.23,0.00,1.00,0.00,0.00,0 --4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0 -0.00,0.00,15.21,0.00,1.00,0.00,0.00,0 --177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0 -9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0 -14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0 --163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0 -24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0 --153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0 -28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0 --144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0 -38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0 --134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0 -48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0 --124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0 -62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0 --115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0 -72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0 --100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0 -86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0 --86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0 -96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0 --76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0 -110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0 --62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0 -120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0 --52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0 -134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0 --43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0 -144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0 --33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0 -148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0 --24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0 -158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0 --19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0 -168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0 --9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0 -172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0 -4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0 -14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0 -19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0 --153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0 -28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0 --148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0 -38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0 --139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0 -48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0 --124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0 -57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0 --115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0 -72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0 --105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0 -81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0 --91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0 -96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0 --76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0 -105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0 --67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0 -120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0 --57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0 -129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0 --43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0 -139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0 --33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0 -148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0 --28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0 -158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0 --19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0 -163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0 --9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0 -172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0 -0.00,0.00,1.60,0.00,1.00,0.00,0.00,0 --177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0 -9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0 -14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0 --158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0 -24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0 --153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0 -33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0 --144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0 -43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0 --134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0 -52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0 --124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0 -62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0 --110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0 -72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0 --100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0 -86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0 --86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0 -96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0 --76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0 -110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0 --67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0 -120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0 --52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0 -129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0 --43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0 -139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0 --33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0 -148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0 --24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0 -158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0 --19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0 -168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0 -172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0 -4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0 -14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0 --163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0 -24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0 --153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0 -28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0 --144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0 -38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0 --134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0 -48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0 --124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0 -62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0 --115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0 -72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0 --100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0 -81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0 --91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0 -96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0 --81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0 -105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0 --67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0 -115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0 --57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0 -129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0 --48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0 -139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0 --38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0 -148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0 --28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0 -153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0 --19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0 -163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0 --9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0 -172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0 -0.00,0.00,13.61,0.00,1.00,0.00,0.00,0 --177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0 -9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0 --168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0 -24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0 --148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0 -33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0 --139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0 -43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0 --129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0 -52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0 --120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0 -62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0 --110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0 -76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0 --100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0 -86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0 --86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0 -96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0 --76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0 -105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0 --67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0 -120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0 --57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0 -129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0 --48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0 -139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0 --38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0 -148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0 -158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0 --19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0 -163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0 -172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0 -4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0 -14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0 --163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0 -24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0 --153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0 -33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0 --144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0 -43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0 --134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0 -52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0 --124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0 -62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0 --115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0 -72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0 --100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0 -81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0 --91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0 -96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0 --81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0 -105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0 --67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0 -115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0 --57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0 -124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0 --48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0 -134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0 --38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0 -144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0 --28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0 -153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0 --19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0 -163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0 --14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0 -172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0 --4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0 -0.00,0.00,3.20,0.00,1.00,0.00,0.00,0 --177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0 -9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0 -19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0 -24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0 --148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0 -33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0 --139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0 -43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0 --129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0 -52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0 --120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0 -67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0 --110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0 -76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0 --100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0 -86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0 --86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0 -96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0 --76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0 -105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0 --67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0 -115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0 --57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0 -129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0 --48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0 -139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0 --38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0 -148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0 -153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0 --19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0 -163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0 -172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0 -4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0 -14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0 -24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0 --153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0 -33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0 --144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0 -43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0 --134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0 -52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0 --124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0 -62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0 --110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0 -72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0 --100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0 -81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0 --91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0 -96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0 --81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0 -105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0 --72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0 -115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0 --57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0 -124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0 --48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0 -134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0 --38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0 -144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0 --28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0 -153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0 --24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0 -163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0 --14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0 -172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -0.00,0.00,12.01,0.00,1.00,0.00,0.00,0 --177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0 -9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0 --158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0 -28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0 --148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0 -38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0 --139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0 -48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0 --129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0 -57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0 --120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0 -67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0 --110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0 -76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0 --100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0 -86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0 --86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0 -96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0 --76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0 -105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0 --67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0 -115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0 --57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0 -124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0 --48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0 -134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0 --38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0 -144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0 --28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0 -153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0 --19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0 -163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0 -172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0 -4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0 -14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0 -24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0 --148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0 -33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0 --139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0 -43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0 --129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0 -52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0 --120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0 -62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0 --110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0 -72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0 --100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0 -81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0 --91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0 -96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0 --81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0 -105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0 --72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0 -115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0 --62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0 -124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0 --52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0 -134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0 --43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0 -144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0 --33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0 -153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0 --24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0 -163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0 -172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0 -0.00,0.00,4.81,0.00,1.00,0.00,0.00,0 --177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0 -9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0 -19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0 -28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0 --148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0 -38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0 --139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0 -48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0 --129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0 -57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0 --120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0 -67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0 --110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0 -76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0 --100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0 -86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0 --86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0 -96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0 --76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0 -105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0 --67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0 -115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0 --57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0 -124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0 --48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0 -134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0 --38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0 -144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0 --28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0 -153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0 --19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0 -163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0 --9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0 -172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0 -4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0 -14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0 -24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0 --148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0 -33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0 --139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0 -43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0 --129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0 -52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0 --120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0 -62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0 --110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0 -72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0 --100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0 -81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0 --91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0 -96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0 --81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0 -105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0 --72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0 -115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0 --62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0 -124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0 --52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0 -134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0 --43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0 -144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0 --33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0 -153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0 --24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0 -163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0 -172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -0.00,0.00,10.40,0.00,1.00,0.00,0.00,0 --177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0 -9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0 -19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0 -28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0 --148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0 -38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0 --139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0 -48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0 --129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0 -57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0 --120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0 -67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0 --110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0 -76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0 --100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0 -86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0 --86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0 -96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0 --76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0 -105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0 --67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0 -115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0 --57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0 -124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0 --48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0 -134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0 --38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0 -144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0 --28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0 -153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0 -163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0 --9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0 -172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0 -4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0 -14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0 -24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0 -33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0 --139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0 -43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0 --129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0 -52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0 --120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0 -62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0 --110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0 -72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0 --100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0 -81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0 --91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0 -96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0 --81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0 -105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0 --72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0 -115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0 --62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0 -124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0 --52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0 -134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0 --43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0 -144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0 --33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0 -153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0 --24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0 -163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0 -172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,6.41,0.00,1.00,0.00,0.00,0 --177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0 -9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0 -19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0 --158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0 -28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0 --148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0 -38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0 --139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0 -48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0 --129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0 -57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0 --120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0 -67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0 --110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0 -76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0 --100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0 -86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0 --86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0 -96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0 --76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0 -105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0 --67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0 -115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0 --57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0 -124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0 --48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0 -134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0 --38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0 -144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0 --28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0 -153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0 -163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0 -172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0 -4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0 -14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0 --158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0 -24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0 -33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0 --139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0 -43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0 --129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0 -52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0 --120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0 -62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0 --110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0 -72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0 --100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0 -81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0 --91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0 -96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0 --81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0 -105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0 --72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0 -115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0 --62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0 -124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0 --52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0 -134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0 --43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0 -144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0 --33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0 -153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0 --24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0 -163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0 --14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0 -172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.80,0.00,1.00,0.00,0.00,0 --177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0 -9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0 -19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0 --158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0 -28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0 --148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0 -38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0 --139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0 -48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0 --129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0 -57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0 --120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0 -67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0 --110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0 -76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0 --100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0 -86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0 --86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0 -96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0 --76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0 -105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0 --67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0 -115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0 --57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0 -124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0 --48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0 -134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0 --38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0 -144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0 --28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0 -153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0 --19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0 -163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0 -172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0 --0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0 -4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0 --168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0 -14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0 --158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0 -24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0 --148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0 -33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0 --139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0 -43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0 --129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0 -52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0 --120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0 -62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0 --110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0 -72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0 --100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0 -81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0 --91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0 -96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0 --81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0 -105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0 --72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0 -115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0 --62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0 -124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0 --52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0 -134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0 --43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0 -144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0 --33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0 -153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0 --24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0 -163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0 --14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0 -172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.01,0.00,1.00,0.00,0.00,0 --177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0 --168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0 -19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0 --158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0 -28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0 --148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0 -38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0 --139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0 -48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0 --129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0 -57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0 --120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0 -67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0 --110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0 -76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0 --100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0 -86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0 --86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0 -96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0 --76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0 -105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0 --67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0 -115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0 --57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0 -124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0 --48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0 -134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0 --38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0 -144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0 --28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0 -153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0 --19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0 -163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0 --9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0 -172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0 --0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0 --168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0 -14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0 --158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0 -24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0 --148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0 -33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0 --139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0 -43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0 --129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0 -52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0 --120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0 -62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0 --110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0 -72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0 --100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0 -81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0 --91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0 -96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0 --81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0 -105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0 --72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0 -115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0 --62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0 -124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0 --52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0 -134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0 --43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0 -144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0 --33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0 -153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0 --24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0 -163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0 --14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0 --4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0 -0.00,0.00,7.20,0.00,1.00,0.00,0.00,0 --177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0 --168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0 -19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0 --158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0 --148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0 -38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0 --139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0 -48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0 --129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0 -57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0 --120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0 -67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0 --110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0 -76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0 --100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0 -86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0 --86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0 -96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0 --76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0 -105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0 --67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0 -115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0 --57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0 -124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0 --48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0 -134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0 --38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0 -144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0 --28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0 --19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0 -163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0 --9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0 --0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0 --168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0 -14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0 --158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0 --148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0 -33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0 --139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0 -43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0 --129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0 -52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0 --120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0 -62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0 --110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0 -72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0 --100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0 -81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0 --91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0 -96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0 --81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0 -105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0 --72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0 -115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0 --62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0 -124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0 --52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0 -134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0 --43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0 -144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0 --33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0 -153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0 --24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0 --14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0 --4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0 -0.00,0.00,9.61,0.00,1.00,0.00,0.00,0 --177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0 --168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0 --158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0 --148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0 --139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0 -48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0 --129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0 -57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0 --120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0 -67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0 --110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0 -76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0 --100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0 -86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0 --86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0 -96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0 --76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0 -105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0 --67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0 -115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0 --57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0 -124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0 --48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0 -134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0 --38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0 --28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0 --19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0 -163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0 --9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0 --0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0 --168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0 --158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0 --148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0 -33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0 --139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0 -43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0 --129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0 -52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0 --120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0 -62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0 --110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0 -72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0 --100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0 -81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0 --91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0 -96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0 --81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0 -105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0 --72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0 -115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0 --62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0 -124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0 --52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0 -134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0 --43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0 -144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0 --33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0 -153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0 --24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0 --14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0 -172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0 --4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0 -0.00,0.00,5.60,0.00,1.00,0.00,0.00,0 --177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0 --168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0 --158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0 -28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0 --148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0 --139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0 -48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0 --129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0 -57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0 --120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0 -67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0 --110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0 -76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0 --100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0 -86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0 --86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0 -96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0 --76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0 -105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0 --67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0 -115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0 --57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0 -124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0 --48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0 -134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0 --38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0 --28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0 -153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0 --19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0 --9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0 --0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0 --168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0 --158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0 --148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0 -33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0 --139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0 -43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0 --129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0 -52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0 --120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0 -62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0 --110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0 -72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0 --100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0 -81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0 --91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0 -96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0 --81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0 -105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0 --72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0 -115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0 --62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0 -124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0 --52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0 -134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0 --43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0 -144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0 --33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0 -153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0 --24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0 --14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0 --4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0 -0.00,0.00,11.21,0.00,1.00,0.00,0.00,0 --177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0 --168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0 --158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0 -28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0 --148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0 -38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0 --139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0 -48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0 --129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0 -57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0 --120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0 -67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0 --110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0 -76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0 --100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0 -86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0 --86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0 -96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0 --76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0 -105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0 --67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0 -115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0 --57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0 -124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0 --48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0 -134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0 --38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0 -144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0 --28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0 -153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0 --19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0 --9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0 --0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0 --168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0 --158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0 --148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0 --139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0 -43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0 --129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0 -52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0 --120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0 -62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0 --110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0 -72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0 --100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0 -81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0 --91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0 -96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0 --81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0 -105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0 --72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0 -115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0 --62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0 -124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0 --52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0 -134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0 --43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0 --33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0 -153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0 --24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0 -163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0 --14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0 --4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,3.99,0.00,1.00,0.00,0.00,0 --177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0 --168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0 -19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0 --158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0 --148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0 -33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0 --139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0 -43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0 --129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0 -52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0 --120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0 -62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0 --110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0 -76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0 --100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0 -86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0 --86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0 -96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0 --76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0 -105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0 --67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0 -120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0 --57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0 --48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0 -139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0 --38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0 -148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0 --28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0 -158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0 --19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0 -163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0 --9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0 --0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0 --168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0 --158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0 --153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0 --144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0 -43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0 --134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0 --124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0 -62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0 --110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0 -72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0 --100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0 -81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0 --91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0 -96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0 --81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0 -105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0 --72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0 -115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0 --57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0 -124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0 --48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0 -134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0 --38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0 --28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0 --24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0 --14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0 --4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,12.82,0.00,1.00,0.00,0.00,0 --177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0 --168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0 --158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0 --148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0 -33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0 --139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0 --129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0 --120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0 -62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0 --110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0 -76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0 --100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0 -86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0 --86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0 -96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0 --76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0 -110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0 --67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0 -120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0 --57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0 --48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0 --38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0 --28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0 --19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0 --9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0 --0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0 --168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0 --163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0 --153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0 -33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0 --144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0 -43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0 --134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0 --124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0 -62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0 --115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0 -72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0 --100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0 -81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0 --91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0 -96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0 --81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0 -105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0 --67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0 -115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0 --57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0 -124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0 --48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0 -134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0 --38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0 -144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0 --28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0 --19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0 --14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0 --4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,2.39,0.00,1.00,0.00,0.00,0 --177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0 --168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0 --158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0 --153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0 -33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0 --144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0 --134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0 --124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0 -62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0 --110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0 -72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0 --100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0 -86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0 --86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0 -96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0 --76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0 -110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0 --67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0 -120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0 --52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0 -129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0 --43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0 --33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0 --24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0 --19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0 --9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0 --0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0 --168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0 --163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0 --153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0 -28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0 --144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0 -38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0 --134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0 -48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0 --124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0 -57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0 --115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0 -72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0 --105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0 -81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0 --91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0 -96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0 --81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0 -105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0 --67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0 -120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0 --57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0 -129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0 --48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0 -139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0 --38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0 --28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0 -158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0 --19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0 --9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0 --4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0 -0.00,0.00,14.42,0.00,1.00,0.00,0.00,0 --177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0 --168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0 --163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0 -24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0 --153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0 -28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0 --144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0 -38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0 --134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0 -48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0 --124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0 -62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0 --115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0 -72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0 --100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0 -86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0 --86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0 -96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0 --76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0 -110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0 --62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0 -120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0 --52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0 -134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0 --43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0 --33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0 --24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0 -158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0 --14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0 --9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0 --0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0 --172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0 --163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0 --153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0 --148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0 -38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0 --139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0 -48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0 --129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0 --115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0 -67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0 --105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0 -81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0 --91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0 -96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0 --76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0 -105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0 --67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0 -120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0 --52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0 -129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0 --43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0 -139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0 --33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0 --28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0 --19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0 -163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0 --9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0 --4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0 -0.00,0.00,0.79,0.00,1.00,0.00,0.00,0 --177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0 -4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0 --168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0 --163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0 -19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0 --153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0 -28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0 --148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0 -38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0 --139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0 -48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0 --124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0 -57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0 --115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0 -72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0 --100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0 -86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0 --86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0 -100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0 --76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0 -110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0 --62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0 -124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0 --48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0 -134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0 --38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0 --28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0 --24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0 -163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0 --14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0 -168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0 --9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0 --0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0 --177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0 --172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0 -9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0 --163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0 --158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0 --148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0 -33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0 --139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0 -43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0 --129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0 --120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0 -67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0 --105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0 -81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0 --91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0 -96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0 --76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0 -110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0 --67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0 -120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0 --52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0 -134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0 --43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0 -144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0 --33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0 -153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0 --24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0 --19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0 -168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0 --9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0 --4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0 diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC16c_ISM4.csv b/scripts/testv/stvOMASA_4ISM_2MASA2TC16c_ISM4.csv deleted file mode 100644 index 8a14c3413ddd2dd47415bf6de3e19631f65f8f6c..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_2MASA2TC16c_ISM4.csv +++ /dev/null @@ -1,1500 +0,0 @@ --0.00,0.00,0.00,0.00,1.00,0.00,4.80,0 --0.00,4.80,0.06,0.00,1.00,4.80,9.60,0 --0.00,9.60,0.13,0.00,1.00,9.60,14.40,0 --0.00,14.40,0.19,0.00,1.00,14.40,19.20,0 --0.00,19.20,0.26,0.00,1.00,19.20,24.00,0 --0.00,24.00,0.32,0.00,1.00,24.00,28.80,0 --0.00,28.80,0.39,0.00,1.00,28.80,33.60,0 --0.00,33.60,0.45,0.00,1.00,33.60,38.40,0 --0.00,38.40,0.51,0.00,1.00,38.40,43.20,0 --0.00,43.20,0.58,0.00,1.00,43.20,48.00,0 --0.00,48.00,0.64,0.00,1.00,48.00,52.80,0 --0.00,52.80,0.71,0.00,1.00,52.80,57.60,0 --0.00,57.60,0.77,0.00,1.00,57.60,62.40,0 --0.00,62.40,0.84,0.00,1.00,62.40,67.20,0 --0.00,67.20,0.90,0.00,1.00,67.20,72.00,0 --0.00,72.00,0.96,0.00,1.00,72.00,76.80,0 --0.00,76.80,1.03,0.00,1.00,76.80,81.60,0 --0.00,81.60,1.09,0.00,1.00,81.60,86.40,0 --0.00,86.40,1.16,0.00,1.00,86.40,86.40,0 --177.60,89.20,1.22,0.00,1.00,91.20,81.60,0 --177.60,86.40,1.29,0.00,1.00,96.00,76.80,0 --177.60,81.60,1.35,0.00,1.00,100.80,72.00,0 --177.60,76.80,1.41,0.00,1.00,105.60,67.20,0 --177.60,72.00,1.48,0.00,1.00,110.40,62.40,0 --177.60,67.20,1.54,0.00,1.00,115.20,57.60,0 -177.60,62.40,1.61,0.00,1.00,120.00,52.80,0 -177.60,57.60,1.67,0.00,1.00,124.80,48.00,0 -177.60,52.80,1.73,0.00,1.00,129.60,43.20,0 -177.60,48.00,1.80,0.00,1.00,134.40,38.40,0 -177.60,43.20,1.86,0.00,1.00,139.20,33.60,0 -177.60,38.40,1.93,0.00,1.00,144.00,28.80,0 -177.60,33.60,1.99,0.00,1.00,148.80,24.00,0 -177.60,28.80,2.06,0.00,1.00,153.60,19.20,0 -177.60,24.00,2.12,0.00,1.00,158.40,14.40,0 -177.60,19.20,2.18,0.00,1.00,163.20,9.60,0 -177.60,14.40,2.25,0.00,1.00,168.00,4.80,0 -177.60,9.60,2.31,0.00,1.00,172.80,0.00,0 -177.60,4.80,2.38,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,2.44,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,2.51,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,2.57,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,2.63,0.00,1.00,-163.20,-19.20,0 --177.60,-19.20,2.70,0.00,1.00,-158.40,-24.00,0 --177.60,-24.00,2.76,0.00,1.00,-153.60,-28.80,0 --177.60,-28.80,2.83,0.00,1.00,-148.80,-33.60,0 --177.60,-33.60,2.89,0.00,1.00,-144.00,-38.40,0 --177.60,-38.40,2.96,0.00,1.00,-139.20,-43.20,0 --177.60,-48.00,3.02,0.00,1.00,-134.40,-48.00,0 --177.60,-48.00,3.08,0.00,1.00,-129.60,-52.80,0 --177.60,-52.80,3.15,0.00,1.00,-124.80,-57.60,0 --177.60,-57.60,3.21,0.00,1.00,-120.00,-62.40,0 -177.60,-62.40,3.28,0.00,1.00,-115.20,-67.20,0 -177.60,-67.20,3.34,0.00,1.00,-110.40,-72.00,0 -177.60,-76.80,3.41,0.00,1.00,-105.60,-76.80,0 -177.60,-76.80,3.47,0.00,1.00,-100.80,-81.60,0 -177.60,-86.40,3.53,0.00,1.00,-96.00,-86.40,0 -177.60,-89.20,3.60,0.00,1.00,-91.20,-86.40,0 -0.00,-86.40,3.66,0.00,1.00,-86.40,-81.60,0 -0.00,-81.60,3.73,0.00,1.00,-81.60,-76.80,0 -0.00,-76.80,3.79,0.00,1.00,-76.80,-72.00,0 -0.00,-72.00,3.86,0.00,1.00,-72.00,-67.20,0 -0.00,-67.20,3.92,0.00,1.00,-67.20,-62.40,0 -0.00,-62.40,3.98,0.00,1.00,-62.40,-57.60,0 -0.00,-57.60,4.05,0.00,1.00,-57.60,-52.80,0 -0.00,-52.80,4.11,0.00,1.00,-52.80,-48.00,0 -0.00,-48.00,4.18,0.00,1.00,-48.00,-43.20,0 -0.00,-43.20,4.24,0.00,1.00,-43.20,-38.40,0 -0.00,-38.40,4.31,0.00,1.00,-38.40,-33.60,0 -0.00,-33.60,4.37,0.00,1.00,-33.60,-28.80,0 -0.00,-28.80,4.43,0.00,1.00,-28.80,-24.00,0 -0.00,-24.00,4.50,0.00,1.00,-24.00,-19.20,0 -0.00,-19.20,4.56,0.00,1.00,-19.20,-14.40,0 -0.00,-14.40,4.63,0.00,1.00,-14.40,-9.60,0 -0.00,-9.60,4.69,0.00,1.00,-9.60,-4.80,0 -0.00,-4.80,4.76,0.00,1.00,-4.80,0.00,0 -0.00,0.00,4.82,0.00,1.00,0.00,4.80,0 -0.00,4.80,4.88,0.00,1.00,4.80,9.60,0 -0.00,9.60,4.95,0.00,1.00,9.60,14.40,0 -0.00,14.40,5.01,0.00,1.00,14.40,19.20,0 -0.00,19.20,5.08,0.00,1.00,19.20,24.00,0 -0.00,24.00,5.14,0.00,1.00,24.00,28.80,0 -4.80,28.80,5.20,0.00,1.00,28.80,33.60,0 -4.80,33.60,5.27,0.00,1.00,33.60,38.40,0 -4.80,38.40,5.33,0.00,1.00,38.40,43.20,0 -4.80,43.20,5.40,0.00,1.00,43.20,48.00,0 -4.80,48.00,5.46,0.00,1.00,48.00,52.80,0 -4.80,52.80,5.53,0.00,1.00,52.80,57.60,0 -9.60,57.60,5.59,0.00,1.00,57.60,62.40,0 -9.60,62.40,5.65,0.00,1.00,62.40,67.20,0 -9.60,67.20,5.72,0.00,1.00,67.20,72.00,0 -14.40,72.00,5.78,0.00,1.00,72.00,76.80,0 -19.20,76.80,5.85,0.00,1.00,76.80,81.60,0 -28.80,81.60,5.91,0.00,1.00,81.60,86.40,0 -52.80,86.40,5.98,0.00,1.00,86.40,86.40,0 -105.60,86.40,6.04,0.00,1.00,91.20,81.60,0 -139.20,81.60,6.10,0.00,1.00,96.00,76.80,0 -158.40,76.80,6.17,0.00,1.00,100.80,72.00,0 -163.20,72.00,6.23,0.00,1.00,105.60,67.20,0 -168.00,67.20,6.30,0.00,1.00,110.40,62.40,0 -168.00,62.40,6.36,0.00,1.00,115.20,57.60,0 -172.80,57.60,6.43,0.00,1.00,120.00,52.80,0 -172.80,52.80,6.49,0.00,1.00,124.80,48.00,0 -172.80,48.00,6.55,0.00,1.00,129.60,43.20,0 -172.80,43.20,6.62,0.00,1.00,134.40,38.40,0 -177.60,38.40,6.68,0.00,1.00,139.20,33.60,0 -177.60,33.60,6.75,0.00,1.00,144.00,28.80,0 -177.60,28.80,6.81,0.00,1.00,148.80,24.00,0 -177.60,24.00,6.88,0.00,1.00,153.60,19.20,0 -177.60,19.20,6.94,0.00,1.00,158.40,14.40,0 -177.60,14.40,7.00,0.00,1.00,163.20,9.60,0 -177.60,9.60,7.07,0.00,1.00,168.00,4.80,0 -177.60,4.80,7.13,0.00,1.00,172.80,0.00,0 -177.60,0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,7.26,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,7.33,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,7.39,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,7.45,0.00,1.00,-163.20,-19.20,0 --177.60,-19.20,7.52,0.00,1.00,-158.40,-24.00,0 --177.60,-24.00,7.58,0.00,1.00,-153.60,-28.80,0 --177.60,-28.80,7.65,0.00,1.00,-148.80,-33.60,0 --177.60,-33.60,7.71,0.00,1.00,-144.00,-38.40,0 --177.60,-38.40,7.78,0.00,1.00,-139.20,-43.20,0 --172.80,-43.20,7.84,0.00,1.00,-134.40,-48.00,0 --172.80,-48.00,7.90,0.00,1.00,-129.60,-52.80,0 --172.80,-52.80,7.97,0.00,1.00,-124.80,-57.60,0 --172.80,-57.60,8.03,0.00,1.00,-120.00,-62.40,0 --168.00,-62.40,8.10,0.00,1.00,-115.20,-67.20,0 --168.00,-67.20,8.16,0.00,1.00,-110.40,-72.00,0 --163.20,-72.00,8.22,0.00,1.00,-105.60,-76.80,0 --158.40,-76.80,8.29,0.00,1.00,-100.80,-81.60,0 --139.20,-81.60,8.35,0.00,1.00,-96.00,-86.40,0 --105.60,-86.40,8.42,0.00,1.00,-91.20,-86.40,0 --52.80,-86.40,8.48,0.00,1.00,-86.40,-81.60,0 --28.80,-81.60,8.55,0.00,1.00,-81.60,-76.80,0 --19.20,-76.80,8.61,0.00,1.00,-76.80,-72.00,0 --14.40,-72.00,8.67,0.00,1.00,-72.00,-67.20,0 --9.60,-67.20,8.74,0.00,1.00,-67.20,-62.40,0 --9.60,-62.40,8.80,0.00,1.00,-62.40,-57.60,0 --9.60,-57.60,8.87,0.00,1.00,-57.60,-52.80,0 --4.80,-52.80,8.93,0.00,1.00,-52.80,-48.00,0 --4.80,-48.00,9.00,0.00,1.00,-48.00,-43.20,0 --4.80,-43.20,9.06,0.00,1.00,-43.20,-38.40,0 --4.80,-38.40,9.12,0.00,1.00,-38.40,-33.60,0 --4.80,-33.60,9.19,0.00,1.00,-33.60,-28.80,0 --4.80,-28.80,9.25,0.00,1.00,-28.80,-24.00,0 --0.00,-24.00,9.32,0.00,1.00,-24.00,-19.20,0 --0.00,-19.20,9.38,0.00,1.00,-19.20,-14.40,0 --0.00,-14.40,9.45,0.00,1.00,-14.40,-9.60,0 --0.00,-9.60,9.51,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,9.57,0.00,1.00,-4.80,0.00,0 -0.00,0.00,9.64,0.00,1.00,0.00,4.80,0 -0.00,4.80,9.70,0.00,1.00,4.80,9.60,0 -0.00,9.60,9.77,0.00,1.00,9.60,14.40,0 -4.80,14.40,9.83,0.00,1.00,14.40,19.20,0 -4.80,19.20,9.90,0.00,1.00,19.20,24.00,0 -4.80,24.00,9.96,0.00,1.00,24.00,28.80,0 -4.80,28.80,10.02,0.00,1.00,28.80,33.60,0 -4.80,33.60,10.09,0.00,1.00,33.60,38.40,0 -9.60,38.40,10.15,0.00,1.00,38.40,43.20,0 -9.60,43.20,10.22,0.00,1.00,43.20,48.00,0 -9.60,48.00,10.28,0.00,1.00,48.00,52.80,0 -14.40,52.80,10.35,0.00,1.00,52.80,57.60,0 -14.40,57.60,10.41,0.00,1.00,57.60,62.40,0 -19.20,62.40,10.47,0.00,1.00,62.40,67.20,0 -24.00,67.20,10.54,0.00,1.00,67.20,72.00,0 -28.80,72.00,10.60,0.00,1.00,72.00,72.00,0 -33.60,72.00,10.67,0.00,1.00,76.80,76.80,0 -48.00,76.80,10.73,0.00,1.00,81.60,81.60,0 -67.20,81.60,10.80,0.00,1.00,86.40,81.60,0 -96.00,81.60,10.86,0.00,1.00,91.20,81.60,0 -120.00,76.80,10.92,0.00,1.00,96.00,76.80,0 -139.20,76.80,10.99,0.00,1.00,100.80,72.00,0 -148.80,72.00,11.05,0.00,1.00,105.60,67.20,0 -153.60,67.20,11.12,0.00,1.00,110.40,62.40,0 -158.40,62.40,11.18,0.00,1.00,115.20,57.60,0 -163.20,57.60,11.24,0.00,1.00,120.00,52.80,0 -168.00,52.80,11.31,0.00,1.00,124.80,48.00,0 -168.00,48.00,11.37,0.00,1.00,129.60,43.20,0 -168.00,43.20,11.44,0.00,1.00,134.40,38.40,0 -172.80,38.40,11.50,0.00,1.00,139.20,33.60,0 -172.80,33.60,11.57,0.00,1.00,144.00,28.80,0 -172.80,28.80,11.63,0.00,1.00,148.80,24.00,0 -177.60,24.00,11.69,0.00,1.00,153.60,19.20,0 -177.60,19.20,11.76,0.00,1.00,158.40,14.40,0 -177.60,14.40,11.82,0.00,1.00,163.20,9.60,0 -177.60,9.60,11.89,0.00,1.00,168.00,4.80,0 -177.60,4.80,11.95,0.00,1.00,172.80,0.00,0 -177.60,0.00,12.02,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,12.08,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,12.14,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,12.21,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,12.27,0.00,1.00,-163.20,-19.20,0 --177.60,-19.20,12.34,0.00,1.00,-158.40,-24.00,0 --177.60,-24.00,12.40,0.00,1.00,-153.60,-28.80,0 --172.80,-28.80,12.47,0.00,1.00,-148.80,-33.60,0 --172.80,-33.60,12.53,0.00,1.00,-144.00,-38.40,0 --172.80,-38.40,12.59,0.00,1.00,-139.20,-43.20,0 --168.00,-43.20,12.66,0.00,1.00,-134.40,-48.00,0 --168.00,-48.00,12.72,0.00,1.00,-129.60,-52.80,0 --168.00,-52.80,12.79,0.00,1.00,-124.80,-57.60,0 --163.20,-57.60,12.85,0.00,1.00,-120.00,-62.40,0 --158.40,-62.40,12.92,0.00,1.00,-115.20,-67.20,0 --153.60,-67.20,12.98,0.00,1.00,-110.40,-72.00,0 --148.80,-72.00,13.04,0.00,1.00,-105.60,-76.80,0 --139.20,-76.80,13.11,0.00,1.00,-100.80,-81.60,0 --120.00,-76.80,13.17,0.00,1.00,-96.00,-81.60,0 --96.00,-81.60,13.24,0.00,1.00,-91.20,-81.60,0 --67.20,-81.60,13.30,0.00,1.00,-86.40,-76.80,0 --48.00,-76.80,13.37,0.00,1.00,-81.60,-72.00,0 --33.60,-72.00,13.43,0.00,1.00,-76.80,-72.00,0 --28.80,-72.00,13.49,0.00,1.00,-72.00,-67.20,0 --24.00,-67.20,13.56,0.00,1.00,-67.20,-62.40,0 --19.20,-62.40,13.62,0.00,1.00,-62.40,-57.60,0 --14.40,-57.60,13.69,0.00,1.00,-57.60,-52.80,0 --14.40,-52.80,13.75,0.00,1.00,-52.80,-48.00,0 --9.60,-48.00,13.82,0.00,1.00,-48.00,-43.20,0 --9.60,-43.20,13.88,0.00,1.00,-43.20,-38.40,0 --9.60,-38.40,13.94,0.00,1.00,-38.40,-33.60,0 --4.80,-33.60,14.01,0.00,1.00,-33.60,-28.80,0 --4.80,-28.80,14.07,0.00,1.00,-28.80,-24.00,0 --4.80,-24.00,14.14,0.00,1.00,-24.00,-19.20,0 --4.80,-19.20,14.20,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,14.27,0.00,1.00,-14.40,-9.60,0 --0.00,-9.60,14.33,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,14.39,0.00,1.00,-4.80,0.00,0 -0.00,0.00,14.46,0.00,1.00,0.00,4.80,0 -0.00,4.80,14.52,0.00,1.00,4.80,9.60,0 -4.80,9.60,14.59,0.00,1.00,9.60,14.40,0 -4.80,14.40,14.65,0.00,1.00,14.40,19.20,0 -4.80,19.20,14.71,0.00,1.00,19.20,24.00,0 -4.80,24.00,14.78,0.00,1.00,24.00,28.80,0 -9.60,28.80,14.84,0.00,1.00,28.80,33.60,0 -9.60,33.60,14.91,0.00,1.00,33.60,38.40,0 -9.60,38.40,14.97,0.00,1.00,38.40,43.20,0 -14.40,43.20,15.04,0.00,1.00,43.20,48.00,0 -14.40,48.00,15.10,0.00,1.00,48.00,52.80,0 -19.20,52.80,15.16,0.00,1.00,52.80,57.60,0 -19.20,52.80,15.23,0.00,1.00,57.60,57.60,0 -24.00,57.60,15.29,0.00,1.00,62.40,62.40,0 -28.80,62.40,15.36,0.00,1.00,67.20,67.20,0 -38.40,67.20,15.42,0.00,1.00,72.00,72.00,0 -48.00,72.00,15.49,0.00,1.00,76.80,72.00,0 -57.60,72.00,15.55,0.00,1.00,81.60,76.80,0 -76.80,76.80,15.61,0.00,1.00,86.40,76.80,0 -96.00,76.80,15.68,0.00,1.00,91.20,76.80,0 -115.20,76.80,15.74,0.00,1.00,96.00,72.00,0 -129.60,72.00,15.81,0.00,1.00,100.80,72.00,0 -139.20,67.20,15.87,0.00,1.00,105.60,67.20,0 -144.00,67.20,15.94,0.00,1.00,110.40,62.40,0 -153.60,62.40,16.00,0.00,1.00,115.20,57.60,0 -158.40,57.60,16.00,0.00,1.00,120.00,52.80,0 -158.40,52.80,15.94,0.00,1.00,124.80,48.00,0 -163.20,48.00,15.87,0.00,1.00,129.60,43.20,0 -168.00,43.20,15.81,0.00,1.00,134.40,38.40,0 -168.00,38.40,15.74,0.00,1.00,139.20,33.60,0 -168.00,33.60,15.68,0.00,1.00,144.00,28.80,0 -172.80,28.80,15.61,0.00,1.00,148.80,24.00,0 -172.80,24.00,15.55,0.00,1.00,153.60,19.20,0 -172.80,19.20,15.49,0.00,1.00,158.40,14.40,0 -177.60,14.40,15.42,0.00,1.00,163.20,9.60,0 -177.60,9.60,15.36,0.00,1.00,168.00,4.80,0 -177.60,4.80,15.29,0.00,1.00,172.80,0.00,0 -177.60,0.00,15.23,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,15.16,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,15.10,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,15.04,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,14.97,0.00,1.00,-163.20,-19.20,0 --172.80,-19.20,14.91,0.00,1.00,-158.40,-24.00,0 --172.80,-24.00,14.84,0.00,1.00,-153.60,-28.80,0 --172.80,-28.80,14.78,0.00,1.00,-148.80,-33.60,0 --168.00,-33.60,14.71,0.00,1.00,-144.00,-38.40,0 --168.00,-38.40,14.65,0.00,1.00,-139.20,-43.20,0 --168.00,-43.20,14.59,0.00,1.00,-134.40,-48.00,0 --163.20,-48.00,14.52,0.00,1.00,-129.60,-52.80,0 --158.40,-52.80,14.46,0.00,1.00,-124.80,-57.60,0 --158.40,-57.60,14.39,0.00,1.00,-120.00,-62.40,0 --153.60,-62.40,14.33,0.00,1.00,-115.20,-67.20,0 --144.00,-67.20,14.27,0.00,1.00,-110.40,-72.00,0 --139.20,-67.20,14.20,0.00,1.00,-105.60,-72.00,0 --129.60,-72.00,14.14,0.00,1.00,-100.80,-76.80,0 --115.20,-76.80,14.07,0.00,1.00,-96.00,-76.80,0 --96.00,-76.80,14.01,0.00,1.00,-91.20,-76.80,0 --76.80,-76.80,13.94,0.00,1.00,-86.40,-72.00,0 --57.60,-72.00,13.88,0.00,1.00,-81.60,-72.00,0 --48.00,-72.00,13.82,0.00,1.00,-76.80,-67.20,0 --38.40,-67.20,13.75,0.00,1.00,-72.00,-62.40,0 --28.80,-62.40,13.69,0.00,1.00,-67.20,-57.60,0 --24.00,-57.60,13.62,0.00,1.00,-62.40,-57.60,0 --19.20,-52.80,13.56,0.00,1.00,-57.60,-52.80,0 --19.20,-52.80,13.49,0.00,1.00,-52.80,-48.00,0 --14.40,-48.00,13.43,0.00,1.00,-48.00,-43.20,0 --14.40,-43.20,13.37,0.00,1.00,-43.20,-38.40,0 --9.60,-38.40,13.30,0.00,1.00,-38.40,-33.60,0 --9.60,-33.60,13.24,0.00,1.00,-33.60,-28.80,0 --9.60,-28.80,13.17,0.00,1.00,-28.80,-24.00,0 --4.80,-24.00,13.11,0.00,1.00,-24.00,-19.20,0 --4.80,-19.20,13.04,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,12.98,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,12.92,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,12.85,0.00,1.00,-4.80,0.00,0 -0.00,0.00,12.79,0.00,1.00,0.00,4.80,0 -0.00,4.80,12.72,0.00,1.00,4.80,9.60,0 -4.80,9.60,12.66,0.00,1.00,9.60,14.40,0 -4.80,14.40,12.59,0.00,1.00,14.40,19.20,0 -4.80,19.20,12.53,0.00,1.00,19.20,24.00,0 -9.60,24.00,12.47,0.00,1.00,24.00,28.80,0 -9.60,28.80,12.40,0.00,1.00,28.80,33.60,0 -14.40,33.60,12.34,0.00,1.00,33.60,38.40,0 -14.40,33.60,12.27,0.00,1.00,38.40,38.40,0 -19.20,38.40,12.21,0.00,1.00,43.20,43.20,0 -19.20,43.20,12.14,0.00,1.00,48.00,48.00,0 -24.00,48.00,12.08,0.00,1.00,52.80,52.80,0 -28.80,52.80,12.02,0.00,1.00,57.60,57.60,0 -33.60,57.60,11.95,0.00,1.00,62.40,62.40,0 -38.40,62.40,11.89,0.00,1.00,67.20,62.40,0 -43.20,62.40,11.82,0.00,1.00,72.00,67.20,0 -52.80,67.20,11.76,0.00,1.00,76.80,72.00,0 -67.20,67.20,11.69,0.00,1.00,81.60,72.00,0 -76.80,72.00,11.63,0.00,1.00,86.40,72.00,0 -96.00,72.00,11.57,0.00,1.00,91.20,72.00,0 -105.60,72.00,11.50,0.00,1.00,96.00,67.20,0 -120.00,67.20,11.44,0.00,1.00,100.80,67.20,0 -129.60,67.20,11.37,0.00,1.00,105.60,62.40,0 -139.20,62.40,11.31,0.00,1.00,110.40,57.60,0 -144.00,57.60,11.24,0.00,1.00,115.20,57.60,0 -148.80,52.80,11.18,0.00,1.00,120.00,52.80,0 -153.60,52.80,11.12,0.00,1.00,124.80,48.00,0 -158.40,48.00,11.05,0.00,1.00,129.60,43.20,0 -163.20,43.20,10.99,0.00,1.00,134.40,38.40,0 -163.20,38.40,10.92,0.00,1.00,139.20,33.60,0 -168.00,33.60,10.86,0.00,1.00,144.00,28.80,0 -168.00,28.80,10.80,0.00,1.00,148.80,24.00,0 -172.80,24.00,10.73,0.00,1.00,153.60,19.20,0 -172.80,19.20,10.67,0.00,1.00,158.40,14.40,0 -172.80,14.40,10.60,0.00,1.00,163.20,9.60,0 -177.60,9.60,10.54,0.00,1.00,168.00,4.80,0 -177.60,4.80,10.47,0.00,1.00,172.80,0.00,0 -177.60,0.00,10.41,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.35,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,10.28,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,10.22,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,10.15,0.00,1.00,-163.20,-19.20,0 --172.80,-19.20,10.09,0.00,1.00,-158.40,-24.00,0 --172.80,-24.00,10.02,0.00,1.00,-153.60,-28.80,0 --168.00,-28.80,9.96,0.00,1.00,-148.80,-33.60,0 --168.00,-33.60,9.90,0.00,1.00,-144.00,-38.40,0 --163.20,-38.40,9.83,0.00,1.00,-139.20,-43.20,0 --163.20,-43.20,9.77,0.00,1.00,-134.40,-48.00,0 --158.40,-48.00,9.70,0.00,1.00,-129.60,-52.80,0 --153.60,-52.80,9.64,0.00,1.00,-124.80,-57.60,0 --148.80,-52.80,9.57,0.00,1.00,-120.00,-57.60,0 --144.00,-57.60,9.51,0.00,1.00,-115.20,-62.40,0 --139.20,-62.40,9.45,0.00,1.00,-110.40,-67.20,0 --129.60,-67.20,9.38,0.00,1.00,-105.60,-67.20,0 --120.00,-67.20,9.32,0.00,1.00,-100.80,-72.00,0 --105.60,-72.00,9.25,0.00,1.00,-96.00,-72.00,0 --96.00,-72.00,9.19,0.00,1.00,-91.20,-72.00,0 --76.80,-72.00,9.12,0.00,1.00,-86.40,-72.00,0 --67.20,-67.20,9.06,0.00,1.00,-81.60,-67.20,0 --52.80,-67.20,9.00,0.00,1.00,-76.80,-62.40,0 --43.20,-62.40,8.93,0.00,1.00,-72.00,-62.40,0 --38.40,-62.40,8.87,0.00,1.00,-67.20,-57.60,0 --33.60,-57.60,8.80,0.00,1.00,-62.40,-52.80,0 --28.80,-52.80,8.74,0.00,1.00,-57.60,-48.00,0 --24.00,-48.00,8.67,0.00,1.00,-52.80,-43.20,0 --19.20,-43.20,8.61,0.00,1.00,-48.00,-38.40,0 --19.20,-38.40,8.55,0.00,1.00,-43.20,-38.40,0 --14.40,-33.60,8.48,0.00,1.00,-38.40,-33.60,0 --14.40,-33.60,8.42,0.00,1.00,-33.60,-28.80,0 --9.60,-28.80,8.35,0.00,1.00,-28.80,-24.00,0 --9.60,-24.00,8.29,0.00,1.00,-24.00,-19.20,0 --4.80,-19.20,8.22,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,8.16,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,8.10,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,8.03,0.00,1.00,-4.80,0.00,0 -0.00,0.00,7.97,0.00,1.00,0.00,4.80,0 -0.00,4.80,7.90,0.00,1.00,4.80,9.60,0 -4.80,9.60,7.84,0.00,1.00,9.60,14.40,0 -4.80,14.40,7.78,0.00,1.00,14.40,19.20,0 -9.60,19.20,7.71,0.00,1.00,19.20,24.00,0 -9.60,24.00,7.65,0.00,1.00,24.00,24.00,0 -14.40,24.00,7.58,0.00,1.00,28.80,28.80,0 -14.40,28.80,7.52,0.00,1.00,33.60,33.60,0 -19.20,33.60,7.45,0.00,1.00,33.60,38.40,0 -19.20,38.40,7.39,0.00,1.00,38.40,43.20,0 -24.00,43.20,7.33,0.00,1.00,43.20,48.00,0 -28.80,48.00,7.26,0.00,1.00,48.00,52.80,0 -33.60,52.80,7.20,0.00,1.00,57.60,52.80,0 -38.40,52.80,7.13,0.00,1.00,62.40,57.60,0 -43.20,57.60,7.07,0.00,1.00,67.20,62.40,0 -52.80,62.40,7.00,0.00,1.00,72.00,62.40,0 -62.40,62.40,6.94,0.00,1.00,76.80,67.20,0 -72.00,62.40,6.88,0.00,1.00,81.60,67.20,0 -81.60,67.20,6.81,0.00,1.00,86.40,67.20,0 -91.20,67.20,6.75,0.00,1.00,91.20,67.20,0 -105.60,67.20,6.68,0.00,1.00,96.00,67.20,0 -115.20,62.40,6.62,0.00,1.00,100.80,62.40,0 -124.80,62.40,6.55,0.00,1.00,105.60,57.60,0 -134.40,57.60,6.49,0.00,1.00,110.40,57.60,0 -139.20,57.60,6.43,0.00,1.00,115.20,52.80,0 -144.00,52.80,6.36,0.00,1.00,120.00,48.00,0 -148.80,48.00,6.30,0.00,1.00,129.60,43.20,0 -153.60,43.20,6.23,0.00,1.00,134.40,43.20,0 -158.40,38.40,6.17,0.00,1.00,139.20,38.40,0 -158.40,38.40,6.10,0.00,1.00,144.00,33.60,0 -163.20,33.60,6.04,0.00,1.00,148.80,28.80,0 -168.00,28.80,5.98,0.00,1.00,148.80,24.00,0 -168.00,24.00,5.91,0.00,1.00,153.60,19.20,0 -172.80,19.20,5.85,0.00,1.00,158.40,14.40,0 -172.80,14.40,5.78,0.00,1.00,163.20,9.60,0 -172.80,9.60,5.72,0.00,1.00,168.00,4.80,0 -177.60,4.80,5.65,0.00,1.00,172.80,0.00,0 -177.60,0.00,5.59,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,5.53,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,5.46,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,5.40,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,5.33,0.00,1.00,-163.20,-19.20,0 --172.80,-19.20,5.27,0.00,1.00,-158.40,-24.00,0 --168.00,-24.00,5.20,0.00,1.00,-153.60,-28.80,0 --168.00,-28.80,5.14,0.00,1.00,-148.80,-33.60,0 --163.20,-33.60,5.08,0.00,1.00,-148.80,-38.40,0 --158.40,-38.40,5.01,0.00,1.00,-144.00,-43.20,0 --158.40,-38.40,4.95,0.00,1.00,-139.20,-43.20,0 --153.60,-43.20,4.88,0.00,1.00,-134.40,-48.00,0 --148.80,-48.00,4.82,0.00,1.00,-129.60,-52.80,0 --144.00,-52.80,4.76,0.00,1.00,-120.00,-57.60,0 --139.20,-57.60,4.69,0.00,1.00,-115.20,-57.60,0 --134.40,-57.60,4.63,0.00,1.00,-110.40,-62.40,0 --124.80,-62.40,4.56,0.00,1.00,-105.60,-67.20,0 --115.20,-62.40,4.50,0.00,1.00,-100.80,-67.20,0 --105.60,-67.20,4.43,0.00,1.00,-96.00,-67.20,0 --91.20,-67.20,4.37,0.00,1.00,-91.20,-67.20,0 --81.60,-67.20,4.31,0.00,1.00,-86.40,-67.20,0 --72.00,-62.40,4.24,0.00,1.00,-81.60,-62.40,0 --62.40,-62.40,4.18,0.00,1.00,-76.80,-62.40,0 --52.80,-62.40,4.11,0.00,1.00,-72.00,-57.60,0 --43.20,-57.60,4.05,0.00,1.00,-67.20,-52.80,0 --38.40,-52.80,3.98,0.00,1.00,-62.40,-52.80,0 --33.60,-52.80,3.92,0.00,1.00,-57.60,-48.00,0 --28.80,-48.00,3.86,0.00,1.00,-48.00,-43.20,0 --24.00,-43.20,3.79,0.00,1.00,-43.20,-38.40,0 --19.20,-38.40,3.73,0.00,1.00,-38.40,-33.60,0 --19.20,-33.60,3.66,0.00,1.00,-33.60,-28.80,0 --14.40,-28.80,3.60,0.00,1.00,-33.60,-24.00,0 --14.40,-24.00,3.53,0.00,1.00,-28.80,-24.00,0 --9.60,-24.00,3.47,0.00,1.00,-24.00,-19.20,0 --9.60,-19.20,3.41,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,3.34,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,3.28,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,3.21,0.00,1.00,-4.80,0.00,0 -0.00,0.00,3.15,0.00,1.00,0.00,4.80,0 -0.00,4.80,3.08,0.00,1.00,4.80,9.60,0 -4.80,9.60,3.02,0.00,1.00,9.60,14.40,0 -4.80,14.40,2.96,0.00,1.00,14.40,19.20,0 -9.60,14.40,2.89,0.00,1.00,19.20,19.20,0 -14.40,19.20,2.83,0.00,1.00,19.20,24.00,0 -14.40,24.00,2.76,0.00,1.00,24.00,28.80,0 -19.20,28.80,2.70,0.00,1.00,28.80,33.60,0 -19.20,33.60,2.63,0.00,1.00,33.60,38.40,0 -24.00,38.40,2.57,0.00,1.00,38.40,43.20,0 -28.80,38.40,2.51,0.00,1.00,43.20,43.20,0 -33.60,43.20,2.44,0.00,1.00,48.00,48.00,0 -38.40,48.00,2.38,0.00,1.00,52.80,52.80,0 -43.20,52.80,2.31,0.00,1.00,57.60,52.80,0 -48.00,52.80,2.25,0.00,1.00,62.40,57.60,0 -57.60,57.60,2.18,0.00,1.00,72.00,57.60,0 -62.40,57.60,2.12,0.00,1.00,76.80,62.40,0 -72.00,62.40,2.06,0.00,1.00,81.60,62.40,0 -81.60,62.40,1.99,0.00,1.00,86.40,62.40,0 -91.20,62.40,1.93,0.00,1.00,91.20,62.40,0 -100.80,62.40,1.86,0.00,1.00,96.00,62.40,0 -110.40,57.60,1.80,0.00,1.00,100.80,57.60,0 -120.00,57.60,1.73,0.00,1.00,105.60,57.60,0 -129.60,57.60,1.67,0.00,1.00,115.20,52.80,0 -134.40,52.80,1.61,0.00,1.00,120.00,48.00,0 -139.20,48.00,1.54,0.00,1.00,124.80,48.00,0 -144.00,48.00,1.48,0.00,1.00,129.60,43.20,0 -148.80,43.20,1.41,0.00,1.00,134.40,38.40,0 -153.60,38.40,1.35,0.00,1.00,139.20,33.60,0 -158.40,33.60,1.29,0.00,1.00,144.00,33.60,0 -158.40,28.80,1.22,0.00,1.00,148.80,28.80,0 -163.20,28.80,1.16,0.00,1.00,153.60,24.00,0 -168.00,24.00,1.09,0.00,1.00,158.40,19.20,0 -168.00,19.20,1.03,0.00,1.00,163.20,14.40,0 -172.80,14.40,0.96,0.00,1.00,163.20,9.60,0 -172.80,9.60,0.90,0.00,1.00,168.00,4.80,0 -177.60,4.80,0.84,0.00,1.00,172.80,0.00,0 -177.60,0.00,0.77,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,0.71,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,0.64,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,0.58,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,0.51,0.00,1.00,-163.20,-19.20,0 --168.00,-19.20,0.45,0.00,1.00,-163.20,-24.00,0 --168.00,-24.00,0.39,0.00,1.00,-158.40,-28.80,0 --163.20,-28.80,0.32,0.00,1.00,-153.60,-33.60,0 --158.40,-28.80,0.26,0.00,1.00,-148.80,-33.60,0 --158.40,-33.60,0.19,0.00,1.00,-144.00,-38.40,0 --153.60,-38.40,0.13,0.00,1.00,-139.20,-43.20,0 --148.80,-43.20,0.06,0.00,1.00,-134.40,-48.00,0 --144.00,-48.00,0.00,0.00,1.00,-129.60,-48.00,0 --139.20,-48.00,0.00,0.00,1.00,-124.80,-52.80,0 --134.40,-52.80,0.16,0.00,1.00,-120.00,-57.60,0 --129.60,-57.60,0.32,0.00,1.00,-115.20,-57.60,0 --120.00,-57.60,0.48,0.00,1.00,-105.60,-62.40,0 --110.40,-57.60,0.65,0.00,1.00,-100.80,-62.40,0 --100.80,-62.40,0.81,0.00,1.00,-96.00,-62.40,0 --91.20,-62.40,0.97,0.00,1.00,-91.20,-62.40,0 --81.60,-62.40,1.13,0.00,1.00,-86.40,-62.40,0 --72.00,-62.40,1.29,0.00,1.00,-81.60,-57.60,0 --62.40,-57.60,1.45,0.00,1.00,-76.80,-57.60,0 --57.60,-57.60,1.62,0.00,1.00,-72.00,-52.80,0 --48.00,-52.80,1.78,0.00,1.00,-62.40,-52.80,0 --43.20,-52.80,1.94,0.00,1.00,-57.60,-48.00,0 --38.40,-48.00,2.10,0.00,1.00,-52.80,-43.20,0 --33.60,-43.20,2.26,0.00,1.00,-48.00,-43.20,0 --28.80,-38.40,2.42,0.00,1.00,-43.20,-38.40,0 --24.00,-38.40,2.59,0.00,1.00,-38.40,-33.60,0 --19.20,-33.60,2.75,0.00,1.00,-33.60,-28.80,0 --19.20,-28.80,2.91,0.00,1.00,-28.80,-24.00,0 --14.40,-24.00,3.07,0.00,1.00,-24.00,-19.20,0 --14.40,-19.20,3.23,0.00,1.00,-19.20,-19.20,0 --9.60,-14.40,3.39,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,3.56,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,3.72,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,3.88,0.00,1.00,-4.80,0.00,0 -0.00,0.00,4.04,0.00,1.00,0.00,4.80,0 -4.80,4.80,4.20,0.00,1.00,4.80,9.60,0 -4.80,9.60,4.36,0.00,1.00,9.60,14.40,0 -9.60,9.60,4.53,0.00,1.00,14.40,14.40,0 -9.60,14.40,4.69,0.00,1.00,14.40,19.20,0 -14.40,19.20,4.85,0.00,1.00,19.20,24.00,0 -19.20,24.00,5.01,0.00,1.00,24.00,28.80,0 -19.20,28.80,5.17,0.00,1.00,28.80,33.60,0 -24.00,28.80,5.33,0.00,1.00,33.60,33.60,0 -28.80,33.60,5.49,0.00,1.00,38.40,38.40,0 -33.60,38.40,5.66,0.00,1.00,43.20,43.20,0 -38.40,43.20,5.82,0.00,1.00,48.00,43.20,0 -43.20,43.20,5.98,0.00,1.00,52.80,48.00,0 -48.00,48.00,6.14,0.00,1.00,57.60,52.80,0 -52.80,48.00,6.30,0.00,1.00,62.40,52.80,0 -57.60,52.80,6.46,0.00,1.00,67.20,57.60,0 -67.20,52.80,6.63,0.00,1.00,72.00,57.60,0 -76.80,57.60,6.79,0.00,1.00,81.60,57.60,0 -81.60,57.60,6.95,0.00,1.00,86.40,57.60,0 -91.20,57.60,7.11,0.00,1.00,91.20,57.60,0 -100.80,57.60,7.27,0.00,1.00,96.00,57.60,0 -110.40,52.80,7.43,0.00,1.00,100.80,52.80,0 -115.20,52.80,7.60,0.00,1.00,110.40,52.80,0 -124.80,52.80,7.76,0.00,1.00,115.20,48.00,0 -129.60,48.00,7.92,0.00,1.00,120.00,48.00,0 -134.40,48.00,8.08,0.00,1.00,124.80,43.20,0 -139.20,43.20,8.24,0.00,1.00,129.60,38.40,0 -144.00,38.40,8.40,0.00,1.00,134.40,38.40,0 -148.80,38.40,8.57,0.00,1.00,139.20,33.60,0 -153.60,33.60,8.73,0.00,1.00,144.00,28.80,0 -158.40,28.80,8.89,0.00,1.00,148.80,24.00,0 -163.20,24.00,9.05,0.00,1.00,153.60,24.00,0 -163.20,24.00,9.21,0.00,1.00,158.40,19.20,0 -168.00,19.20,9.37,0.00,1.00,163.20,14.40,0 -172.80,14.40,9.54,0.00,1.00,168.00,9.60,0 -172.80,9.60,9.70,0.00,1.00,168.00,4.80,0 -177.60,4.80,9.86,0.00,1.00,172.80,0.00,0 -177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.18,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,10.34,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,10.51,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,10.67,0.00,1.00,-168.00,-19.20,0 --168.00,-19.20,10.83,0.00,1.00,-163.20,-24.00,0 --163.20,-24.00,10.99,0.00,1.00,-158.40,-24.00,0 --163.20,-24.00,11.15,0.00,1.00,-153.60,-28.80,0 --158.40,-28.80,11.31,0.00,1.00,-148.80,-33.60,0 --153.60,-33.60,11.47,0.00,1.00,-144.00,-38.40,0 --148.80,-38.40,11.64,0.00,1.00,-139.20,-38.40,0 --144.00,-38.40,11.80,0.00,1.00,-134.40,-43.20,0 --139.20,-43.20,11.96,0.00,1.00,-129.60,-48.00,0 --134.40,-48.00,12.12,0.00,1.00,-124.80,-48.00,0 --129.60,-48.00,12.28,0.00,1.00,-120.00,-52.80,0 --124.80,-52.80,12.44,0.00,1.00,-115.20,-52.80,0 --115.20,-52.80,12.61,0.00,1.00,-110.40,-57.60,0 --110.40,-52.80,12.77,0.00,1.00,-100.80,-57.60,0 --100.80,-57.60,12.93,0.00,1.00,-96.00,-57.60,0 --91.20,-57.60,13.09,0.00,1.00,-91.20,-57.60,0 --81.60,-57.60,13.25,0.00,1.00,-86.40,-57.60,0 --76.80,-57.60,13.41,0.00,1.00,-81.60,-57.60,0 --67.20,-52.80,13.58,0.00,1.00,-72.00,-52.80,0 --57.60,-52.80,13.74,0.00,1.00,-67.20,-52.80,0 --52.80,-48.00,13.90,0.00,1.00,-62.40,-48.00,0 --48.00,-48.00,14.06,0.00,1.00,-57.60,-43.20,0 --43.20,-43.20,14.22,0.00,1.00,-52.80,-43.20,0 --38.40,-43.20,14.38,0.00,1.00,-48.00,-38.40,0 --33.60,-38.40,14.55,0.00,1.00,-43.20,-33.60,0 --28.80,-33.60,14.71,0.00,1.00,-38.40,-33.60,0 --24.00,-28.80,14.87,0.00,1.00,-33.60,-28.80,0 --19.20,-28.80,15.03,0.00,1.00,-28.80,-24.00,0 --19.20,-24.00,15.19,0.00,1.00,-24.00,-19.20,0 --14.40,-19.20,15.35,0.00,1.00,-19.20,-14.40,0 --9.60,-14.40,15.52,0.00,1.00,-14.40,-14.40,0 --9.60,-9.60,15.68,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,15.84,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,16.00,0.00,1.00,-4.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,0.00,4.80,0 -4.80,4.80,15.84,0.00,1.00,4.80,9.60,0 -4.80,9.60,15.68,0.00,1.00,9.60,9.60,0 -9.60,9.60,15.52,0.00,1.00,9.60,14.40,0 -14.40,14.40,15.35,0.00,1.00,14.40,19.20,0 -14.40,19.20,15.19,0.00,1.00,19.20,24.00,0 -19.20,24.00,15.03,0.00,1.00,24.00,24.00,0 -24.00,24.00,14.87,0.00,1.00,28.80,28.80,0 -24.00,28.80,14.71,0.00,1.00,33.60,33.60,0 -28.80,33.60,14.55,0.00,1.00,38.40,38.40,0 -33.60,33.60,14.38,0.00,1.00,43.20,38.40,0 -38.40,38.40,14.22,0.00,1.00,48.00,43.20,0 -43.20,43.20,14.06,0.00,1.00,52.80,43.20,0 -48.00,43.20,13.90,0.00,1.00,57.60,48.00,0 -57.60,48.00,13.74,0.00,1.00,62.40,48.00,0 -62.40,48.00,13.58,0.00,1.00,67.20,52.80,0 -67.20,48.00,13.41,0.00,1.00,72.00,52.80,0 -76.80,52.80,13.25,0.00,1.00,81.60,52.80,0 -86.40,52.80,13.09,0.00,1.00,86.40,52.80,0 -91.20,52.80,12.93,0.00,1.00,91.20,52.80,0 -100.80,52.80,12.77,0.00,1.00,96.00,52.80,0 -105.60,48.00,12.61,0.00,1.00,105.60,48.00,0 -115.20,48.00,12.44,0.00,1.00,110.40,48.00,0 -120.00,48.00,12.28,0.00,1.00,115.20,48.00,0 -124.80,43.20,12.12,0.00,1.00,120.00,43.20,0 -134.40,43.20,11.96,0.00,1.00,124.80,43.20,0 -139.20,38.40,11.80,0.00,1.00,129.60,38.40,0 -144.00,38.40,11.64,0.00,1.00,134.40,33.60,0 -148.80,33.60,11.47,0.00,1.00,139.20,33.60,0 -153.60,28.80,11.31,0.00,1.00,144.00,28.80,0 -153.60,28.80,11.15,0.00,1.00,148.80,24.00,0 -158.40,24.00,10.99,0.00,1.00,153.60,19.20,0 -163.20,19.20,10.83,0.00,1.00,158.40,19.20,0 -168.00,14.40,10.67,0.00,1.00,163.20,14.40,0 -168.00,14.40,10.51,0.00,1.00,168.00,9.60,0 -172.80,9.60,10.34,0.00,1.00,172.80,4.80,0 -177.60,4.80,10.18,0.00,1.00,172.80,0.00,0 -177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,9.86,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,9.70,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,9.54,0.00,1.00,-172.80,-14.40,0 --168.00,-14.40,9.37,0.00,1.00,-168.00,-19.20,0 --168.00,-14.40,9.21,0.00,1.00,-163.20,-19.20,0 --163.20,-19.20,9.05,0.00,1.00,-158.40,-24.00,0 --158.40,-24.00,8.89,0.00,1.00,-153.60,-28.80,0 --153.60,-28.80,8.73,0.00,1.00,-148.80,-33.60,0 --153.60,-28.80,8.57,0.00,1.00,-144.00,-33.60,0 --148.80,-33.60,8.40,0.00,1.00,-139.20,-38.40,0 --144.00,-38.40,8.24,0.00,1.00,-134.40,-43.20,0 --139.20,-38.40,8.08,0.00,1.00,-129.60,-43.20,0 --134.40,-43.20,7.92,0.00,1.00,-124.80,-48.00,0 --124.80,-43.20,7.76,0.00,1.00,-120.00,-48.00,0 --120.00,-48.00,7.60,0.00,1.00,-115.20,-48.00,0 --115.20,-48.00,7.43,0.00,1.00,-110.40,-52.80,0 --105.60,-48.00,7.27,0.00,1.00,-105.60,-52.80,0 --100.80,-52.80,7.11,0.00,1.00,-96.00,-52.80,0 --91.20,-52.80,6.95,0.00,1.00,-91.20,-52.80,0 --86.40,-52.80,6.79,0.00,1.00,-86.40,-52.80,0 --76.80,-52.80,6.63,0.00,1.00,-81.60,-52.80,0 --67.20,-48.00,6.46,0.00,1.00,-72.00,-48.00,0 --62.40,-48.00,6.30,0.00,1.00,-67.20,-48.00,0 --57.60,-48.00,6.14,0.00,1.00,-62.40,-43.20,0 --48.00,-43.20,5.98,0.00,1.00,-57.60,-43.20,0 --43.20,-43.20,5.82,0.00,1.00,-52.80,-38.40,0 --38.40,-38.40,5.66,0.00,1.00,-48.00,-38.40,0 --33.60,-33.60,5.49,0.00,1.00,-43.20,-33.60,0 --28.80,-33.60,5.33,0.00,1.00,-38.40,-28.80,0 --24.00,-28.80,5.17,0.00,1.00,-33.60,-24.00,0 --24.00,-24.00,5.01,0.00,1.00,-28.80,-24.00,0 --19.20,-24.00,4.85,0.00,1.00,-24.00,-19.20,0 --14.40,-19.20,4.69,0.00,1.00,-19.20,-14.40,0 --14.40,-14.40,4.53,0.00,1.00,-14.40,-9.60,0 --9.60,-9.60,4.36,0.00,1.00,-9.60,-9.60,0 --4.80,-9.60,4.20,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,4.04,0.00,1.00,-4.80,0.00,0 -0.00,0.00,3.88,0.00,1.00,0.00,4.80,0 -4.80,4.80,3.72,0.00,1.00,4.80,4.80,0 -4.80,4.80,3.56,0.00,1.00,4.80,9.60,0 -9.60,9.60,3.39,0.00,1.00,9.60,14.40,0 -14.40,14.40,3.23,0.00,1.00,14.40,19.20,0 -19.20,19.20,3.07,0.00,1.00,19.20,19.20,0 -19.20,19.20,2.91,0.00,1.00,24.00,24.00,0 -24.00,24.00,2.75,0.00,1.00,24.00,28.80,0 -28.80,28.80,2.59,0.00,1.00,28.80,28.80,0 -33.60,28.80,2.42,0.00,1.00,33.60,33.60,0 -38.40,33.60,2.26,0.00,1.00,38.40,38.40,0 -43.20,33.60,2.10,0.00,1.00,43.20,38.40,0 -48.00,38.40,1.94,0.00,1.00,48.00,43.20,0 -52.80,38.40,1.78,0.00,1.00,52.80,43.20,0 -57.60,43.20,1.62,0.00,1.00,62.40,43.20,0 -62.40,43.20,1.45,0.00,1.00,67.20,48.00,0 -72.00,43.20,1.29,0.00,1.00,72.00,48.00,0 -76.80,48.00,1.13,0.00,1.00,76.80,48.00,0 -86.40,48.00,0.97,0.00,1.00,86.40,48.00,0 -91.20,48.00,0.81,0.00,1.00,91.20,48.00,0 -100.80,48.00,0.65,0.00,1.00,96.00,48.00,0 -105.60,48.00,0.48,0.00,1.00,105.60,48.00,0 -110.40,43.20,0.32,0.00,1.00,110.40,43.20,0 -120.00,43.20,0.16,0.00,1.00,115.20,43.20,0 -124.80,43.20,0.00,0.00,1.00,124.80,38.40,0 -129.60,38.40,0.00,0.00,1.00,129.60,38.40,0 -134.40,38.40,0.04,0.00,1.00,134.40,33.60,0 -139.20,33.60,0.08,0.00,1.00,139.20,33.60,0 -144.00,33.60,0.12,0.00,1.00,144.00,28.80,0 -148.80,28.80,0.16,0.00,1.00,148.80,24.00,0 -153.60,24.00,0.20,0.00,1.00,153.60,24.00,0 -158.40,24.00,0.24,0.00,1.00,158.40,19.20,0 -163.20,19.20,0.28,0.00,1.00,158.40,14.40,0 -163.20,14.40,0.32,0.00,1.00,163.20,14.40,0 -168.00,14.40,0.36,0.00,1.00,168.00,9.60,0 -172.80,9.60,0.40,0.00,1.00,172.80,4.80,0 -172.80,4.80,0.44,0.00,1.00,172.80,0.00,0 -177.60,0.00,0.48,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,0.52,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,0.56,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,0.60,0.00,1.00,-172.80,-14.40,0 --168.00,-14.40,0.64,0.00,1.00,-168.00,-14.40,0 --163.20,-14.40,0.68,0.00,1.00,-163.20,-19.20,0 --163.20,-19.20,0.72,0.00,1.00,-158.40,-24.00,0 --158.40,-24.00,0.76,0.00,1.00,-158.40,-24.00,0 --153.60,-24.00,0.80,0.00,1.00,-153.60,-28.80,0 --148.80,-28.80,0.84,0.00,1.00,-148.80,-33.60,0 --144.00,-33.60,0.88,0.00,1.00,-144.00,-33.60,0 --139.20,-33.60,0.92,0.00,1.00,-139.20,-38.40,0 --134.40,-38.40,0.96,0.00,1.00,-134.40,-38.40,0 --129.60,-38.40,1.00,0.00,1.00,-129.60,-43.20,0 --124.80,-43.20,1.04,0.00,1.00,-124.80,-43.20,0 --120.00,-43.20,1.08,0.00,1.00,-115.20,-48.00,0 --110.40,-43.20,1.12,0.00,1.00,-110.40,-48.00,0 --105.60,-48.00,1.16,0.00,1.00,-105.60,-48.00,0 --100.80,-48.00,1.20,0.00,1.00,-96.00,-48.00,0 --91.20,-48.00,1.24,0.00,1.00,-91.20,-48.00,0 --86.40,-48.00,1.28,0.00,1.00,-86.40,-48.00,0 --76.80,-48.00,1.32,0.00,1.00,-76.80,-48.00,0 --72.00,-43.20,1.36,0.00,1.00,-72.00,-43.20,0 --62.40,-43.20,1.40,0.00,1.00,-67.20,-43.20,0 --57.60,-43.20,1.44,0.00,1.00,-62.40,-43.20,0 --52.80,-38.40,1.48,0.00,1.00,-52.80,-38.40,0 --48.00,-38.40,1.52,0.00,1.00,-48.00,-38.40,0 --43.20,-33.60,1.56,0.00,1.00,-43.20,-33.60,0 --38.40,-33.60,1.60,0.00,1.00,-38.40,-28.80,0 --33.60,-28.80,1.64,0.00,1.00,-33.60,-28.80,0 --28.80,-28.80,1.68,0.00,1.00,-28.80,-24.00,0 --24.00,-24.00,1.72,0.00,1.00,-24.00,-19.20,0 --19.20,-19.20,1.76,0.00,1.00,-24.00,-19.20,0 --19.20,-19.20,1.80,0.00,1.00,-19.20,-14.40,0 --14.40,-14.40,1.84,0.00,1.00,-14.40,-9.60,0 --9.60,-9.60,1.88,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,1.92,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,1.96,0.00,1.00,-4.80,0.00,0 -0.00,0.00,2.01,0.00,1.00,0.00,4.80,0 -4.80,4.80,2.05,0.00,1.00,4.80,4.80,0 -4.80,4.80,2.09,0.00,1.00,4.80,9.60,0 -9.60,9.60,2.13,0.00,1.00,9.60,14.40,0 -14.40,14.40,2.17,0.00,1.00,14.40,14.40,0 -19.20,14.40,2.21,0.00,1.00,14.40,19.20,0 -24.00,19.20,2.25,0.00,1.00,19.20,24.00,0 -24.00,24.00,2.29,0.00,1.00,24.00,24.00,0 -28.80,24.00,2.33,0.00,1.00,28.80,28.80,0 -33.60,28.80,2.37,0.00,1.00,33.60,28.80,0 -38.40,28.80,2.41,0.00,1.00,38.40,33.60,0 -43.20,33.60,2.45,0.00,1.00,43.20,33.60,0 -48.00,33.60,2.49,0.00,1.00,48.00,38.40,0 -52.80,38.40,2.53,0.00,1.00,52.80,38.40,0 -62.40,38.40,2.57,0.00,1.00,57.60,38.40,0 -67.20,38.40,2.61,0.00,1.00,62.40,43.20,0 -72.00,38.40,2.65,0.00,1.00,72.00,43.20,0 -76.80,43.20,2.69,0.00,1.00,76.80,43.20,0 -86.40,43.20,2.73,0.00,1.00,86.40,43.20,0 -91.20,43.20,2.77,0.00,1.00,91.20,43.20,0 -96.00,43.20,2.81,0.00,1.00,100.80,43.20,0 -105.60,43.20,2.85,0.00,1.00,105.60,43.20,0 -110.40,38.40,2.89,0.00,1.00,110.40,38.40,0 -115.20,38.40,2.93,0.00,1.00,120.00,38.40,0 -120.00,38.40,2.97,0.00,1.00,124.80,38.40,0 -129.60,33.60,3.01,0.00,1.00,129.60,33.60,0 -134.40,33.60,3.05,0.00,1.00,134.40,33.60,0 -139.20,28.80,3.09,0.00,1.00,139.20,28.80,0 -144.00,28.80,3.13,0.00,1.00,144.00,28.80,0 -148.80,24.00,3.17,0.00,1.00,148.80,24.00,0 -153.60,24.00,3.21,0.00,1.00,153.60,19.20,0 -153.60,19.20,3.25,0.00,1.00,158.40,19.20,0 -158.40,19.20,3.29,0.00,1.00,163.20,14.40,0 -163.20,14.40,3.33,0.00,1.00,163.20,9.60,0 -168.00,9.60,3.37,0.00,1.00,168.00,9.60,0 -172.80,9.60,3.41,0.00,1.00,172.80,4.80,0 -172.80,4.80,3.45,0.00,1.00,172.80,0.00,0 -177.60,0.00,3.49,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,3.53,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,3.57,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,3.61,0.00,1.00,-172.80,-9.60,0 --168.00,-9.60,3.65,0.00,1.00,-168.00,-14.40,0 --163.20,-14.40,3.69,0.00,1.00,-163.20,-19.20,0 --158.40,-19.20,3.73,0.00,1.00,-163.20,-19.20,0 --153.60,-19.20,3.77,0.00,1.00,-158.40,-24.00,0 --153.60,-24.00,3.81,0.00,1.00,-153.60,-28.80,0 --148.80,-24.00,3.85,0.00,1.00,-148.80,-28.80,0 --144.00,-28.80,3.89,0.00,1.00,-144.00,-33.60,0 --139.20,-28.80,3.93,0.00,1.00,-139.20,-33.60,0 --134.40,-33.60,3.97,0.00,1.00,-134.40,-38.40,0 --129.60,-33.60,4.01,0.00,1.00,-129.60,-38.40,0 --120.00,-38.40,4.05,0.00,1.00,-124.80,-38.40,0 --115.20,-38.40,4.09,0.00,1.00,-120.00,-43.20,0 --110.40,-38.40,4.13,0.00,1.00,-110.40,-43.20,0 --105.60,-43.20,4.17,0.00,1.00,-105.60,-43.20,0 --96.00,-43.20,4.21,0.00,1.00,-100.80,-43.20,0 --91.20,-43.20,4.25,0.00,1.00,-91.20,-43.20,0 --86.40,-43.20,4.29,0.00,1.00,-86.40,-43.20,0 --76.80,-43.20,4.33,0.00,1.00,-76.80,-43.20,0 --72.00,-38.40,4.37,0.00,1.00,-72.00,-38.40,0 --67.20,-38.40,4.41,0.00,1.00,-62.40,-38.40,0 --62.40,-38.40,4.45,0.00,1.00,-57.60,-38.40,0 --52.80,-38.40,4.49,0.00,1.00,-52.80,-33.60,0 --48.00,-33.60,4.53,0.00,1.00,-48.00,-33.60,0 --43.20,-33.60,4.57,0.00,1.00,-43.20,-28.80,0 --38.40,-28.80,4.61,0.00,1.00,-38.40,-28.80,0 --33.60,-28.80,4.65,0.00,1.00,-33.60,-24.00,0 --28.80,-24.00,4.69,0.00,1.00,-28.80,-24.00,0 --24.00,-24.00,4.73,0.00,1.00,-24.00,-19.20,0 --24.00,-19.20,4.77,0.00,1.00,-19.20,-14.40,0 --19.20,-14.40,4.81,0.00,1.00,-14.40,-14.40,0 --14.40,-14.40,4.85,0.00,1.00,-14.40,-9.60,0 --9.60,-9.60,4.89,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,4.93,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,4.97,0.00,1.00,-4.80,0.00,0 -0.00,0.00,5.01,0.00,1.00,0.00,4.80,0 -4.80,4.80,5.05,0.00,1.00,4.80,4.80,0 -9.60,4.80,5.09,0.00,1.00,4.80,9.60,0 -9.60,9.60,5.13,0.00,1.00,9.60,9.60,0 -14.40,9.60,5.17,0.00,1.00,9.60,14.40,0 -19.20,14.40,5.21,0.00,1.00,14.40,19.20,0 -24.00,19.20,5.25,0.00,1.00,19.20,19.20,0 -28.80,19.20,5.29,0.00,1.00,24.00,24.00,0 -33.60,24.00,5.33,0.00,1.00,24.00,24.00,0 -38.40,24.00,5.37,0.00,1.00,28.80,28.80,0 -43.20,28.80,5.41,0.00,1.00,33.60,28.80,0 -48.00,28.80,5.45,0.00,1.00,38.40,33.60,0 -52.80,28.80,5.49,0.00,1.00,43.20,33.60,0 -57.60,33.60,5.53,0.00,1.00,48.00,33.60,0 -62.40,33.60,5.57,0.00,1.00,52.80,38.40,0 -67.20,33.60,5.61,0.00,1.00,62.40,38.40,0 -72.00,38.40,5.65,0.00,1.00,67.20,38.40,0 -81.60,38.40,5.69,0.00,1.00,76.80,38.40,0 -86.40,38.40,5.73,0.00,1.00,86.40,38.40,0 -91.20,38.40,5.77,0.00,1.00,91.20,38.40,0 -96.00,38.40,5.81,0.00,1.00,100.80,38.40,0 -105.60,38.40,5.85,0.00,1.00,105.60,38.40,0 -110.40,33.60,5.89,0.00,1.00,115.20,33.60,0 -115.20,33.60,5.93,0.00,1.00,120.00,33.60,0 -120.00,33.60,5.97,0.00,1.00,129.60,33.60,0 -124.80,33.60,6.02,0.00,1.00,134.40,28.80,0 -129.60,28.80,6.06,0.00,1.00,139.20,28.80,0 -134.40,28.80,6.10,0.00,1.00,144.00,24.00,0 -139.20,24.00,6.14,0.00,1.00,148.80,24.00,0 -144.00,24.00,6.18,0.00,1.00,153.60,19.20,0 -148.80,19.20,6.22,0.00,1.00,158.40,19.20,0 -153.60,19.20,6.26,0.00,1.00,158.40,14.40,0 -158.40,14.40,6.30,0.00,1.00,163.20,14.40,0 -163.20,14.40,6.34,0.00,1.00,168.00,9.60,0 -168.00,9.60,6.38,0.00,1.00,168.00,9.60,0 -168.00,9.60,6.42,0.00,1.00,172.80,4.80,0 -172.80,4.80,6.46,0.00,1.00,177.60,0.00,0 -177.60,0.00,6.50,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,6.54,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,6.58,0.00,1.00,-177.60,-9.60,0 --168.00,-9.60,6.62,0.00,1.00,-172.80,-9.60,0 --168.00,-9.60,6.66,0.00,1.00,-168.00,-14.40,0 --163.20,-14.40,6.70,0.00,1.00,-168.00,-14.40,0 --158.40,-14.40,6.74,0.00,1.00,-163.20,-19.20,0 --153.60,-19.20,6.78,0.00,1.00,-158.40,-19.20,0 --148.80,-19.20,6.82,0.00,1.00,-158.40,-24.00,0 --144.00,-24.00,6.86,0.00,1.00,-153.60,-24.00,0 --139.20,-24.00,6.90,0.00,1.00,-148.80,-28.80,0 --134.40,-28.80,6.94,0.00,1.00,-144.00,-28.80,0 --129.60,-28.80,6.98,0.00,1.00,-139.20,-33.60,0 --124.80,-33.60,7.02,0.00,1.00,-134.40,-33.60,0 --120.00,-33.60,7.06,0.00,1.00,-129.60,-33.60,0 --115.20,-33.60,7.10,0.00,1.00,-120.00,-38.40,0 --110.40,-33.60,7.14,0.00,1.00,-115.20,-38.40,0 --105.60,-38.40,7.18,0.00,1.00,-105.60,-38.40,0 --96.00,-38.40,7.22,0.00,1.00,-100.80,-38.40,0 --91.20,-38.40,7.26,0.00,1.00,-91.20,-38.40,0 --86.40,-38.40,7.30,0.00,1.00,-86.40,-38.40,0 --81.60,-38.40,7.34,0.00,1.00,-76.80,-38.40,0 --72.00,-38.40,7.38,0.00,1.00,-67.20,-38.40,0 --67.20,-33.60,7.42,0.00,1.00,-62.40,-33.60,0 --62.40,-33.60,7.46,0.00,1.00,-52.80,-33.60,0 --57.60,-33.60,7.50,0.00,1.00,-48.00,-33.60,0 --52.80,-28.80,7.54,0.00,1.00,-43.20,-28.80,0 --48.00,-28.80,7.58,0.00,1.00,-38.40,-28.80,0 --43.20,-28.80,7.62,0.00,1.00,-33.60,-24.00,0 --38.40,-24.00,7.66,0.00,1.00,-28.80,-24.00,0 --33.60,-24.00,7.70,0.00,1.00,-24.00,-19.20,0 --28.80,-19.20,7.74,0.00,1.00,-24.00,-19.20,0 --24.00,-19.20,7.78,0.00,1.00,-19.20,-14.40,0 --19.20,-14.40,7.82,0.00,1.00,-14.40,-9.60,0 --14.40,-9.60,7.86,0.00,1.00,-9.60,-9.60,0 --9.60,-9.60,7.90,0.00,1.00,-9.60,-4.80,0 --9.60,-4.80,7.94,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,7.98,0.00,1.00,-4.80,0.00,0 -0.00,0.00,8.02,0.00,1.00,0.00,4.80,0 -4.80,4.80,8.06,0.00,1.00,4.80,4.80,0 -9.60,4.80,8.10,0.00,1.00,4.80,9.60,0 -14.40,9.60,8.14,0.00,1.00,9.60,9.60,0 -14.40,9.60,8.18,0.00,1.00,9.60,14.40,0 -19.20,14.40,8.22,0.00,1.00,14.40,14.40,0 -24.00,14.40,8.26,0.00,1.00,14.40,19.20,0 -28.80,19.20,8.30,0.00,1.00,19.20,19.20,0 -33.60,19.20,8.34,0.00,1.00,24.00,24.00,0 -38.40,19.20,8.38,0.00,1.00,28.80,24.00,0 -43.20,24.00,8.42,0.00,1.00,28.80,24.00,0 -48.00,24.00,8.46,0.00,1.00,33.60,28.80,0 -52.80,28.80,8.50,0.00,1.00,38.40,28.80,0 -57.60,28.80,8.54,0.00,1.00,48.00,28.80,0 -62.40,28.80,8.58,0.00,1.00,52.80,33.60,0 -67.20,28.80,8.62,0.00,1.00,57.60,33.60,0 -76.80,33.60,8.66,0.00,1.00,67.20,33.60,0 -81.60,33.60,8.70,0.00,1.00,76.80,33.60,0 -86.40,33.60,8.74,0.00,1.00,81.60,33.60,0 -91.20,33.60,8.78,0.00,1.00,91.20,33.60,0 -96.00,33.60,8.82,0.00,1.00,100.80,33.60,0 -100.80,33.60,8.86,0.00,1.00,110.40,33.60,0 -110.40,28.80,8.90,0.00,1.00,115.20,33.60,0 -115.20,28.80,8.94,0.00,1.00,124.80,28.80,0 -120.00,28.80,8.98,0.00,1.00,129.60,28.80,0 -124.80,28.80,9.02,0.00,1.00,139.20,28.80,0 -129.60,24.00,9.06,0.00,1.00,144.00,24.00,0 -134.40,24.00,9.10,0.00,1.00,148.80,24.00,0 -139.20,24.00,9.14,0.00,1.00,153.60,19.20,0 -144.00,19.20,9.18,0.00,1.00,153.60,19.20,0 -148.80,19.20,9.22,0.00,1.00,158.40,14.40,0 -153.60,14.40,9.26,0.00,1.00,163.20,14.40,0 -158.40,14.40,9.30,0.00,1.00,163.20,9.60,0 -163.20,9.60,9.34,0.00,1.00,168.00,9.60,0 -168.00,9.60,9.38,0.00,1.00,172.80,4.80,0 -168.00,4.80,9.42,0.00,1.00,172.80,4.80,0 -172.80,4.80,9.46,0.00,1.00,177.60,0.00,0 -177.60,0.00,9.50,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,9.54,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,9.58,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,9.62,0.00,1.00,-172.80,-9.60,0 --168.00,-9.60,9.66,0.00,1.00,-172.80,-9.60,0 --163.20,-9.60,9.70,0.00,1.00,-168.00,-14.40,0 --158.40,-14.40,9.74,0.00,1.00,-163.20,-14.40,0 --153.60,-14.40,9.78,0.00,1.00,-163.20,-19.20,0 --148.80,-19.20,9.82,0.00,1.00,-158.40,-19.20,0 --144.00,-19.20,9.86,0.00,1.00,-153.60,-24.00,0 --139.20,-24.00,9.90,0.00,1.00,-153.60,-24.00,0 --134.40,-24.00,9.94,0.00,1.00,-148.80,-28.80,0 --129.60,-24.00,9.98,0.00,1.00,-144.00,-28.80,0 --124.80,-28.80,10.03,0.00,1.00,-139.20,-28.80,0 --120.00,-28.80,10.07,0.00,1.00,-129.60,-33.60,0 --115.20,-28.80,10.11,0.00,1.00,-124.80,-33.60,0 --110.40,-28.80,10.15,0.00,1.00,-115.20,-33.60,0 --100.80,-33.60,10.19,0.00,1.00,-110.40,-33.60,0 --96.00,-33.60,10.23,0.00,1.00,-100.80,-33.60,0 --91.20,-33.60,10.27,0.00,1.00,-91.20,-33.60,0 --86.40,-33.60,10.31,0.00,1.00,-81.60,-33.60,0 --81.60,-33.60,10.35,0.00,1.00,-76.80,-33.60,0 --76.80,-33.60,10.39,0.00,1.00,-67.20,-33.60,0 --67.20,-28.80,10.43,0.00,1.00,-57.60,-28.80,0 --62.40,-28.80,10.47,0.00,1.00,-52.80,-28.80,0 --57.60,-28.80,10.51,0.00,1.00,-48.00,-28.80,0 --52.80,-28.80,10.55,0.00,1.00,-38.40,-24.00,0 --48.00,-24.00,10.59,0.00,1.00,-33.60,-24.00,0 --43.20,-24.00,10.63,0.00,1.00,-28.80,-24.00,0 --38.40,-19.20,10.67,0.00,1.00,-28.80,-19.20,0 --33.60,-19.20,10.71,0.00,1.00,-24.00,-19.20,0 --28.80,-19.20,10.75,0.00,1.00,-19.20,-14.40,0 --24.00,-14.40,10.79,0.00,1.00,-14.40,-14.40,0 --19.20,-14.40,10.83,0.00,1.00,-14.40,-9.60,0 --14.40,-9.60,10.87,0.00,1.00,-9.60,-9.60,0 --14.40,-9.60,10.91,0.00,1.00,-9.60,-4.80,0 --9.60,-4.80,10.95,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,10.99,0.00,1.00,-4.80,0.00,0 -0.00,0.00,11.03,0.00,1.00,0.00,0.00,0 -4.80,0.00,11.07,0.00,1.00,0.00,4.80,0 -9.60,4.80,11.11,0.00,1.00,4.80,4.80,0 -14.40,4.80,11.15,0.00,1.00,4.80,9.60,0 -19.20,9.60,11.19,0.00,1.00,9.60,9.60,0 -19.20,9.60,11.23,0.00,1.00,9.60,14.40,0 -24.00,14.40,11.27,0.00,1.00,14.40,14.40,0 -28.80,14.40,11.31,0.00,1.00,19.20,19.20,0 -33.60,14.40,11.35,0.00,1.00,19.20,19.20,0 -38.40,19.20,11.39,0.00,1.00,24.00,19.20,0 -43.20,19.20,11.43,0.00,1.00,28.80,24.00,0 -48.00,24.00,11.47,0.00,1.00,33.60,24.00,0 -52.80,24.00,11.51,0.00,1.00,38.40,24.00,0 -57.60,24.00,11.55,0.00,1.00,43.20,24.00,0 -62.40,24.00,11.59,0.00,1.00,48.00,28.80,0 -72.00,24.00,11.63,0.00,1.00,52.80,28.80,0 -76.80,28.80,11.67,0.00,1.00,62.40,28.80,0 -81.60,28.80,11.71,0.00,1.00,72.00,28.80,0 -86.40,28.80,11.75,0.00,1.00,81.60,28.80,0 -91.20,28.80,11.79,0.00,1.00,91.20,28.80,0 -96.00,28.80,11.83,0.00,1.00,100.80,28.80,0 -100.80,28.80,11.87,0.00,1.00,110.40,28.80,0 -105.60,28.80,11.91,0.00,1.00,120.00,28.80,0 -110.40,24.00,11.95,0.00,1.00,129.60,24.00,0 -120.00,24.00,11.99,0.00,1.00,134.40,24.00,0 -124.80,24.00,12.03,0.00,1.00,139.20,24.00,0 -129.60,24.00,12.07,0.00,1.00,144.00,24.00,0 -134.40,19.20,12.11,0.00,1.00,148.80,19.20,0 -139.20,19.20,12.15,0.00,1.00,153.60,19.20,0 -144.00,19.20,12.19,0.00,1.00,158.40,14.40,0 -148.80,14.40,12.23,0.00,1.00,163.20,14.40,0 -153.60,14.40,12.27,0.00,1.00,163.20,14.40,0 -158.40,9.60,12.31,0.00,1.00,168.00,9.60,0 -158.40,9.60,12.35,0.00,1.00,168.00,9.60,0 -163.20,9.60,12.39,0.00,1.00,172.80,4.80,0 -168.00,4.80,12.43,0.00,1.00,172.80,4.80,0 -172.80,4.80,12.47,0.00,1.00,177.60,0.00,0 -177.60,0.00,12.51,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,12.55,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,12.59,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,12.63,0.00,1.00,-172.80,-9.60,0 --163.20,-9.60,12.67,0.00,1.00,-172.80,-9.60,0 --158.40,-9.60,12.71,0.00,1.00,-168.00,-14.40,0 --158.40,-9.60,12.75,0.00,1.00,-168.00,-14.40,0 --153.60,-14.40,12.79,0.00,1.00,-163.20,-14.40,0 --148.80,-14.40,12.83,0.00,1.00,-163.20,-19.20,0 --144.00,-19.20,12.87,0.00,1.00,-158.40,-19.20,0 --139.20,-19.20,12.91,0.00,1.00,-153.60,-24.00,0 --134.40,-19.20,12.95,0.00,1.00,-148.80,-24.00,0 --129.60,-24.00,12.99,0.00,1.00,-144.00,-24.00,0 --124.80,-24.00,13.03,0.00,1.00,-139.20,-24.00,0 --120.00,-24.00,13.07,0.00,1.00,-134.40,-28.80,0 --110.40,-24.00,13.11,0.00,1.00,-129.60,-28.80,0 --105.60,-28.80,13.15,0.00,1.00,-120.00,-28.80,0 --100.80,-28.80,13.19,0.00,1.00,-110.40,-28.80,0 --96.00,-28.80,13.23,0.00,1.00,-100.80,-28.80,0 --91.20,-28.80,13.27,0.00,1.00,-91.20,-28.80,0 --86.40,-28.80,13.31,0.00,1.00,-81.60,-28.80,0 --81.60,-28.80,13.35,0.00,1.00,-72.00,-28.80,0 --76.80,-28.80,13.39,0.00,1.00,-62.40,-28.80,0 --72.00,-24.00,13.43,0.00,1.00,-52.80,-24.00,0 --62.40,-24.00,13.47,0.00,1.00,-48.00,-24.00,0 --57.60,-24.00,13.51,0.00,1.00,-43.20,-24.00,0 --52.80,-24.00,13.55,0.00,1.00,-38.40,-24.00,0 --48.00,-24.00,13.59,0.00,1.00,-33.60,-19.20,0 --43.20,-19.20,13.63,0.00,1.00,-28.80,-19.20,0 --38.40,-19.20,13.67,0.00,1.00,-24.00,-19.20,0 --33.60,-14.40,13.71,0.00,1.00,-19.20,-14.40,0 --28.80,-14.40,13.75,0.00,1.00,-19.20,-14.40,0 --24.00,-14.40,13.79,0.00,1.00,-14.40,-9.60,0 --19.20,-9.60,13.83,0.00,1.00,-9.60,-9.60,0 --19.20,-9.60,13.87,0.00,1.00,-9.60,-4.80,0 --14.40,-4.80,13.91,0.00,1.00,-4.80,-4.80,0 --9.60,-4.80,13.95,0.00,1.00,-4.80,-0.00,0 --4.80,-0.00,13.99,0.00,1.00,-0.00,0.00,0 -0.00,0.00,14.04,0.00,1.00,0.00,0.00,0 -4.80,0.00,14.08,0.00,1.00,0.00,4.80,0 -9.60,4.80,14.12,0.00,1.00,4.80,4.80,0 -14.40,4.80,14.16,0.00,1.00,4.80,9.60,0 -19.20,9.60,14.20,0.00,1.00,9.60,9.60,0 -24.00,9.60,14.24,0.00,1.00,9.60,9.60,0 -28.80,9.60,14.28,0.00,1.00,14.40,14.40,0 -33.60,14.40,14.32,0.00,1.00,14.40,14.40,0 -38.40,14.40,14.36,0.00,1.00,19.20,14.40,0 -43.20,14.40,14.40,0.00,1.00,19.20,19.20,0 -48.00,14.40,14.44,0.00,1.00,24.00,19.20,0 -52.80,19.20,14.48,0.00,1.00,28.80,19.20,0 -57.60,19.20,14.52,0.00,1.00,33.60,19.20,0 -62.40,19.20,14.56,0.00,1.00,38.40,24.00,0 -67.20,19.20,14.60,0.00,1.00,43.20,24.00,0 -72.00,24.00,14.64,0.00,1.00,48.00,24.00,0 -76.80,24.00,14.68,0.00,1.00,57.60,24.00,0 -81.60,24.00,14.72,0.00,1.00,67.20,24.00,0 -86.40,24.00,14.76,0.00,1.00,81.60,24.00,0 -91.20,24.00,14.80,0.00,1.00,91.20,24.00,0 -96.00,24.00,14.84,0.00,1.00,105.60,24.00,0 -100.80,24.00,14.88,0.00,1.00,115.20,24.00,0 -105.60,24.00,14.92,0.00,1.00,124.80,24.00,0 -110.40,19.20,14.96,0.00,1.00,134.40,19.20,0 -115.20,19.20,15.00,0.00,1.00,139.20,19.20,0 -120.00,19.20,15.04,0.00,1.00,144.00,19.20,0 -124.80,19.20,15.08,0.00,1.00,148.80,19.20,0 -129.60,19.20,15.12,0.00,1.00,153.60,19.20,0 -134.40,14.40,15.16,0.00,1.00,158.40,14.40,0 -139.20,14.40,15.20,0.00,1.00,163.20,14.40,0 -144.00,14.40,15.24,0.00,1.00,163.20,14.40,0 -148.80,9.60,15.28,0.00,1.00,168.00,9.60,0 -153.60,9.60,15.32,0.00,1.00,168.00,9.60,0 -158.40,9.60,15.36,0.00,1.00,172.80,4.80,0 -163.20,4.80,15.40,0.00,1.00,172.80,4.80,0 -168.00,4.80,15.44,0.00,1.00,177.60,4.80,0 -172.80,4.80,15.48,0.00,1.00,177.60,0.00,0 -177.60,0.00,15.52,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,15.56,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,15.60,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,15.64,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,15.68,0.00,1.00,-172.80,-9.60,0 --158.40,-9.60,15.72,0.00,1.00,-172.80,-9.60,0 --153.60,-9.60,15.76,0.00,1.00,-168.00,-14.40,0 --148.80,-9.60,15.80,0.00,1.00,-168.00,-14.40,0 --144.00,-14.40,15.84,0.00,1.00,-163.20,-14.40,0 --139.20,-14.40,15.88,0.00,1.00,-163.20,-19.20,0 --134.40,-14.40,15.92,0.00,1.00,-158.40,-19.20,0 --129.60,-19.20,15.96,0.00,1.00,-153.60,-19.20,0 --124.80,-19.20,16.00,0.00,1.00,-148.80,-19.20,0 --120.00,-19.20,16.00,0.00,1.00,-144.00,-19.20,0 --115.20,-19.20,15.96,0.00,1.00,-139.20,-24.00,0 --110.40,-19.20,15.92,0.00,1.00,-134.40,-24.00,0 --105.60,-24.00,15.88,0.00,1.00,-124.80,-24.00,0 --100.80,-24.00,15.84,0.00,1.00,-115.20,-24.00,0 --96.00,-24.00,15.80,0.00,1.00,-105.60,-24.00,0 --91.20,-24.00,15.76,0.00,1.00,-91.20,-24.00,0 --86.40,-24.00,15.72,0.00,1.00,-81.60,-24.00,0 --81.60,-24.00,15.68,0.00,1.00,-67.20,-24.00,0 --76.80,-24.00,15.64,0.00,1.00,-57.60,-24.00,0 --72.00,-24.00,15.60,0.00,1.00,-48.00,-24.00,0 --67.20,-19.20,15.56,0.00,1.00,-43.20,-19.20,0 --62.40,-19.20,15.52,0.00,1.00,-38.40,-19.20,0 --57.60,-19.20,15.48,0.00,1.00,-33.60,-19.20,0 --52.80,-19.20,15.44,0.00,1.00,-28.80,-19.20,0 --48.00,-14.40,15.40,0.00,1.00,-24.00,-14.40,0 --43.20,-14.40,15.36,0.00,1.00,-19.20,-14.40,0 --38.40,-14.40,15.32,0.00,1.00,-19.20,-14.40,0 --33.60,-14.40,15.28,0.00,1.00,-14.40,-9.60,0 --28.80,-9.60,15.24,0.00,1.00,-14.40,-9.60,0 --24.00,-9.60,15.20,0.00,1.00,-9.60,-9.60,0 --19.20,-9.60,15.16,0.00,1.00,-9.60,-4.80,0 --14.40,-4.80,15.12,0.00,1.00,-4.80,-4.80,0 --9.60,-4.80,15.08,0.00,1.00,-4.80,-0.00,0 --4.80,-0.00,15.04,0.00,1.00,-0.00,0.00,0 -0.00,0.00,15.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,14.96,0.00,1.00,0.00,4.80,0 -9.60,4.80,14.92,0.00,1.00,4.80,4.80,0 -14.40,4.80,14.88,0.00,1.00,4.80,4.80,0 -19.20,4.80,14.84,0.00,1.00,4.80,9.60,0 -24.00,9.60,14.80,0.00,1.00,9.60,9.60,0 -28.80,9.60,14.76,0.00,1.00,9.60,9.60,0 -33.60,9.60,14.72,0.00,1.00,9.60,9.60,0 -38.40,9.60,14.68,0.00,1.00,14.40,14.40,0 -43.20,14.40,14.64,0.00,1.00,14.40,14.40,0 -48.00,14.40,14.60,0.00,1.00,19.20,14.40,0 -52.80,14.40,14.56,0.00,1.00,24.00,14.40,0 -57.60,14.40,14.52,0.00,1.00,24.00,19.20,0 -62.40,14.40,14.48,0.00,1.00,28.80,19.20,0 -67.20,14.40,14.44,0.00,1.00,38.40,19.20,0 -72.00,19.20,14.40,0.00,1.00,43.20,19.20,0 -76.80,19.20,14.36,0.00,1.00,52.80,19.20,0 -81.60,19.20,14.32,0.00,1.00,62.40,19.20,0 -86.40,19.20,14.28,0.00,1.00,76.80,19.20,0 -91.20,19.20,14.24,0.00,1.00,96.00,19.20,0 -96.00,19.20,14.20,0.00,1.00,110.40,19.20,0 -100.80,19.20,14.16,0.00,1.00,120.00,19.20,0 -105.60,19.20,14.12,0.00,1.00,134.40,19.20,0 -110.40,19.20,14.08,0.00,1.00,139.20,19.20,0 -115.20,14.40,14.04,0.00,1.00,148.80,14.40,0 -120.00,14.40,13.99,0.00,1.00,153.60,14.40,0 -124.80,14.40,13.95,0.00,1.00,158.40,14.40,0 -129.60,14.40,13.91,0.00,1.00,158.40,14.40,0 -134.40,14.40,13.87,0.00,1.00,163.20,14.40,0 -139.20,9.60,13.83,0.00,1.00,163.20,9.60,0 -144.00,9.60,13.79,0.00,1.00,168.00,9.60,0 -148.80,9.60,13.75,0.00,1.00,168.00,9.60,0 -153.60,9.60,13.71,0.00,1.00,172.80,4.80,0 -158.40,4.80,13.67,0.00,1.00,172.80,4.80,0 -163.20,4.80,13.63,0.00,1.00,172.80,4.80,0 -168.00,4.80,13.59,0.00,1.00,177.60,0.00,0 -172.80,0.00,13.55,0.00,1.00,177.60,0.00,0 -177.60,0.00,13.51,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,13.47,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,13.43,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,13.39,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,13.35,0.00,1.00,-172.80,-4.80,0 --158.40,-4.80,13.31,0.00,1.00,-172.80,-9.60,0 --153.60,-9.60,13.27,0.00,1.00,-172.80,-9.60,0 --148.80,-9.60,13.23,0.00,1.00,-168.00,-9.60,0 --144.00,-9.60,13.19,0.00,1.00,-168.00,-14.40,0 --139.20,-9.60,13.15,0.00,1.00,-163.20,-14.40,0 --134.40,-14.40,13.11,0.00,1.00,-163.20,-14.40,0 --129.60,-14.40,13.07,0.00,1.00,-158.40,-14.40,0 --124.80,-14.40,13.03,0.00,1.00,-158.40,-14.40,0 --120.00,-14.40,12.99,0.00,1.00,-153.60,-19.20,0 --115.20,-14.40,12.95,0.00,1.00,-148.80,-19.20,0 --110.40,-19.20,12.91,0.00,1.00,-139.20,-19.20,0 --105.60,-19.20,12.87,0.00,1.00,-134.40,-19.20,0 --100.80,-19.20,12.83,0.00,1.00,-120.00,-19.20,0 --96.00,-19.20,12.79,0.00,1.00,-110.40,-19.20,0 --91.20,-19.20,12.75,0.00,1.00,-96.00,-19.20,0 --86.40,-19.20,12.71,0.00,1.00,-76.80,-19.20,0 --81.60,-19.20,12.67,0.00,1.00,-62.40,-19.20,0 --76.80,-19.20,12.63,0.00,1.00,-52.80,-19.20,0 --72.00,-19.20,12.59,0.00,1.00,-43.20,-19.20,0 --67.20,-14.40,12.55,0.00,1.00,-38.40,-19.20,0 --62.40,-14.40,12.51,0.00,1.00,-28.80,-14.40,0 --57.60,-14.40,12.47,0.00,1.00,-24.00,-14.40,0 --52.80,-14.40,12.43,0.00,1.00,-24.00,-14.40,0 --48.00,-14.40,12.39,0.00,1.00,-19.20,-14.40,0 --43.20,-14.40,12.35,0.00,1.00,-14.40,-9.60,0 --38.40,-9.60,12.31,0.00,1.00,-14.40,-9.60,0 --33.60,-9.60,12.27,0.00,1.00,-9.60,-9.60,0 --28.80,-9.60,12.23,0.00,1.00,-9.60,-9.60,0 --24.00,-9.60,12.19,0.00,1.00,-9.60,-4.80,0 --19.20,-4.80,12.15,0.00,1.00,-4.80,-4.80,0 --14.40,-4.80,12.11,0.00,1.00,-4.80,-4.80,0 --9.60,-4.80,12.07,0.00,1.00,-4.80,-0.00,0 --4.80,-0.00,12.03,0.00,1.00,-0.00,0.00,0 -0.00,0.00,11.99,0.00,1.00,0.00,0.00,0 -4.80,0.00,11.95,0.00,1.00,0.00,0.00,0 -9.60,0.00,11.91,0.00,1.00,0.00,4.80,0 -14.40,4.80,11.87,0.00,1.00,4.80,4.80,0 -19.20,4.80,11.83,0.00,1.00,4.80,4.80,0 -24.00,4.80,11.79,0.00,1.00,4.80,4.80,0 -28.80,4.80,11.75,0.00,1.00,4.80,9.60,0 -33.60,9.60,11.71,0.00,1.00,9.60,9.60,0 -38.40,9.60,11.67,0.00,1.00,9.60,9.60,0 -43.20,9.60,11.63,0.00,1.00,14.40,9.60,0 -48.00,9.60,11.59,0.00,1.00,14.40,9.60,0 -52.80,9.60,11.55,0.00,1.00,14.40,14.40,0 -57.60,9.60,11.51,0.00,1.00,19.20,14.40,0 -62.40,9.60,11.47,0.00,1.00,24.00,14.40,0 -67.20,14.40,11.43,0.00,1.00,28.80,14.40,0 -72.00,14.40,11.39,0.00,1.00,33.60,14.40,0 -76.80,14.40,11.35,0.00,1.00,43.20,14.40,0 -81.60,14.40,11.31,0.00,1.00,57.60,14.40,0 -86.40,14.40,11.27,0.00,1.00,76.80,14.40,0 -91.20,14.40,11.23,0.00,1.00,96.00,14.40,0 -96.00,14.40,11.19,0.00,1.00,115.20,14.40,0 -100.80,14.40,11.15,0.00,1.00,129.60,14.40,0 -105.60,14.40,11.11,0.00,1.00,139.20,14.40,0 -110.40,14.40,11.07,0.00,1.00,148.80,14.40,0 -115.20,9.60,11.03,0.00,1.00,153.60,14.40,0 -120.00,9.60,10.99,0.00,1.00,158.40,9.60,0 -124.80,9.60,10.95,0.00,1.00,163.20,9.60,0 -129.60,9.60,10.91,0.00,1.00,163.20,9.60,0 -134.40,9.60,10.87,0.00,1.00,168.00,9.60,0 -139.20,9.60,10.83,0.00,1.00,168.00,9.60,0 -144.00,9.60,10.79,0.00,1.00,172.80,9.60,0 -148.80,4.80,10.75,0.00,1.00,172.80,4.80,0 -153.60,4.80,10.71,0.00,1.00,172.80,4.80,0 -158.40,4.80,10.67,0.00,1.00,172.80,4.80,0 -163.20,4.80,10.63,0.00,1.00,177.60,4.80,0 -168.00,4.80,10.59,0.00,1.00,177.60,0.00,0 -172.80,0.00,10.55,0.00,1.00,177.60,0.00,0 -177.60,0.00,10.51,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.47,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,10.43,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,10.39,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,10.35,0.00,1.00,-177.60,-4.80,0 --158.40,-4.80,10.31,0.00,1.00,-172.80,-4.80,0 --153.60,-4.80,10.27,0.00,1.00,-172.80,-9.60,0 --148.80,-4.80,10.23,0.00,1.00,-172.80,-9.60,0 --144.00,-9.60,10.19,0.00,1.00,-172.80,-9.60,0 --139.20,-9.60,10.15,0.00,1.00,-168.00,-9.60,0 --134.40,-9.60,10.11,0.00,1.00,-168.00,-9.60,0 --129.60,-9.60,10.07,0.00,1.00,-163.20,-9.60,0 --124.80,-9.60,10.03,0.00,1.00,-163.20,-14.40,0 --120.00,-9.60,9.98,0.00,1.00,-158.40,-14.40,0 --115.20,-9.60,9.94,0.00,1.00,-153.60,-14.40,0 --110.40,-14.40,9.90,0.00,1.00,-148.80,-14.40,0 --105.60,-14.40,9.86,0.00,1.00,-139.20,-14.40,0 --100.80,-14.40,9.82,0.00,1.00,-129.60,-14.40,0 --96.00,-14.40,9.78,0.00,1.00,-115.20,-14.40,0 --91.20,-14.40,9.74,0.00,1.00,-96.00,-14.40,0 --86.40,-14.40,9.70,0.00,1.00,-76.80,-14.40,0 --81.60,-14.40,9.66,0.00,1.00,-57.60,-14.40,0 --76.80,-14.40,9.62,0.00,1.00,-43.20,-14.40,0 --72.00,-14.40,9.58,0.00,1.00,-33.60,-14.40,0 --67.20,-14.40,9.54,0.00,1.00,-28.80,-14.40,0 --62.40,-9.60,9.50,0.00,1.00,-24.00,-14.40,0 --57.60,-9.60,9.46,0.00,1.00,-19.20,-9.60,0 --52.80,-9.60,9.42,0.00,1.00,-14.40,-9.60,0 --48.00,-9.60,9.38,0.00,1.00,-14.40,-9.60,0 --43.20,-9.60,9.34,0.00,1.00,-14.40,-9.60,0 --38.40,-9.60,9.30,0.00,1.00,-9.60,-9.60,0 --33.60,-9.60,9.26,0.00,1.00,-9.60,-4.80,0 --28.80,-4.80,9.22,0.00,1.00,-4.80,-4.80,0 --24.00,-4.80,9.18,0.00,1.00,-4.80,-4.80,0 --19.20,-4.80,9.14,0.00,1.00,-4.80,-4.80,0 --14.40,-4.80,9.10,0.00,1.00,-4.80,-0.00,0 --9.60,-0.00,9.06,0.00,1.00,-0.00,-0.00,0 --4.80,-0.00,9.02,0.00,1.00,-0.00,0.00,0 -0.00,0.00,8.98,0.00,1.00,0.00,0.00,0 -4.80,0.00,8.94,0.00,1.00,0.00,0.00,0 -9.60,0.00,8.90,0.00,1.00,0.00,0.00,0 -14.40,0.00,8.86,0.00,1.00,0.00,4.80,0 -19.20,4.80,8.82,0.00,1.00,4.80,4.80,0 -24.00,4.80,8.78,0.00,1.00,4.80,4.80,0 -28.80,4.80,8.74,0.00,1.00,4.80,4.80,0 -33.60,4.80,8.70,0.00,1.00,4.80,4.80,0 -38.40,4.80,8.66,0.00,1.00,4.80,4.80,0 -43.20,4.80,8.62,0.00,1.00,9.60,4.80,0 -48.00,4.80,8.58,0.00,1.00,9.60,9.60,0 -52.80,4.80,8.54,0.00,1.00,9.60,9.60,0 -57.60,4.80,8.50,0.00,1.00,14.40,9.60,0 -62.40,9.60,8.46,0.00,1.00,14.40,9.60,0 -67.20,9.60,8.42,0.00,1.00,19.20,9.60,0 -72.00,9.60,8.38,0.00,1.00,24.00,9.60,0 -76.80,9.60,8.34,0.00,1.00,33.60,9.60,0 -81.60,9.60,8.30,0.00,1.00,43.20,9.60,0 -86.40,9.60,8.26,0.00,1.00,67.20,9.60,0 -91.20,9.60,8.22,0.00,1.00,96.00,9.60,0 -96.00,9.60,8.18,0.00,1.00,124.80,9.60,0 -100.80,9.60,8.14,0.00,1.00,144.00,9.60,0 -105.60,9.60,8.10,0.00,1.00,153.60,9.60,0 -110.40,9.60,8.06,0.00,1.00,158.40,9.60,0 -115.20,9.60,8.02,0.00,1.00,163.20,9.60,0 -120.00,9.60,7.98,0.00,1.00,168.00,9.60,0 -124.80,4.80,7.94,0.00,1.00,168.00,9.60,0 -129.60,4.80,7.90,0.00,1.00,168.00,4.80,0 -134.40,4.80,7.86,0.00,1.00,172.80,4.80,0 -139.20,4.80,7.82,0.00,1.00,172.80,4.80,0 -144.00,4.80,7.78,0.00,1.00,172.80,4.80,0 -148.80,4.80,7.74,0.00,1.00,172.80,4.80,0 -153.60,4.80,7.70,0.00,1.00,177.60,4.80,0 -158.40,4.80,7.66,0.00,1.00,177.60,4.80,0 -163.20,4.80,7.62,0.00,1.00,177.60,0.00,0 -168.00,0.00,7.58,0.00,1.00,177.60,0.00,0 -172.80,0.00,7.54,0.00,1.00,177.60,0.00,0 -177.60,0.00,7.50,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,7.46,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,7.42,0.00,1.00,-177.60,-0.00,0 --168.00,-0.00,7.38,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,7.34,0.00,1.00,-177.60,-4.80,0 --158.40,-4.80,7.30,0.00,1.00,-177.60,-4.80,0 --153.60,-4.80,7.26,0.00,1.00,-177.60,-4.80,0 --148.80,-4.80,7.22,0.00,1.00,-172.80,-4.80,0 --144.00,-4.80,7.18,0.00,1.00,-172.80,-4.80,0 --139.20,-4.80,7.14,0.00,1.00,-172.80,-4.80,0 --134.40,-4.80,7.10,0.00,1.00,-172.80,-9.60,0 --129.60,-4.80,7.06,0.00,1.00,-168.00,-9.60,0 --124.80,-4.80,7.02,0.00,1.00,-168.00,-9.60,0 --120.00,-9.60,6.98,0.00,1.00,-168.00,-9.60,0 --115.20,-9.60,6.94,0.00,1.00,-163.20,-9.60,0 --110.40,-9.60,6.90,0.00,1.00,-158.40,-9.60,0 --105.60,-9.60,6.86,0.00,1.00,-153.60,-9.60,0 --100.80,-9.60,6.82,0.00,1.00,-144.00,-9.60,0 --96.00,-9.60,6.78,0.00,1.00,-124.80,-9.60,0 --91.20,-9.60,6.74,0.00,1.00,-96.00,-9.60,0 --86.40,-9.60,6.70,0.00,1.00,-67.20,-9.60,0 --81.60,-9.60,6.66,0.00,1.00,-43.20,-9.60,0 --76.80,-9.60,6.62,0.00,1.00,-33.60,-9.60,0 --72.00,-9.60,6.58,0.00,1.00,-24.00,-9.60,0 --67.20,-9.60,6.54,0.00,1.00,-19.20,-9.60,0 --62.40,-9.60,6.50,0.00,1.00,-14.40,-9.60,0 --57.60,-4.80,6.46,0.00,1.00,-14.40,-9.60,0 --52.80,-4.80,6.42,0.00,1.00,-9.60,-4.80,0 --48.00,-4.80,6.38,0.00,1.00,-9.60,-4.80,0 --43.20,-4.80,6.34,0.00,1.00,-9.60,-4.80,0 --38.40,-4.80,6.30,0.00,1.00,-4.80,-4.80,0 --33.60,-4.80,6.26,0.00,1.00,-4.80,-4.80,0 --28.80,-4.80,6.22,0.00,1.00,-4.80,-4.80,0 --24.00,-4.80,6.18,0.00,1.00,-4.80,-4.80,0 --19.20,-4.80,6.14,0.00,1.00,-4.80,-0.00,0 --14.40,-0.00,6.10,0.00,1.00,-0.00,-0.00,0 --9.60,-0.00,6.06,0.00,1.00,-0.00,-0.00,0 --4.80,-0.00,6.02,0.00,1.00,-0.00,0.00,0 -0.00,0.00,5.97,0.00,1.00,0.00,0.00,0 -4.80,0.00,5.93,0.00,1.00,0.00,0.00,0 -9.60,0.00,5.89,0.00,1.00,0.00,0.00,0 -14.40,0.00,5.85,0.00,1.00,0.00,0.00,0 -19.20,0.00,5.81,0.00,1.00,0.00,0.00,0 -24.00,0.00,5.77,0.00,1.00,0.00,0.00,0 -28.80,0.00,5.73,0.00,1.00,0.00,4.80,0 -33.60,0.00,5.69,0.00,1.00,0.00,4.80,0 -38.40,0.00,5.65,0.00,1.00,4.80,4.80,0 -43.20,4.80,5.61,0.00,1.00,4.80,4.80,0 -48.00,4.80,5.57,0.00,1.00,4.80,4.80,0 -52.80,4.80,5.53,0.00,1.00,4.80,4.80,0 -57.60,4.80,5.49,0.00,1.00,4.80,4.80,0 -62.40,4.80,5.45,0.00,1.00,4.80,4.80,0 -67.20,4.80,5.41,0.00,1.00,9.60,4.80,0 -72.00,4.80,5.37,0.00,1.00,9.60,4.80,0 -76.80,4.80,5.33,0.00,1.00,14.40,4.80,0 -81.60,4.80,5.29,0.00,1.00,24.00,4.80,0 -86.40,4.80,5.25,0.00,1.00,43.20,4.80,0 -91.20,4.80,5.21,0.00,1.00,110.40,4.80,0 -96.00,4.80,5.17,0.00,1.00,148.80,4.80,0 -100.80,4.80,5.13,0.00,1.00,163.20,4.80,0 -105.60,4.80,5.09,0.00,1.00,168.00,4.80,0 -110.40,4.80,5.05,0.00,1.00,172.80,4.80,0 -115.20,4.80,5.01,0.00,1.00,172.80,4.80,0 -120.00,4.80,4.97,0.00,1.00,172.80,4.80,0 -124.80,4.80,4.93,0.00,1.00,172.80,4.80,0 -129.60,4.80,4.89,0.00,1.00,177.60,4.80,0 -134.40,4.80,4.85,0.00,1.00,177.60,4.80,0 -139.20,0.00,4.81,0.00,1.00,177.60,4.80,0 -144.00,0.00,4.77,0.00,1.00,177.60,4.80,0 -148.80,0.00,4.73,0.00,1.00,177.60,0.00,0 -153.60,0.00,4.69,0.00,1.00,177.60,0.00,0 -158.40,0.00,4.65,0.00,1.00,177.60,0.00,0 -163.20,0.00,4.61,0.00,1.00,177.60,0.00,0 -168.00,0.00,4.57,0.00,1.00,177.60,0.00,0 -172.80,0.00,4.53,0.00,1.00,177.60,0.00,0 -177.60,0.00,4.49,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,4.45,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,4.41,0.00,1.00,-177.60,-0.00,0 --168.00,-0.00,4.37,0.00,1.00,-177.60,-0.00,0 --163.20,-0.00,4.33,0.00,1.00,-177.60,-0.00,0 --158.40,-0.00,4.29,0.00,1.00,-177.60,-0.00,0 --153.60,-0.00,4.25,0.00,1.00,-177.60,-4.80,0 --148.80,-0.00,4.21,0.00,1.00,-177.60,-4.80,0 --144.00,-0.00,4.17,0.00,1.00,-177.60,-4.80,0 --139.20,-0.00,4.13,0.00,1.00,-177.60,-4.80,0 --134.40,-4.80,4.09,0.00,1.00,-177.60,-4.80,0 --129.60,-4.80,4.05,0.00,1.00,-177.60,-4.80,0 --124.80,-4.80,4.01,0.00,1.00,-172.80,-4.80,0 --120.00,-4.80,3.97,0.00,1.00,-172.80,-4.80,0 --115.20,-4.80,3.93,0.00,1.00,-172.80,-4.80,0 --110.40,-4.80,3.89,0.00,1.00,-172.80,-4.80,0 --105.60,-4.80,3.85,0.00,1.00,-168.00,-4.80,0 --100.80,-4.80,3.81,0.00,1.00,-163.20,-4.80,0 --96.00,-4.80,3.77,0.00,1.00,-148.80,-4.80,0 --91.20,-4.80,3.73,0.00,1.00,-110.40,-4.80,0 --86.40,-4.80,3.69,0.00,1.00,-43.20,-4.80,0 --81.60,-4.80,3.65,0.00,1.00,-24.00,-4.80,0 --76.80,-4.80,3.61,0.00,1.00,-14.40,-4.80,0 --72.00,-4.80,3.57,0.00,1.00,-9.60,-4.80,0 --67.20,-4.80,3.53,0.00,1.00,-9.60,-4.80,0 --62.40,-4.80,3.49,0.00,1.00,-4.80,-4.80,0 --57.60,-4.80,3.45,0.00,1.00,-4.80,-4.80,0 --52.80,-4.80,3.41,0.00,1.00,-4.80,-4.80,0 --48.00,-4.80,3.37,0.00,1.00,-4.80,-4.80,0 --43.20,-4.80,3.33,0.00,1.00,-4.80,-4.80,0 --38.40,-0.00,3.29,0.00,1.00,-4.80,-4.80,0 --33.60,-0.00,3.25,0.00,1.00,-0.00,-0.00,0 --28.80,-0.00,3.21,0.00,1.00,-0.00,-0.00,0 --24.00,-0.00,3.17,0.00,1.00,-0.00,-0.00,0 --19.20,-0.00,3.13,0.00,1.00,-0.00,-0.00,0 --14.40,-0.00,3.09,0.00,1.00,-0.00,-0.00,0 --9.60,-0.00,3.05,0.00,1.00,-0.00,-0.00,0 --4.80,-0.00,3.01,0.00,1.00,-0.00,0.00,0 -0.00,0.00,2.97,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,2.93,0.00,1.00,-0.00,0.00,0 -9.60,-0.00,2.89,0.00,1.00,-0.00,0.00,0 -14.40,-0.00,2.85,0.00,1.00,-0.00,0.00,0 -19.20,-0.00,2.81,0.00,1.00,-0.00,0.00,0 -24.00,-0.00,2.77,0.00,1.00,-0.00,0.00,0 -28.80,-0.00,2.73,0.00,1.00,-0.00,0.00,0 -33.60,-0.00,2.69,0.00,1.00,-0.00,0.00,0 -38.40,-0.00,2.65,0.00,1.00,-0.00,0.00,0 -43.20,-0.00,2.61,0.00,1.00,-0.00,0.00,0 -48.00,-0.00,2.57,0.00,1.00,-0.00,0.00,0 -52.80,-0.00,2.53,0.00,1.00,-0.00,0.00,0 -57.60,-0.00,2.49,0.00,1.00,-0.00,0.00,0 -62.40,-0.00,2.45,0.00,1.00,-0.00,0.00,0 -67.20,-0.00,2.41,0.00,1.00,-4.80,0.00,0 -72.00,-0.00,2.37,0.00,1.00,-4.80,0.00,0 -76.80,-0.00,2.33,0.00,1.00,-4.80,0.00,0 -81.60,-0.00,2.29,0.00,1.00,-9.60,0.00,0 -86.40,-0.00,2.25,0.00,1.00,-19.20,0.00,0 -91.20,-0.00,2.21,0.00,1.00,-134.40,0.00,0 -96.00,-0.00,2.17,0.00,1.00,-168.00,0.00,0 -100.80,-0.00,2.13,0.00,1.00,-172.80,0.00,0 -105.60,-0.00,2.09,0.00,1.00,-177.60,0.00,0 -110.40,-0.00,2.05,0.00,1.00,-177.60,0.00,0 -115.20,-0.00,2.01,0.00,1.00,-177.60,0.00,0 -120.00,-0.00,1.96,0.00,1.00,-177.60,0.00,0 -124.80,-0.00,1.92,0.00,1.00,-177.60,0.00,0 -129.60,-0.00,1.88,0.00,1.00,-177.60,0.00,0 -134.40,-0.00,1.84,0.00,1.00,-177.60,0.00,0 -139.20,-0.00,1.80,0.00,1.00,-177.60,0.00,0 -144.00,-0.00,1.76,0.00,1.00,-177.60,0.00,0 -148.80,-0.00,1.72,0.00,1.00,-177.60,0.00,0 -153.60,-0.00,1.68,0.00,1.00,-177.60,0.00,0 -158.40,-0.00,1.64,0.00,1.00,-177.60,0.00,0 -163.20,-0.00,1.60,0.00,1.00,-177.60,0.00,0 -168.00,-0.00,1.56,0.00,1.00,-177.60,0.00,0 -172.80,-0.00,1.52,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,1.48,0.00,1.00,-177.60,0.00,0 --177.60,0.00,1.44,0.00,1.00,177.60,0.00,0 --172.80,0.00,1.40,0.00,1.00,177.60,0.00,0 --168.00,0.00,1.36,0.00,1.00,177.60,0.00,0 --163.20,0.00,1.32,0.00,1.00,177.60,0.00,0 --158.40,0.00,1.28,0.00,1.00,177.60,0.00,0 --153.60,0.00,1.24,0.00,1.00,177.60,0.00,0 --148.80,0.00,1.20,0.00,1.00,177.60,0.00,0 --144.00,0.00,1.16,0.00,1.00,177.60,0.00,0 --139.20,0.00,1.12,0.00,1.00,177.60,0.00,0 --134.40,0.00,1.08,0.00,1.00,177.60,0.00,0 --129.60,0.00,1.04,0.00,1.00,177.60,0.00,0 --124.80,0.00,1.00,0.00,1.00,177.60,0.00,0 --120.00,0.00,0.96,0.00,1.00,177.60,0.00,0 --115.20,0.00,0.92,0.00,1.00,177.60,0.00,0 --110.40,0.00,0.88,0.00,1.00,177.60,0.00,0 --105.60,0.00,0.84,0.00,1.00,177.60,0.00,0 --100.80,0.00,0.80,0.00,1.00,172.80,0.00,0 --96.00,0.00,0.76,0.00,1.00,168.00,0.00,0 --91.20,0.00,0.72,0.00,1.00,134.40,0.00,0 --86.40,0.00,0.68,0.00,1.00,19.20,0.00,0 --81.60,0.00,0.64,0.00,1.00,9.60,0.00,0 --76.80,0.00,0.60,0.00,1.00,4.80,0.00,0 --72.00,0.00,0.56,0.00,1.00,4.80,0.00,0 --67.20,0.00,0.52,0.00,1.00,4.80,0.00,0 --62.40,0.00,0.48,0.00,1.00,0.00,0.00,0 --57.60,0.00,0.44,0.00,1.00,0.00,0.00,0 --52.80,0.00,0.40,0.00,1.00,0.00,0.00,0 --48.00,0.00,0.36,0.00,1.00,0.00,0.00,0 --43.20,0.00,0.32,0.00,1.00,0.00,0.00,0 --38.40,0.00,0.28,0.00,1.00,0.00,0.00,0 --33.60,0.00,0.24,0.00,1.00,0.00,0.00,0 --28.80,0.00,0.20,0.00,1.00,0.00,0.00,0 --24.00,0.00,0.16,0.00,1.00,0.00,0.00,0 --19.20,0.00,0.12,0.00,1.00,0.00,0.00,0 --14.40,0.00,0.08,0.00,1.00,0.00,0.00,0 --9.60,0.00,0.04,0.00,1.00,0.00,0.00,0 --4.80,0.00,0.00,0.00,1.00,0.00,0.00,0 diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC32c.met b/scripts/testv/stvOMASA_4ISM_2MASA2TC32c.met deleted file mode 100644 index 1b62022af572fc4f198e4212cca88d51913ec3c4..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_2MASA2TC32c.met +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2eb412d646d7a32c77413dea54dc44cf45dc49e6d8c2de19abe4f4b93a91fa4a -size 159900 diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC32c.wav b/scripts/testv/stvOMASA_4ISM_2MASA2TC32c.wav deleted file mode 100644 index 1b1c0f8f09759d787279de60e87b6b7b085f1863..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_2MASA2TC32c.wav +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:797678b099e44e2ccbab7d2a8944c8a40d5fd3574c409c951cd81d7b7c6a37c4 -size 1152080 diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC32c_ISM1.csv b/scripts/testv/stvOMASA_4ISM_2MASA2TC32c_ISM1.csv deleted file mode 100644 index 9100a52238a17843ed9bd03fc3ded73440efb2d2..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_2MASA2TC32c_ISM1.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,0.02,0.00,1.00,0.00,-4.80,0 -9.60,0.00,0.04,0.00,1.00,0.00,4.80,0 -14.40,0.00,0.06,0.00,1.00,0.00,-9.60,0 -19.20,0.00,0.09,0.00,1.00,0.00,14.40,0 -24.00,0.00,0.11,0.00,1.00,0.00,-14.40,0 -28.80,0.00,0.13,0.00,1.00,0.00,19.20,0 -33.60,0.00,0.15,0.00,1.00,0.00,-24.00,0 -38.40,0.00,0.17,0.00,1.00,0.00,24.00,0 -43.20,0.00,0.19,0.00,1.00,0.00,-28.80,0 -48.00,0.00,0.21,0.00,1.00,0.00,33.60,0 -52.80,0.00,0.23,0.00,1.00,0.00,-33.60,0 -57.60,0.00,0.26,0.00,1.00,0.00,38.40,0 -62.40,0.00,0.28,0.00,1.00,4.80,-38.40,0 -67.20,0.00,0.30,0.00,1.00,4.80,38.40,0 -72.00,0.00,0.32,0.00,1.00,4.80,-43.20,0 -76.80,0.00,0.34,0.00,1.00,9.60,43.20,0 -81.60,0.00,0.36,0.00,1.00,19.20,-43.20,0 -86.40,0.00,0.38,0.00,1.00,134.40,43.20,0 -91.20,0.00,0.41,0.00,1.00,168.00,-43.20,0 -96.00,0.00,0.43,0.00,1.00,172.80,43.20,0 -100.80,0.00,0.45,0.00,1.00,177.60,-43.20,0 -105.60,0.00,0.47,0.00,1.00,177.60,43.20,0 -110.40,0.00,0.49,0.00,1.00,177.60,-43.20,0 -115.20,0.00,0.51,0.00,1.00,177.60,38.40,0 -120.00,0.00,0.53,0.00,1.00,177.60,-38.40,0 -124.80,0.00,0.56,0.00,1.00,177.60,33.60,0 -129.60,0.00,0.58,0.00,1.00,177.60,-33.60,0 -134.40,0.00,0.60,0.00,1.00,177.60,28.80,0 -139.20,0.00,0.62,0.00,1.00,177.60,-28.80,0 -144.00,0.00,0.64,0.00,1.00,177.60,24.00,0 -148.80,0.00,0.66,0.00,1.00,177.60,-19.20,0 -153.60,0.00,0.68,0.00,1.00,177.60,19.20,0 -158.40,0.00,0.70,0.00,1.00,177.60,-14.40,0 -163.20,0.00,0.73,0.00,1.00,177.60,9.60,0 -168.00,0.00,0.75,0.00,1.00,177.60,-9.60,0 -172.80,0.00,0.77,0.00,1.00,177.60,4.80,0 -177.60,0.00,0.79,0.00,1.00,-177.60,-0.00,0 --177.60,0.00,0.81,0.00,1.00,-177.60,-0.00,0 --172.80,0.00,0.83,0.00,1.00,-177.60,4.80,0 --168.00,0.00,0.85,0.00,1.00,-177.60,-9.60,0 --163.20,0.00,0.88,0.00,1.00,-177.60,9.60,0 --158.40,0.00,0.90,0.00,1.00,-177.60,-14.40,0 --153.60,0.00,0.92,0.00,1.00,-177.60,19.20,0 --148.80,0.00,0.94,0.00,1.00,-177.60,-19.20,0 --144.00,0.00,0.96,0.00,1.00,-177.60,24.00,0 --139.20,0.00,0.98,0.00,1.00,-177.60,-28.80,0 --134.40,0.00,1.00,0.00,1.00,-177.60,28.80,0 --129.60,0.00,1.03,0.00,1.00,-177.60,-33.60,0 --124.80,0.00,1.05,0.00,1.00,-177.60,33.60,0 --120.00,0.00,1.07,0.00,1.00,-177.60,-38.40,0 --115.20,0.00,1.09,0.00,1.00,-177.60,38.40,0 --110.40,0.00,1.11,0.00,1.00,-177.60,-43.20,0 --105.60,0.00,1.13,0.00,1.00,-172.80,43.20,0 --100.80,0.00,1.15,0.00,1.00,-168.00,-43.20,0 --96.00,0.00,1.17,0.00,1.00,-134.40,43.20,0 --91.20,0.00,1.20,0.00,1.00,-19.20,-43.20,0 --86.40,0.00,1.22,0.00,1.00,-9.60,43.20,0 --81.60,0.00,1.24,0.00,1.00,-4.80,-43.20,0 --76.80,0.00,1.26,0.00,1.00,-4.80,43.20,0 --72.00,0.00,1.28,0.00,1.00,-4.80,-43.20,0 --67.20,0.00,1.30,0.00,1.00,-0.00,38.40,0 --62.40,0.00,1.32,0.00,1.00,-0.00,-38.40,0 --57.60,0.00,1.35,0.00,1.00,-0.00,38.40,0 --52.80,0.00,1.37,0.00,1.00,-0.00,-33.60,0 --48.00,0.00,1.39,0.00,1.00,-0.00,33.60,0 --43.20,0.00,1.41,0.00,1.00,-0.00,-28.80,0 --38.40,0.00,1.43,0.00,1.00,-0.00,24.00,0 --33.60,0.00,1.45,0.00,1.00,-0.00,-24.00,0 --28.80,0.00,1.47,0.00,1.00,-0.00,19.20,0 --24.00,0.00,1.50,0.00,1.00,-0.00,-14.40,0 --19.20,0.00,1.52,0.00,1.00,-0.00,14.40,0 --14.40,0.00,1.54,0.00,1.00,-0.00,-9.60,0 --9.60,0.00,1.56,0.00,1.00,-0.00,4.80,0 --4.80,0.00,1.58,0.00,1.00,-0.00,-4.80,0 -0.00,0.00,1.60,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,1.62,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,1.64,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,1.67,0.00,1.00,-0.00,-9.60,0 -19.20,-0.00,1.69,0.00,1.00,-0.00,14.40,0 -24.00,-0.00,1.71,0.00,1.00,-0.00,-14.40,0 -28.80,-0.00,1.73,0.00,1.00,-0.00,19.20,0 -33.60,-4.80,1.75,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,1.77,0.00,1.00,-4.80,24.00,0 -43.20,-4.80,1.79,0.00,1.00,-4.80,-24.00,0 -48.00,-4.80,1.82,0.00,1.00,-4.80,28.80,0 -52.80,-4.80,1.84,0.00,1.00,-4.80,-28.80,0 -57.60,-4.80,1.86,0.00,1.00,-4.80,33.60,0 -62.40,-4.80,1.88,0.00,1.00,-9.60,-33.60,0 -67.20,-4.80,1.90,0.00,1.00,-9.60,38.40,0 -72.00,-4.80,1.92,0.00,1.00,-14.40,-38.40,0 -76.80,-4.80,1.94,0.00,1.00,-24.00,38.40,0 -81.60,-4.80,1.97,0.00,1.00,-43.20,-38.40,0 -86.40,-4.80,1.99,0.00,1.00,-110.40,38.40,0 -91.20,-4.80,2.01,0.00,1.00,-148.80,-38.40,0 -96.00,-4.80,2.03,0.00,1.00,-163.20,38.40,0 -100.80,-4.80,2.05,0.00,1.00,-168.00,-38.40,0 -105.60,-4.80,2.07,0.00,1.00,-172.80,38.40,0 -110.40,-4.80,2.09,0.00,1.00,-172.80,-38.40,0 -115.20,-4.80,2.11,0.00,1.00,-172.80,33.60,0 -120.00,-4.80,2.14,0.00,1.00,-172.80,-33.60,0 -124.80,-4.80,2.16,0.00,1.00,-177.60,33.60,0 -129.60,-4.80,2.18,0.00,1.00,-177.60,-28.80,0 -134.40,-4.80,2.20,0.00,1.00,-177.60,28.80,0 -139.20,-4.80,2.22,0.00,1.00,-177.60,-24.00,0 -144.00,-4.80,2.24,0.00,1.00,-177.60,24.00,0 -148.80,-4.80,2.26,0.00,1.00,-177.60,-19.20,0 -153.60,-0.00,2.29,0.00,1.00,-177.60,14.40,0 -158.40,-0.00,2.31,0.00,1.00,-177.60,-14.40,0 -163.20,-0.00,2.33,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,2.35,0.00,1.00,-177.60,-9.60,0 -172.80,-0.00,2.37,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,-0.00,0 --177.60,0.00,2.41,0.00,1.00,177.60,-0.00,0 --172.80,0.00,2.44,0.00,1.00,177.60,4.80,0 --168.00,0.00,2.46,0.00,1.00,177.60,-9.60,0 --163.20,0.00,2.48,0.00,1.00,177.60,9.60,0 --158.40,0.00,2.50,0.00,1.00,177.60,-14.40,0 --153.60,0.00,2.52,0.00,1.00,177.60,14.40,0 --148.80,4.80,2.54,0.00,1.00,177.60,-19.20,0 --144.00,4.80,2.56,0.00,1.00,177.60,24.00,0 --139.20,4.80,2.58,0.00,1.00,177.60,-24.00,0 --134.40,4.80,2.61,0.00,1.00,177.60,28.80,0 --129.60,4.80,2.63,0.00,1.00,172.80,-28.80,0 --124.80,4.80,2.65,0.00,1.00,172.80,33.60,0 --120.00,4.80,2.67,0.00,1.00,172.80,-33.60,0 --115.20,4.80,2.69,0.00,1.00,172.80,33.60,0 --110.40,4.80,2.71,0.00,1.00,168.00,-38.40,0 --105.60,4.80,2.73,0.00,1.00,163.20,38.40,0 --100.80,4.80,2.76,0.00,1.00,148.80,-38.40,0 --96.00,4.80,2.78,0.00,1.00,110.40,38.40,0 --91.20,4.80,2.80,0.00,1.00,43.20,-38.40,0 --86.40,4.80,2.82,0.00,1.00,24.00,38.40,0 --81.60,4.80,2.84,0.00,1.00,14.40,-38.40,0 --76.80,4.80,2.86,0.00,1.00,9.60,38.40,0 --72.00,4.80,2.88,0.00,1.00,9.60,-38.40,0 --67.20,4.80,2.91,0.00,1.00,4.80,38.40,0 --62.40,4.80,2.93,0.00,1.00,4.80,-33.60,0 --57.60,4.80,2.95,0.00,1.00,4.80,33.60,0 --52.80,4.80,2.97,0.00,1.00,4.80,-28.80,0 --48.00,4.80,2.99,0.00,1.00,4.80,28.80,0 --43.20,4.80,3.01,0.00,1.00,4.80,-24.00,0 --38.40,4.80,3.03,0.00,1.00,0.00,24.00,0 --33.60,4.80,3.05,0.00,1.00,0.00,-19.20,0 --28.80,0.00,3.08,0.00,1.00,0.00,19.20,0 --24.00,0.00,3.10,0.00,1.00,0.00,-14.40,0 --19.20,0.00,3.12,0.00,1.00,0.00,14.40,0 --14.40,0.00,3.14,0.00,1.00,0.00,-9.60,0 --9.60,0.00,3.16,0.00,1.00,0.00,4.80,0 --4.80,0.00,3.18,0.00,1.00,0.00,-4.80,0 -0.00,0.00,3.20,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,3.23,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,3.25,0.00,1.00,-0.00,4.80,0 -14.40,-0.00,3.27,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,3.29,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,3.31,0.00,1.00,-4.80,-14.40,0 -28.80,-4.80,3.33,0.00,1.00,-4.80,14.40,0 -33.60,-4.80,3.35,0.00,1.00,-4.80,-19.20,0 -38.40,-4.80,3.38,0.00,1.00,-9.60,19.20,0 -43.20,-4.80,3.40,0.00,1.00,-9.60,-24.00,0 -48.00,-4.80,3.42,0.00,1.00,-9.60,24.00,0 -52.80,-9.60,3.44,0.00,1.00,-14.40,-28.80,0 -57.60,-9.60,3.46,0.00,1.00,-14.40,28.80,0 -62.40,-9.60,3.48,0.00,1.00,-19.20,-28.80,0 -67.20,-9.60,3.50,0.00,1.00,-24.00,33.60,0 -72.00,-9.60,3.52,0.00,1.00,-33.60,-33.60,0 -76.80,-9.60,3.55,0.00,1.00,-43.20,33.60,0 -81.60,-9.60,3.57,0.00,1.00,-67.20,-33.60,0 -86.40,-9.60,3.59,0.00,1.00,-96.00,33.60,0 -91.20,-9.60,3.61,0.00,1.00,-124.80,-33.60,0 -96.00,-9.60,3.63,0.00,1.00,-144.00,33.60,0 -100.80,-9.60,3.65,0.00,1.00,-153.60,-33.60,0 -105.60,-9.60,3.67,0.00,1.00,-158.40,33.60,0 -110.40,-9.60,3.70,0.00,1.00,-163.20,-33.60,0 -115.20,-9.60,3.72,0.00,1.00,-168.00,33.60,0 -120.00,-9.60,3.74,0.00,1.00,-168.00,-28.80,0 -124.80,-9.60,3.76,0.00,1.00,-168.00,28.80,0 -129.60,-9.60,3.78,0.00,1.00,-172.80,-28.80,0 -134.40,-4.80,3.80,0.00,1.00,-172.80,24.00,0 -139.20,-4.80,3.82,0.00,1.00,-172.80,-24.00,0 -144.00,-4.80,3.85,0.00,1.00,-172.80,19.20,0 -148.80,-4.80,3.87,0.00,1.00,-177.60,-19.20,0 -153.60,-4.80,3.89,0.00,1.00,-177.60,14.40,0 -158.40,-4.80,3.91,0.00,1.00,-177.60,-14.40,0 -163.20,-4.80,3.93,0.00,1.00,-177.60,9.60,0 -168.00,-0.00,3.95,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,3.97,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,-0.00,0 --177.60,0.00,4.02,0.00,1.00,177.60,-0.00,0 --172.80,0.00,4.04,0.00,1.00,177.60,4.80,0 --168.00,0.00,4.06,0.00,1.00,177.60,-4.80,0 --163.20,4.80,4.08,0.00,1.00,177.60,9.60,0 --158.40,4.80,4.10,0.00,1.00,177.60,-14.40,0 --153.60,4.80,4.12,0.00,1.00,172.80,14.40,0 --148.80,4.80,4.14,0.00,1.00,172.80,-19.20,0 --144.00,4.80,4.17,0.00,1.00,172.80,19.20,0 --139.20,4.80,4.19,0.00,1.00,172.80,-24.00,0 --134.40,4.80,4.21,0.00,1.00,168.00,24.00,0 --129.60,9.60,4.23,0.00,1.00,168.00,-28.80,0 --124.80,9.60,4.25,0.00,1.00,168.00,28.80,0 --120.00,9.60,4.27,0.00,1.00,163.20,-28.80,0 --115.20,9.60,4.29,0.00,1.00,158.40,33.60,0 --110.40,9.60,4.32,0.00,1.00,153.60,-33.60,0 --105.60,9.60,4.34,0.00,1.00,144.00,33.60,0 --100.80,9.60,4.36,0.00,1.00,124.80,-33.60,0 --96.00,9.60,4.38,0.00,1.00,96.00,33.60,0 --91.20,9.60,4.40,0.00,1.00,67.20,-33.60,0 --86.40,9.60,4.42,0.00,1.00,43.20,33.60,0 --81.60,9.60,4.44,0.00,1.00,33.60,-33.60,0 --76.80,9.60,4.46,0.00,1.00,24.00,33.60,0 --72.00,9.60,4.49,0.00,1.00,19.20,-33.60,0 --67.20,9.60,4.51,0.00,1.00,14.40,33.60,0 --62.40,9.60,4.53,0.00,1.00,14.40,-28.80,0 --57.60,9.60,4.55,0.00,1.00,9.60,28.80,0 --52.80,9.60,4.57,0.00,1.00,9.60,-28.80,0 --48.00,4.80,4.59,0.00,1.00,9.60,24.00,0 --43.20,4.80,4.61,0.00,1.00,4.80,-24.00,0 --38.40,4.80,4.64,0.00,1.00,4.80,19.20,0 --33.60,4.80,4.66,0.00,1.00,4.80,-19.20,0 --28.80,4.80,4.68,0.00,1.00,4.80,14.40,0 --24.00,4.80,4.70,0.00,1.00,4.80,-14.40,0 --19.20,4.80,4.72,0.00,1.00,0.00,9.60,0 --14.40,0.00,4.74,0.00,1.00,0.00,-9.60,0 --9.60,0.00,4.76,0.00,1.00,0.00,4.80,0 --4.80,0.00,4.79,0.00,1.00,0.00,-4.80,0 -0.00,0.00,4.81,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,4.83,0.00,1.00,-0.00,-4.80,0 -9.60,-0.00,4.85,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,4.87,0.00,1.00,-4.80,-9.60,0 -19.20,-4.80,4.89,0.00,1.00,-4.80,9.60,0 -24.00,-4.80,4.91,0.00,1.00,-4.80,-9.60,0 -28.80,-4.80,4.93,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,4.96,0.00,1.00,-9.60,-14.40,0 -38.40,-9.60,4.98,0.00,1.00,-14.40,19.20,0 -43.20,-9.60,5.00,0.00,1.00,-14.40,-19.20,0 -48.00,-9.60,5.02,0.00,1.00,-14.40,24.00,0 -52.80,-9.60,5.04,0.00,1.00,-19.20,-24.00,0 -57.60,-14.40,5.06,0.00,1.00,-24.00,24.00,0 -62.40,-14.40,5.08,0.00,1.00,-28.80,-28.80,0 -67.20,-14.40,5.11,0.00,1.00,-33.60,28.80,0 -72.00,-14.40,5.13,0.00,1.00,-43.20,-28.80,0 -76.80,-14.40,5.15,0.00,1.00,-57.60,28.80,0 -81.60,-14.40,5.17,0.00,1.00,-76.80,-28.80,0 -86.40,-14.40,5.19,0.00,1.00,-96.00,28.80,0 -91.20,-14.40,5.21,0.00,1.00,-115.20,-28.80,0 -96.00,-14.40,5.23,0.00,1.00,-129.60,28.80,0 -100.80,-14.40,5.26,0.00,1.00,-139.20,-28.80,0 -105.60,-14.40,5.28,0.00,1.00,-148.80,28.80,0 -110.40,-14.40,5.30,0.00,1.00,-153.60,-28.80,0 -115.20,-14.40,5.32,0.00,1.00,-158.40,28.80,0 -120.00,-14.40,5.34,0.00,1.00,-163.20,-24.00,0 -124.80,-9.60,5.36,0.00,1.00,-163.20,24.00,0 -129.60,-9.60,5.38,0.00,1.00,-168.00,-24.00,0 -134.40,-9.60,5.40,0.00,1.00,-168.00,19.20,0 -139.20,-9.60,5.43,0.00,1.00,-172.80,-19.20,0 -144.00,-9.60,5.45,0.00,1.00,-172.80,19.20,0 -148.80,-9.60,5.47,0.00,1.00,-172.80,-14.40,0 -153.60,-4.80,5.49,0.00,1.00,-172.80,14.40,0 -158.40,-4.80,5.51,0.00,1.00,-177.60,-9.60,0 -163.20,-4.80,5.53,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,5.55,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,5.58,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.62,0.00,1.00,177.60,-0.00,0 --172.80,0.00,5.64,0.00,1.00,177.60,4.80,0 --168.00,4.80,5.66,0.00,1.00,177.60,-4.80,0 --163.20,4.80,5.68,0.00,1.00,172.80,9.60,0 --158.40,4.80,5.70,0.00,1.00,172.80,-9.60,0 --153.60,4.80,5.72,0.00,1.00,172.80,14.40,0 --148.80,9.60,5.75,0.00,1.00,172.80,-14.40,0 --144.00,9.60,5.77,0.00,1.00,168.00,19.20,0 --139.20,9.60,5.79,0.00,1.00,168.00,-19.20,0 --134.40,9.60,5.81,0.00,1.00,163.20,19.20,0 --129.60,9.60,5.83,0.00,1.00,163.20,-24.00,0 --124.80,9.60,5.85,0.00,1.00,158.40,24.00,0 --120.00,14.40,5.87,0.00,1.00,153.60,-24.00,0 --115.20,14.40,5.90,0.00,1.00,148.80,28.80,0 --110.40,14.40,5.92,0.00,1.00,139.20,-28.80,0 --105.60,14.40,5.94,0.00,1.00,129.60,28.80,0 --100.80,14.40,5.96,0.00,1.00,115.20,-28.80,0 --96.00,14.40,5.98,0.00,1.00,96.00,28.80,0 --91.20,14.40,6.00,0.00,1.00,76.80,-28.80,0 --86.40,14.40,6.02,0.00,1.00,57.60,28.80,0 --81.60,14.40,6.05,0.00,1.00,43.20,-28.80,0 --76.80,14.40,6.07,0.00,1.00,33.60,28.80,0 --72.00,14.40,6.09,0.00,1.00,28.80,-28.80,0 --67.20,14.40,6.11,0.00,1.00,24.00,28.80,0 --62.40,14.40,6.13,0.00,1.00,19.20,-28.80,0 --57.60,14.40,6.15,0.00,1.00,14.40,24.00,0 --52.80,9.60,6.17,0.00,1.00,14.40,-24.00,0 --48.00,9.60,6.19,0.00,1.00,14.40,24.00,0 --43.20,9.60,6.22,0.00,1.00,9.60,-19.20,0 --38.40,9.60,6.24,0.00,1.00,9.60,19.20,0 --33.60,9.60,6.26,0.00,1.00,4.80,-14.40,0 --28.80,4.80,6.28,0.00,1.00,4.80,14.40,0 --24.00,4.80,6.30,0.00,1.00,4.80,-9.60,0 --19.20,4.80,6.32,0.00,1.00,4.80,9.60,0 --14.40,4.80,6.34,0.00,1.00,0.00,-9.60,0 --9.60,0.00,6.37,0.00,1.00,0.00,4.80,0 --4.80,0.00,6.39,0.00,1.00,0.00,-4.80,0 -0.00,0.00,6.41,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,6.43,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,6.45,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,6.47,0.00,1.00,-4.80,-4.80,0 -19.20,-4.80,6.49,0.00,1.00,-9.60,9.60,0 -24.00,-9.60,6.52,0.00,1.00,-9.60,-9.60,0 -28.80,-9.60,6.54,0.00,1.00,-9.60,14.40,0 -33.60,-9.60,6.56,0.00,1.00,-14.40,-14.40,0 -38.40,-9.60,6.58,0.00,1.00,-14.40,14.40,0 -43.20,-14.40,6.60,0.00,1.00,-19.20,-19.20,0 -48.00,-14.40,6.62,0.00,1.00,-24.00,19.20,0 -52.80,-14.40,6.64,0.00,1.00,-24.00,-19.20,0 -57.60,-14.40,6.66,0.00,1.00,-28.80,19.20,0 -62.40,-19.20,6.69,0.00,1.00,-38.40,-24.00,0 -67.20,-19.20,6.71,0.00,1.00,-43.20,24.00,0 -72.00,-19.20,6.73,0.00,1.00,-52.80,-24.00,0 -76.80,-19.20,6.75,0.00,1.00,-62.40,24.00,0 -81.60,-19.20,6.77,0.00,1.00,-76.80,-24.00,0 -86.40,-19.20,6.79,0.00,1.00,-96.00,24.00,0 -91.20,-19.20,6.81,0.00,1.00,-110.40,-24.00,0 -96.00,-19.20,6.84,0.00,1.00,-120.00,24.00,0 -100.80,-19.20,6.86,0.00,1.00,-134.40,-24.00,0 -105.60,-19.20,6.88,0.00,1.00,-139.20,24.00,0 -110.40,-19.20,6.90,0.00,1.00,-148.80,-24.00,0 -115.20,-19.20,6.92,0.00,1.00,-153.60,24.00,0 -120.00,-14.40,6.94,0.00,1.00,-158.40,-24.00,0 -124.80,-14.40,6.96,0.00,1.00,-158.40,19.20,0 -129.60,-14.40,6.99,0.00,1.00,-163.20,-19.20,0 -134.40,-14.40,7.01,0.00,1.00,-163.20,19.20,0 -139.20,-14.40,7.03,0.00,1.00,-168.00,-14.40,0 -144.00,-9.60,7.05,0.00,1.00,-168.00,14.40,0 -148.80,-9.60,7.07,0.00,1.00,-172.80,-14.40,0 -153.60,-9.60,7.09,0.00,1.00,-172.80,9.60,0 -158.40,-4.80,7.11,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,7.13,0.00,1.00,-177.60,9.60,0 -168.00,-4.80,7.16,0.00,1.00,-177.60,-4.80,0 -172.80,-0.00,7.18,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,7.22,0.00,1.00,177.60,-0.00,0 --172.80,0.00,7.24,0.00,1.00,177.60,4.80,0 --168.00,4.80,7.26,0.00,1.00,172.80,-4.80,0 --163.20,4.80,7.28,0.00,1.00,172.80,9.60,0 --158.40,4.80,7.31,0.00,1.00,172.80,-9.60,0 --153.60,9.60,7.33,0.00,1.00,168.00,9.60,0 --148.80,9.60,7.35,0.00,1.00,168.00,-14.40,0 --144.00,9.60,7.37,0.00,1.00,163.20,14.40,0 --139.20,14.40,7.39,0.00,1.00,163.20,-14.40,0 --134.40,14.40,7.41,0.00,1.00,158.40,19.20,0 --129.60,14.40,7.43,0.00,1.00,158.40,-19.20,0 --124.80,14.40,7.46,0.00,1.00,153.60,19.20,0 --120.00,14.40,7.48,0.00,1.00,148.80,-24.00,0 --115.20,19.20,7.50,0.00,1.00,139.20,24.00,0 --110.40,19.20,7.52,0.00,1.00,134.40,-24.00,0 --105.60,19.20,7.54,0.00,1.00,120.00,24.00,0 --100.80,19.20,7.56,0.00,1.00,110.40,-24.00,0 --96.00,19.20,7.58,0.00,1.00,96.00,24.00,0 --91.20,19.20,7.60,0.00,1.00,76.80,-24.00,0 --86.40,19.20,7.63,0.00,1.00,62.40,24.00,0 --81.60,19.20,7.65,0.00,1.00,52.80,-24.00,0 --76.80,19.20,7.67,0.00,1.00,43.20,24.00,0 --72.00,19.20,7.69,0.00,1.00,38.40,-24.00,0 --67.20,19.20,7.71,0.00,1.00,28.80,24.00,0 --62.40,19.20,7.73,0.00,1.00,24.00,-24.00,0 --57.60,14.40,7.75,0.00,1.00,24.00,19.20,0 --52.80,14.40,7.78,0.00,1.00,19.20,-19.20,0 --48.00,14.40,7.80,0.00,1.00,14.40,19.20,0 --43.20,14.40,7.82,0.00,1.00,14.40,-19.20,0 --38.40,9.60,7.84,0.00,1.00,9.60,14.40,0 --33.60,9.60,7.86,0.00,1.00,9.60,-14.40,0 --28.80,9.60,7.88,0.00,1.00,9.60,14.40,0 --24.00,9.60,7.90,0.00,1.00,4.80,-9.60,0 --19.20,4.80,7.93,0.00,1.00,4.80,9.60,0 --14.40,4.80,7.95,0.00,1.00,4.80,-4.80,0 --9.60,4.80,7.97,0.00,1.00,0.00,4.80,0 --4.80,0.00,7.99,0.00,1.00,0.00,-0.00,0 -0.00,0.00,8.01,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,8.03,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,8.05,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,8.07,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,8.10,0.00,1.00,-9.60,4.80,0 -24.00,-9.60,8.12,0.00,1.00,-14.40,-9.60,0 -28.80,-9.60,8.14,0.00,1.00,-14.40,9.60,0 -33.60,-14.40,8.16,0.00,1.00,-19.20,-9.60,0 -33.60,-14.40,8.18,0.00,1.00,-19.20,14.40,0 -38.40,-14.40,8.20,0.00,1.00,-24.00,-14.40,0 -43.20,-19.20,8.22,0.00,1.00,-28.80,14.40,0 -48.00,-19.20,8.25,0.00,1.00,-33.60,-14.40,0 -57.60,-19.20,8.27,0.00,1.00,-38.40,19.20,0 -62.40,-19.20,8.29,0.00,1.00,-43.20,-19.20,0 -67.20,-24.00,8.31,0.00,1.00,-48.00,19.20,0 -72.00,-24.00,8.33,0.00,1.00,-57.60,-19.20,0 -76.80,-24.00,8.35,0.00,1.00,-67.20,19.20,0 -81.60,-24.00,8.37,0.00,1.00,-81.60,-19.20,0 -86.40,-24.00,8.40,0.00,1.00,-91.20,19.20,0 -91.20,-24.00,8.42,0.00,1.00,-105.60,-19.20,0 -96.00,-24.00,8.44,0.00,1.00,-115.20,19.20,0 -100.80,-24.00,8.46,0.00,1.00,-124.80,-19.20,0 -105.60,-24.00,8.48,0.00,1.00,-134.40,19.20,0 -110.40,-24.00,8.50,0.00,1.00,-139.20,-19.20,0 -115.20,-19.20,8.52,0.00,1.00,-144.00,19.20,0 -120.00,-19.20,8.54,0.00,1.00,-148.80,-19.20,0 -129.60,-19.20,8.57,0.00,1.00,-153.60,19.20,0 -134.40,-19.20,8.59,0.00,1.00,-158.40,-14.40,0 -139.20,-19.20,8.61,0.00,1.00,-163.20,14.40,0 -144.00,-14.40,8.63,0.00,1.00,-163.20,-14.40,0 -148.80,-14.40,8.65,0.00,1.00,-168.00,14.40,0 -148.80,-14.40,8.67,0.00,1.00,-168.00,-9.60,0 -153.60,-9.60,8.69,0.00,1.00,-172.80,9.60,0 -158.40,-9.60,8.72,0.00,1.00,-172.80,-9.60,0 -163.20,-4.80,8.74,0.00,1.00,-177.60,4.80,0 -168.00,-4.80,8.76,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,8.78,0.00,1.00,-177.60,4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.82,0.00,1.00,177.60,-0.00,0 --172.80,4.80,8.84,0.00,1.00,177.60,4.80,0 --168.00,4.80,8.87,0.00,1.00,172.80,-4.80,0 --163.20,4.80,8.89,0.00,1.00,172.80,4.80,0 --158.40,9.60,8.91,0.00,1.00,168.00,-9.60,0 --153.60,9.60,8.93,0.00,1.00,168.00,9.60,0 --148.80,14.40,8.95,0.00,1.00,163.20,-9.60,0 --148.80,14.40,8.97,0.00,1.00,163.20,14.40,0 --144.00,14.40,8.99,0.00,1.00,158.40,-14.40,0 --139.20,19.20,9.01,0.00,1.00,153.60,14.40,0 --134.40,19.20,9.04,0.00,1.00,148.80,-14.40,0 --129.60,19.20,9.06,0.00,1.00,144.00,19.20,0 --120.00,19.20,9.08,0.00,1.00,139.20,-19.20,0 --115.20,19.20,9.10,0.00,1.00,134.40,19.20,0 --110.40,24.00,9.12,0.00,1.00,124.80,-19.20,0 --105.60,24.00,9.14,0.00,1.00,115.20,19.20,0 --100.80,24.00,9.16,0.00,1.00,105.60,-19.20,0 --96.00,24.00,9.19,0.00,1.00,91.20,19.20,0 --91.20,24.00,9.21,0.00,1.00,81.60,-19.20,0 --86.40,24.00,9.23,0.00,1.00,67.20,19.20,0 --81.60,24.00,9.25,0.00,1.00,57.60,-19.20,0 --76.80,24.00,9.27,0.00,1.00,48.00,19.20,0 --72.00,24.00,9.29,0.00,1.00,43.20,-19.20,0 --67.20,24.00,9.31,0.00,1.00,38.40,19.20,0 --62.40,19.20,9.34,0.00,1.00,33.60,-19.20,0 --57.60,19.20,9.36,0.00,1.00,28.80,19.20,0 --48.00,19.20,9.38,0.00,1.00,24.00,-14.40,0 --43.20,19.20,9.40,0.00,1.00,19.20,14.40,0 --38.40,14.40,9.42,0.00,1.00,19.20,-14.40,0 --33.60,14.40,9.44,0.00,1.00,14.40,14.40,0 --33.60,14.40,9.46,0.00,1.00,14.40,-9.60,0 --28.80,9.60,9.48,0.00,1.00,9.60,9.60,0 --24.00,9.60,9.51,0.00,1.00,9.60,-9.60,0 --19.20,9.60,9.53,0.00,1.00,4.80,4.80,0 --14.40,4.80,9.55,0.00,1.00,4.80,-4.80,0 --9.60,4.80,9.57,0.00,1.00,0.00,4.80,0 --4.80,0.00,9.59,0.00,1.00,0.00,-0.00,0 -0.00,0.00,9.61,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,9.63,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,9.66,0.00,1.00,-4.80,4.80,0 -14.40,-4.80,9.68,0.00,1.00,-9.60,-4.80,0 -19.20,-9.60,9.70,0.00,1.00,-9.60,4.80,0 -19.20,-9.60,9.72,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,9.74,0.00,1.00,-19.20,9.60,0 -28.80,-14.40,9.76,0.00,1.00,-19.20,-9.60,0 -33.60,-19.20,9.78,0.00,1.00,-24.00,9.60,0 -38.40,-19.20,9.81,0.00,1.00,-28.80,-9.60,0 -43.20,-19.20,9.83,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,9.85,0.00,1.00,-38.40,-14.40,0 -52.80,-24.00,9.87,0.00,1.00,-43.20,14.40,0 -57.60,-24.00,9.89,0.00,1.00,-48.00,-14.40,0 -62.40,-24.00,9.91,0.00,1.00,-52.80,14.40,0 -72.00,-28.80,9.93,0.00,1.00,-62.40,-14.40,0 -76.80,-28.80,9.95,0.00,1.00,-72.00,14.40,0 -81.60,-28.80,9.98,0.00,1.00,-81.60,-14.40,0 -86.40,-28.80,10.00,0.00,1.00,-91.20,14.40,0 -91.20,-28.80,10.02,0.00,1.00,-100.80,-14.40,0 -96.00,-28.80,10.04,0.00,1.00,-110.40,14.40,0 -100.80,-28.80,10.06,0.00,1.00,-120.00,-14.40,0 -105.60,-28.80,10.08,0.00,1.00,-129.60,14.40,0 -115.20,-28.80,10.10,0.00,1.00,-134.40,-14.40,0 -120.00,-24.00,10.13,0.00,1.00,-139.20,14.40,0 -124.80,-24.00,10.15,0.00,1.00,-144.00,-14.40,0 -129.60,-24.00,10.17,0.00,1.00,-148.80,14.40,0 -134.40,-24.00,10.19,0.00,1.00,-153.60,-14.40,0 -139.20,-19.20,10.21,0.00,1.00,-158.40,9.60,0 -144.00,-19.20,10.23,0.00,1.00,-163.20,-9.60,0 -148.80,-14.40,10.25,0.00,1.00,-163.20,9.60,0 -153.60,-14.40,10.28,0.00,1.00,-168.00,-9.60,0 -158.40,-14.40,10.30,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,10.32,0.00,1.00,-172.80,-4.80,0 -163.20,-9.60,10.34,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,10.36,0.00,1.00,-177.60,-4.80,0 -172.80,-4.80,10.38,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.42,0.00,1.00,177.60,-0.00,0 --172.80,4.80,10.45,0.00,1.00,172.80,0.00,0 --168.00,4.80,10.47,0.00,1.00,172.80,-4.80,0 --163.20,9.60,10.49,0.00,1.00,168.00,4.80,0 --163.20,9.60,10.51,0.00,1.00,168.00,-4.80,0 --158.40,14.40,10.53,0.00,1.00,163.20,4.80,0 --153.60,14.40,10.55,0.00,1.00,163.20,-9.60,0 --148.80,14.40,10.57,0.00,1.00,158.40,9.60,0 --144.00,19.20,10.60,0.00,1.00,153.60,-9.60,0 --139.20,19.20,10.62,0.00,1.00,148.80,9.60,0 --134.40,24.00,10.64,0.00,1.00,144.00,-14.40,0 --129.60,24.00,10.66,0.00,1.00,139.20,14.40,0 --124.80,24.00,10.68,0.00,1.00,134.40,-14.40,0 --120.00,24.00,10.70,0.00,1.00,129.60,14.40,0 --115.20,28.80,10.72,0.00,1.00,120.00,-14.40,0 --105.60,28.80,10.74,0.00,1.00,110.40,14.40,0 --100.80,28.80,10.77,0.00,1.00,100.80,-14.40,0 --96.00,28.80,10.79,0.00,1.00,91.20,14.40,0 --91.20,28.80,10.81,0.00,1.00,81.60,-14.40,0 --86.40,28.80,10.83,0.00,1.00,72.00,14.40,0 --81.60,28.80,10.85,0.00,1.00,62.40,-14.40,0 --76.80,28.80,10.87,0.00,1.00,52.80,14.40,0 --72.00,28.80,10.89,0.00,1.00,48.00,-14.40,0 --62.40,24.00,10.92,0.00,1.00,43.20,14.40,0 --57.60,24.00,10.94,0.00,1.00,38.40,-14.40,0 --52.80,24.00,10.96,0.00,1.00,33.60,14.40,0 --48.00,24.00,10.98,0.00,1.00,28.80,-14.40,0 --43.20,19.20,11.00,0.00,1.00,24.00,9.60,0 --38.40,19.20,11.02,0.00,1.00,19.20,-9.60,0 --33.60,19.20,11.04,0.00,1.00,19.20,9.60,0 --28.80,14.40,11.07,0.00,1.00,14.40,-9.60,0 --24.00,14.40,11.09,0.00,1.00,9.60,9.60,0 --19.20,9.60,11.11,0.00,1.00,9.60,-4.80,0 --19.20,9.60,11.13,0.00,1.00,4.80,4.80,0 --14.40,4.80,11.15,0.00,1.00,4.80,-4.80,0 --9.60,4.80,11.17,0.00,1.00,0.00,4.80,0 --4.80,0.00,11.19,0.00,1.00,0.00,-0.00,0 -0.00,0.00,11.21,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,11.24,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,11.26,0.00,1.00,-9.60,0.00,0 -14.40,-9.60,11.28,0.00,1.00,-9.60,-4.80,0 -14.40,-9.60,11.30,0.00,1.00,-14.40,4.80,0 -19.20,-14.40,11.32,0.00,1.00,-14.40,-4.80,0 -24.00,-14.40,11.34,0.00,1.00,-19.20,4.80,0 -28.80,-19.20,11.36,0.00,1.00,-24.00,-4.80,0 -33.60,-19.20,11.39,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,11.41,0.00,1.00,-28.80,-9.60,0 -43.20,-24.00,11.43,0.00,1.00,-33.60,9.60,0 -48.00,-24.00,11.45,0.00,1.00,-38.40,-9.60,0 -52.80,-28.80,11.47,0.00,1.00,-48.00,9.60,0 -57.60,-28.80,11.49,0.00,1.00,-52.80,-9.60,0 -62.40,-28.80,11.51,0.00,1.00,-57.60,9.60,0 -67.20,-33.60,11.54,0.00,1.00,-67.20,-9.60,0 -72.00,-33.60,11.56,0.00,1.00,-76.80,9.60,0 -81.60,-33.60,11.58,0.00,1.00,-81.60,-9.60,0 -86.40,-33.60,11.60,0.00,1.00,-91.20,9.60,0 -91.20,-33.60,11.62,0.00,1.00,-100.80,-9.60,0 -96.00,-33.60,11.64,0.00,1.00,-110.40,9.60,0 -100.80,-33.60,11.66,0.00,1.00,-115.20,-9.60,0 -110.40,-33.60,11.68,0.00,1.00,-124.80,9.60,0 -115.20,-33.60,11.71,0.00,1.00,-129.60,-9.60,0 -120.00,-28.80,11.73,0.00,1.00,-139.20,9.60,0 -124.80,-28.80,11.75,0.00,1.00,-144.00,-9.60,0 -129.60,-28.80,11.77,0.00,1.00,-148.80,9.60,0 -134.40,-24.00,11.79,0.00,1.00,-153.60,-9.60,0 -139.20,-24.00,11.81,0.00,1.00,-153.60,9.60,0 -144.00,-19.20,11.83,0.00,1.00,-158.40,-9.60,0 -148.80,-19.20,11.86,0.00,1.00,-163.20,4.80,0 -153.60,-14.40,11.88,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,11.90,0.00,1.00,-168.00,4.80,0 -163.20,-9.60,11.92,0.00,1.00,-172.80,-4.80,0 -168.00,-9.60,11.94,0.00,1.00,-172.80,4.80,0 -168.00,-4.80,11.96,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,11.98,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,12.03,0.00,1.00,177.60,-0.00,0 --172.80,4.80,12.05,0.00,1.00,172.80,0.00,0 --168.00,4.80,12.07,0.00,1.00,172.80,-0.00,0 --168.00,9.60,12.09,0.00,1.00,168.00,4.80,0 --163.20,9.60,12.11,0.00,1.00,163.20,-4.80,0 --158.40,14.40,12.13,0.00,1.00,163.20,4.80,0 --153.60,14.40,12.15,0.00,1.00,158.40,-4.80,0 --148.80,19.20,12.18,0.00,1.00,153.60,4.80,0 --144.00,19.20,12.20,0.00,1.00,153.60,-9.60,0 --139.20,24.00,12.22,0.00,1.00,148.80,9.60,0 --134.40,24.00,12.24,0.00,1.00,144.00,-9.60,0 --129.60,28.80,12.26,0.00,1.00,139.20,9.60,0 --124.80,28.80,12.28,0.00,1.00,129.60,-9.60,0 --120.00,28.80,12.30,0.00,1.00,124.80,9.60,0 --115.20,33.60,12.33,0.00,1.00,115.20,-9.60,0 --110.40,33.60,12.35,0.00,1.00,110.40,9.60,0 --100.80,33.60,12.37,0.00,1.00,100.80,-9.60,0 --96.00,33.60,12.39,0.00,1.00,91.20,9.60,0 --91.20,33.60,12.41,0.00,1.00,81.60,-9.60,0 --86.40,33.60,12.43,0.00,1.00,76.80,9.60,0 --81.60,33.60,12.45,0.00,1.00,67.20,-9.60,0 --72.00,33.60,12.48,0.00,1.00,57.60,9.60,0 --67.20,33.60,12.50,0.00,1.00,52.80,-9.60,0 --62.40,28.80,12.52,0.00,1.00,48.00,9.60,0 --57.60,28.80,12.54,0.00,1.00,38.40,-9.60,0 --52.80,28.80,12.56,0.00,1.00,33.60,9.60,0 --48.00,24.00,12.58,0.00,1.00,28.80,-9.60,0 --43.20,24.00,12.60,0.00,1.00,28.80,9.60,0 --38.40,24.00,12.62,0.00,1.00,24.00,-9.60,0 --33.60,19.20,12.65,0.00,1.00,19.20,4.80,0 --28.80,19.20,12.67,0.00,1.00,14.40,-4.80,0 --24.00,14.40,12.69,0.00,1.00,14.40,4.80,0 --19.20,14.40,12.71,0.00,1.00,9.60,-4.80,0 --14.40,9.60,12.73,0.00,1.00,9.60,4.80,0 --14.40,9.60,12.75,0.00,1.00,4.80,-4.80,0 --9.60,4.80,12.77,0.00,1.00,4.80,0.00,0 --4.80,4.80,12.80,0.00,1.00,0.00,-0.00,0 -0.00,0.00,12.82,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.84,0.00,1.00,-4.80,-0.00,0 -9.60,-4.80,12.86,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,12.88,0.00,1.00,-9.60,-0.00,0 -14.40,-9.60,12.90,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,12.92,0.00,1.00,-19.20,-4.80,0 -24.00,-19.20,12.95,0.00,1.00,-24.00,4.80,0 -28.80,-19.20,12.97,0.00,1.00,-24.00,-4.80,0 -33.60,-24.00,12.99,0.00,1.00,-28.80,4.80,0 -38.40,-24.00,13.01,0.00,1.00,-33.60,-4.80,0 -43.20,-28.80,13.03,0.00,1.00,-38.40,4.80,0 -48.00,-28.80,13.05,0.00,1.00,-43.20,-4.80,0 -52.80,-33.60,13.07,0.00,1.00,-48.00,4.80,0 -57.60,-33.60,13.09,0.00,1.00,-52.80,-4.80,0 -62.40,-33.60,13.12,0.00,1.00,-62.40,4.80,0 -67.20,-38.40,13.14,0.00,1.00,-67.20,-4.80,0 -72.00,-38.40,13.16,0.00,1.00,-76.80,4.80,0 -81.60,-38.40,13.18,0.00,1.00,-86.40,-4.80,0 -86.40,-38.40,13.20,0.00,1.00,-91.20,4.80,0 -91.20,-38.40,13.22,0.00,1.00,-100.80,-4.80,0 -96.00,-38.40,13.24,0.00,1.00,-105.60,4.80,0 -105.60,-38.40,13.27,0.00,1.00,-115.20,-4.80,0 -110.40,-38.40,13.29,0.00,1.00,-120.00,4.80,0 -115.20,-33.60,13.31,0.00,1.00,-129.60,-4.80,0 -120.00,-33.60,13.33,0.00,1.00,-134.40,4.80,0 -124.80,-33.60,13.35,0.00,1.00,-139.20,-4.80,0 -129.60,-28.80,13.37,0.00,1.00,-144.00,4.80,0 -134.40,-28.80,13.39,0.00,1.00,-148.80,-4.80,0 -139.20,-24.00,13.42,0.00,1.00,-153.60,4.80,0 -144.00,-24.00,13.44,0.00,1.00,-158.40,-4.80,0 -148.80,-19.20,13.46,0.00,1.00,-158.40,4.80,0 -153.60,-19.20,13.48,0.00,1.00,-163.20,-4.80,0 -158.40,-14.40,13.50,0.00,1.00,-168.00,4.80,0 -163.20,-14.40,13.52,0.00,1.00,-168.00,-4.80,0 -168.00,-9.60,13.54,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,13.56,0.00,1.00,-177.60,-0.00,0 -172.80,-4.80,13.59,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.63,0.00,1.00,177.60,-0.00,0 --172.80,4.80,13.65,0.00,1.00,172.80,0.00,0 --172.80,9.60,13.67,0.00,1.00,168.00,-0.00,0 --168.00,9.60,13.69,0.00,1.00,168.00,0.00,0 --163.20,14.40,13.71,0.00,1.00,163.20,-4.80,0 --158.40,14.40,13.74,0.00,1.00,158.40,4.80,0 --153.60,19.20,13.76,0.00,1.00,158.40,-4.80,0 --148.80,19.20,13.78,0.00,1.00,153.60,4.80,0 --144.00,24.00,13.80,0.00,1.00,148.80,-4.80,0 --139.20,24.00,13.82,0.00,1.00,144.00,4.80,0 --134.40,28.80,13.84,0.00,1.00,139.20,-4.80,0 --129.60,28.80,13.86,0.00,1.00,134.40,4.80,0 --124.80,33.60,13.89,0.00,1.00,129.60,-4.80,0 --120.00,33.60,13.91,0.00,1.00,120.00,4.80,0 --115.20,33.60,13.93,0.00,1.00,115.20,-4.80,0 --110.40,38.40,13.95,0.00,1.00,105.60,4.80,0 --105.60,38.40,13.97,0.00,1.00,100.80,-4.80,0 --96.00,38.40,13.99,0.00,1.00,91.20,4.80,0 --91.20,38.40,14.01,0.00,1.00,86.40,-4.80,0 --86.40,38.40,14.03,0.00,1.00,76.80,4.80,0 --81.60,38.40,14.06,0.00,1.00,67.20,-4.80,0 --72.00,38.40,14.08,0.00,1.00,62.40,4.80,0 --67.20,38.40,14.10,0.00,1.00,52.80,-4.80,0 --62.40,33.60,14.12,0.00,1.00,48.00,4.80,0 --57.60,33.60,14.14,0.00,1.00,43.20,-4.80,0 --52.80,33.60,14.16,0.00,1.00,38.40,4.80,0 --48.00,28.80,14.18,0.00,1.00,33.60,-4.80,0 --43.20,28.80,14.21,0.00,1.00,28.80,4.80,0 --38.40,24.00,14.23,0.00,1.00,24.00,-4.80,0 --33.60,24.00,14.25,0.00,1.00,24.00,4.80,0 --28.80,19.20,14.27,0.00,1.00,19.20,-4.80,0 --24.00,19.20,14.29,0.00,1.00,14.40,4.80,0 --19.20,14.40,14.31,0.00,1.00,9.60,-4.80,0 --14.40,9.60,14.33,0.00,1.00,9.60,0.00,0 --9.60,9.60,14.36,0.00,1.00,4.80,-0.00,0 --9.60,4.80,14.38,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.40,0.00,1.00,0.00,-0.00,0 -0.00,0.00,14.42,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.44,0.00,1.00,-4.80,-0.00,0 -4.80,-4.80,14.46,0.00,1.00,-9.60,0.00,0 -9.60,-9.60,14.48,0.00,1.00,-14.40,-0.00,0 -14.40,-14.40,14.50,0.00,1.00,-14.40,0.00,0 -19.20,-14.40,14.53,0.00,1.00,-19.20,-0.00,0 -24.00,-19.20,14.55,0.00,1.00,-24.00,0.00,0 -24.00,-24.00,14.57,0.00,1.00,-28.80,-0.00,0 -28.80,-24.00,14.59,0.00,1.00,-33.60,0.00,0 -33.60,-28.80,14.61,0.00,1.00,-38.40,-0.00,0 -38.40,-28.80,14.63,0.00,1.00,-43.20,0.00,0 -43.20,-33.60,14.65,0.00,1.00,-48.00,-0.00,0 -48.00,-33.60,14.68,0.00,1.00,-52.80,0.00,0 -52.80,-38.40,14.70,0.00,1.00,-57.60,-0.00,0 -62.40,-38.40,14.72,0.00,1.00,-62.40,0.00,0 -67.20,-38.40,14.74,0.00,1.00,-72.00,-0.00,0 -72.00,-43.20,14.76,0.00,1.00,-76.80,0.00,0 -76.80,-43.20,14.78,0.00,1.00,-86.40,-0.00,0 -86.40,-43.20,14.80,0.00,1.00,-91.20,0.00,0 -91.20,-43.20,14.83,0.00,1.00,-100.80,-0.00,0 -96.00,-43.20,14.85,0.00,1.00,-105.60,0.00,0 -105.60,-43.20,14.87,0.00,1.00,-110.40,-0.00,0 -110.40,-43.20,14.89,0.00,1.00,-120.00,0.00,0 -115.20,-38.40,14.91,0.00,1.00,-124.80,-0.00,0 -124.80,-38.40,14.93,0.00,1.00,-129.60,0.00,0 -129.60,-38.40,14.95,0.00,1.00,-134.40,-0.00,0 -134.40,-33.60,14.97,0.00,1.00,-139.20,0.00,0 -139.20,-33.60,15.00,0.00,1.00,-144.00,-0.00,0 -144.00,-28.80,15.02,0.00,1.00,-148.80,0.00,0 -148.80,-28.80,15.04,0.00,1.00,-153.60,-0.00,0 -153.60,-24.00,15.06,0.00,1.00,-158.40,0.00,0 -158.40,-19.20,15.08,0.00,1.00,-163.20,-0.00,0 -158.40,-19.20,15.10,0.00,1.00,-163.20,0.00,0 -163.20,-14.40,15.12,0.00,1.00,-168.00,-0.00,0 -168.00,-9.60,15.15,0.00,1.00,-172.80,0.00,0 -172.80,-9.60,15.17,0.00,1.00,-172.80,-0.00,0 -172.80,-4.80,15.19,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,15.23,0.00,1.00,172.80,-0.00,0 --172.80,4.80,15.25,0.00,1.00,172.80,0.00,0 --172.80,9.60,15.27,0.00,1.00,168.00,-0.00,0 --168.00,9.60,15.30,0.00,1.00,163.20,0.00,0 --163.20,14.40,15.32,0.00,1.00,163.20,-0.00,0 --158.40,19.20,15.34,0.00,1.00,158.40,0.00,0 --158.40,19.20,15.36,0.00,1.00,153.60,-0.00,0 --153.60,24.00,15.38,0.00,1.00,148.80,0.00,0 --148.80,28.80,15.40,0.00,1.00,144.00,-0.00,0 --144.00,28.80,15.42,0.00,1.00,139.20,0.00,0 --139.20,33.60,15.44,0.00,1.00,134.40,-0.00,0 --134.40,33.60,15.47,0.00,1.00,129.60,0.00,0 --129.60,38.40,15.49,0.00,1.00,124.80,-0.00,0 --124.80,38.40,15.51,0.00,1.00,120.00,0.00,0 --115.20,38.40,15.53,0.00,1.00,110.40,-0.00,0 --110.40,43.20,15.55,0.00,1.00,105.60,0.00,0 --105.60,43.20,15.57,0.00,1.00,100.80,-0.00,0 --96.00,43.20,15.59,0.00,1.00,91.20,0.00,0 --91.20,43.20,15.62,0.00,1.00,86.40,-0.00,0 --86.40,43.20,15.64,0.00,1.00,76.80,0.00,0 --76.80,43.20,15.66,0.00,1.00,72.00,-0.00,0 --72.00,43.20,15.68,0.00,1.00,62.40,0.00,0 --67.20,38.40,15.70,0.00,1.00,57.60,-0.00,0 --62.40,38.40,15.72,0.00,1.00,52.80,0.00,0 --52.80,38.40,15.74,0.00,1.00,48.00,-0.00,0 --48.00,33.60,15.77,0.00,1.00,43.20,0.00,0 --43.20,33.60,15.79,0.00,1.00,38.40,-0.00,0 --38.40,28.80,15.81,0.00,1.00,33.60,0.00,0 --33.60,28.80,15.83,0.00,1.00,28.80,-0.00,0 --28.80,24.00,15.85,0.00,1.00,24.00,0.00,0 --24.00,24.00,15.87,0.00,1.00,19.20,-0.00,0 --24.00,19.20,15.89,0.00,1.00,14.40,0.00,0 --19.20,14.40,15.91,0.00,1.00,14.40,-0.00,0 --14.40,14.40,15.94,0.00,1.00,9.60,0.00,0 --9.60,9.60,15.96,0.00,1.00,4.80,-0.00,0 --4.80,4.80,15.98,0.00,1.00,4.80,0.00,0 --4.80,4.80,16.00,0.00,1.00,0.00,-0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.98,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,15.96,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,15.94,0.00,1.00,-14.40,0.00,0 -14.40,-14.40,15.91,0.00,1.00,-19.20,-0.00,0 -14.40,-19.20,15.89,0.00,1.00,-24.00,0.00,0 -19.20,-19.20,15.87,0.00,1.00,-24.00,-0.00,0 -24.00,-24.00,15.85,0.00,1.00,-28.80,0.00,0 -28.80,-28.80,15.83,0.00,1.00,-33.60,-0.00,0 -33.60,-28.80,15.81,0.00,1.00,-38.40,0.00,0 -38.40,-33.60,15.79,0.00,1.00,-43.20,-0.00,0 -43.20,-38.40,15.77,0.00,1.00,-48.00,0.00,0 -48.00,-38.40,15.74,0.00,1.00,-52.80,-4.80,0 -52.80,-43.20,15.72,0.00,1.00,-62.40,4.80,0 -57.60,-43.20,15.70,0.00,1.00,-67.20,-4.80,0 -62.40,-43.20,15.68,0.00,1.00,-72.00,4.80,0 -72.00,-48.00,15.66,0.00,1.00,-76.80,-4.80,0 -76.80,-48.00,15.64,0.00,1.00,-86.40,4.80,0 -86.40,-48.00,15.62,0.00,1.00,-91.20,-4.80,0 -91.20,-48.00,15.59,0.00,1.00,-96.00,4.80,0 -100.80,-48.00,15.57,0.00,1.00,-105.60,-4.80,0 -105.60,-48.00,15.55,0.00,1.00,-110.40,4.80,0 -110.40,-48.00,15.53,0.00,1.00,-115.20,-4.80,0 -120.00,-43.20,15.51,0.00,1.00,-124.80,4.80,0 -124.80,-43.20,15.49,0.00,1.00,-129.60,-4.80,0 -129.60,-38.40,15.47,0.00,1.00,-134.40,4.80,0 -134.40,-38.40,15.44,0.00,1.00,-139.20,-4.80,0 -139.20,-33.60,15.42,0.00,1.00,-144.00,0.00,0 -144.00,-33.60,15.40,0.00,1.00,-148.80,-0.00,0 -148.80,-28.80,15.38,0.00,1.00,-153.60,0.00,0 -153.60,-24.00,15.36,0.00,1.00,-158.40,-0.00,0 -158.40,-24.00,15.34,0.00,1.00,-158.40,0.00,0 -163.20,-19.20,15.32,0.00,1.00,-163.20,-0.00,0 -163.20,-14.40,15.30,0.00,1.00,-168.00,0.00,0 -168.00,-14.40,15.27,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,15.25,0.00,1.00,-172.80,0.00,0 -172.80,-4.80,15.23,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,15.21,0.00,1.00,177.60,0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,0.00,0 --172.80,4.80,15.17,0.00,1.00,172.80,-0.00,0 --172.80,9.60,15.15,0.00,1.00,168.00,0.00,0 --168.00,14.40,15.12,0.00,1.00,163.20,-0.00,0 --163.20,14.40,15.10,0.00,1.00,158.40,0.00,0 --163.20,19.20,15.08,0.00,1.00,158.40,-0.00,0 --158.40,24.00,15.06,0.00,1.00,153.60,0.00,0 --153.60,24.00,15.04,0.00,1.00,148.80,-0.00,0 --148.80,28.80,15.02,0.00,1.00,144.00,0.00,0 --144.00,33.60,15.00,0.00,1.00,139.20,-0.00,0 --139.20,33.60,14.97,0.00,1.00,134.40,0.00,0 --134.40,38.40,14.95,0.00,1.00,129.60,-4.80,0 --129.60,38.40,14.93,0.00,1.00,124.80,4.80,0 --124.80,43.20,14.91,0.00,1.00,115.20,-4.80,0 --120.00,43.20,14.89,0.00,1.00,110.40,4.80,0 --110.40,48.00,14.87,0.00,1.00,105.60,-4.80,0 --105.60,48.00,14.85,0.00,1.00,96.00,4.80,0 --100.80,48.00,14.83,0.00,1.00,91.20,-4.80,0 --91.20,48.00,14.80,0.00,1.00,86.40,4.80,0 --86.40,48.00,14.78,0.00,1.00,76.80,-4.80,0 --76.80,48.00,14.76,0.00,1.00,72.00,4.80,0 --72.00,48.00,14.74,0.00,1.00,67.20,-4.80,0 --62.40,43.20,14.72,0.00,1.00,62.40,4.80,0 --57.60,43.20,14.70,0.00,1.00,52.80,-4.80,0 --52.80,43.20,14.68,0.00,1.00,48.00,4.80,0 --48.00,38.40,14.65,0.00,1.00,43.20,-4.80,0 --43.20,38.40,14.63,0.00,1.00,38.40,0.00,0 --38.40,33.60,14.61,0.00,1.00,33.60,-0.00,0 --33.60,28.80,14.59,0.00,1.00,28.80,0.00,0 --28.80,28.80,14.57,0.00,1.00,24.00,-0.00,0 --24.00,24.00,14.55,0.00,1.00,24.00,0.00,0 --19.20,19.20,14.53,0.00,1.00,19.20,-0.00,0 --14.40,19.20,14.50,0.00,1.00,14.40,0.00,0 --14.40,14.40,14.48,0.00,1.00,9.60,-0.00,0 --9.60,9.60,14.46,0.00,1.00,4.80,0.00,0 --4.80,4.80,14.44,0.00,1.00,4.80,-0.00,0 --4.80,4.80,14.42,0.00,1.00,0.00,0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,14.38,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,14.36,0.00,1.00,-9.60,-0.00,0 -9.60,-9.60,14.33,0.00,1.00,-14.40,0.00,0 -9.60,-14.40,14.31,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,14.29,0.00,1.00,-24.00,4.80,0 -19.20,-24.00,14.27,0.00,1.00,-28.80,-4.80,0 -24.00,-24.00,14.25,0.00,1.00,-33.60,4.80,0 -24.00,-28.80,14.23,0.00,1.00,-38.40,-4.80,0 -28.80,-33.60,14.21,0.00,1.00,-43.20,4.80,0 -33.60,-38.40,14.18,0.00,1.00,-48.00,-4.80,0 -38.40,-38.40,14.16,0.00,1.00,-52.80,4.80,0 -43.20,-43.20,14.14,0.00,1.00,-57.60,-4.80,0 -48.00,-43.20,14.12,0.00,1.00,-62.40,4.80,0 -52.80,-48.00,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-48.00,14.08,0.00,1.00,-72.00,9.60,0 -67.20,-52.80,14.06,0.00,1.00,-81.60,-9.60,0 -76.80,-52.80,14.03,0.00,1.00,-86.40,9.60,0 -86.40,-52.80,14.01,0.00,1.00,-91.20,-9.60,0 -91.20,-52.80,13.99,0.00,1.00,-96.00,9.60,0 -100.80,-52.80,13.97,0.00,1.00,-105.60,-9.60,0 -105.60,-52.80,13.95,0.00,1.00,-110.40,9.60,0 -115.20,-48.00,13.93,0.00,1.00,-115.20,-9.60,0 -120.00,-48.00,13.91,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,13.89,0.00,1.00,-124.80,-4.80,0 -134.40,-43.20,13.86,0.00,1.00,-129.60,4.80,0 -139.20,-43.20,13.84,0.00,1.00,-134.40,-4.80,0 -144.00,-38.40,13.82,0.00,1.00,-139.20,4.80,0 -148.80,-33.60,13.80,0.00,1.00,-144.00,-4.80,0 -153.60,-33.60,13.78,0.00,1.00,-148.80,4.80,0 -158.40,-28.80,13.76,0.00,1.00,-153.60,-4.80,0 -158.40,-24.00,13.74,0.00,1.00,-158.40,4.80,0 -163.20,-19.20,13.71,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,13.69,0.00,1.00,-168.00,4.80,0 -168.00,-14.40,13.67,0.00,1.00,-172.80,-0.00,0 -172.80,-9.60,13.65,0.00,1.00,-172.80,0.00,0 -177.60,-4.80,13.63,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,13.61,0.00,1.00,177.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 --177.60,4.80,13.56,0.00,1.00,172.80,-0.00,0 --172.80,9.60,13.54,0.00,1.00,168.00,0.00,0 --168.00,14.40,13.52,0.00,1.00,163.20,-0.00,0 --168.00,19.20,13.50,0.00,1.00,158.40,4.80,0 --163.20,19.20,13.48,0.00,1.00,153.60,-4.80,0 --158.40,24.00,13.46,0.00,1.00,148.80,4.80,0 --158.40,28.80,13.44,0.00,1.00,144.00,-4.80,0 --153.60,33.60,13.42,0.00,1.00,139.20,4.80,0 --148.80,33.60,13.39,0.00,1.00,134.40,-4.80,0 --144.00,38.40,13.37,0.00,1.00,129.60,4.80,0 --139.20,43.20,13.35,0.00,1.00,124.80,-4.80,0 --134.40,43.20,13.33,0.00,1.00,120.00,4.80,0 --129.60,48.00,13.31,0.00,1.00,115.20,-4.80,0 --120.00,48.00,13.29,0.00,1.00,110.40,9.60,0 --115.20,48.00,13.27,0.00,1.00,105.60,-9.60,0 --105.60,52.80,13.24,0.00,1.00,96.00,9.60,0 --100.80,52.80,13.22,0.00,1.00,91.20,-9.60,0 --91.20,52.80,13.20,0.00,1.00,86.40,9.60,0 --86.40,52.80,13.18,0.00,1.00,81.60,-9.60,0 --76.80,52.80,13.16,0.00,1.00,72.00,9.60,0 --67.20,52.80,13.14,0.00,1.00,67.20,-9.60,0 --62.40,48.00,13.12,0.00,1.00,62.40,9.60,0 --52.80,48.00,13.09,0.00,1.00,57.60,-4.80,0 --48.00,43.20,13.07,0.00,1.00,52.80,4.80,0 --43.20,43.20,13.05,0.00,1.00,48.00,-4.80,0 --38.40,38.40,13.03,0.00,1.00,43.20,4.80,0 --33.60,38.40,13.01,0.00,1.00,38.40,-4.80,0 --28.80,33.60,12.99,0.00,1.00,33.60,4.80,0 --24.00,28.80,12.97,0.00,1.00,28.80,-4.80,0 --24.00,24.00,12.95,0.00,1.00,24.00,4.80,0 --19.20,24.00,12.92,0.00,1.00,19.20,-4.80,0 --14.40,19.20,12.90,0.00,1.00,14.40,4.80,0 --9.60,14.40,12.88,0.00,1.00,9.60,-4.80,0 --9.60,9.60,12.86,0.00,1.00,9.60,0.00,0 --4.80,9.60,12.84,0.00,1.00,4.80,-0.00,0 --4.80,4.80,12.82,0.00,1.00,0.00,0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,0.00,0 -4.80,-4.80,12.77,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,12.75,0.00,1.00,-14.40,-0.00,0 -9.60,-14.40,12.73,0.00,1.00,-14.40,4.80,0 -9.60,-14.40,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-19.20,12.69,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,12.67,0.00,1.00,-28.80,-4.80,0 -19.20,-28.80,12.65,0.00,1.00,-33.60,4.80,0 -24.00,-33.60,12.62,0.00,1.00,-38.40,-9.60,0 -28.80,-33.60,12.60,0.00,1.00,-43.20,9.60,0 -28.80,-38.40,12.58,0.00,1.00,-48.00,-9.60,0 -33.60,-43.20,12.56,0.00,1.00,-52.80,9.60,0 -38.40,-43.20,12.54,0.00,1.00,-57.60,-9.60,0 -48.00,-48.00,12.52,0.00,1.00,-62.40,9.60,0 -52.80,-52.80,12.50,0.00,1.00,-67.20,-9.60,0 -57.60,-52.80,12.48,0.00,1.00,-72.00,9.60,0 -67.20,-57.60,12.45,0.00,1.00,-81.60,-14.40,0 -76.80,-57.60,12.43,0.00,1.00,-86.40,14.40,0 -81.60,-57.60,12.41,0.00,1.00,-91.20,-14.40,0 -91.20,-57.60,12.39,0.00,1.00,-96.00,14.40,0 -100.80,-57.60,12.37,0.00,1.00,-100.80,-14.40,0 -110.40,-57.60,12.35,0.00,1.00,-110.40,14.40,0 -115.20,-52.80,12.33,0.00,1.00,-115.20,-14.40,0 -124.80,-52.80,12.30,0.00,1.00,-120.00,9.60,0 -129.60,-48.00,12.28,0.00,1.00,-124.80,-9.60,0 -139.20,-48.00,12.26,0.00,1.00,-129.60,9.60,0 -144.00,-43.20,12.24,0.00,1.00,-134.40,-9.60,0 -148.80,-38.40,12.22,0.00,1.00,-139.20,9.60,0 -153.60,-38.40,12.20,0.00,1.00,-144.00,-9.60,0 -153.60,-33.60,12.18,0.00,1.00,-148.80,9.60,0 -158.40,-28.80,12.15,0.00,1.00,-153.60,-9.60,0 -163.20,-24.00,12.13,0.00,1.00,-158.40,4.80,0 -163.20,-24.00,12.11,0.00,1.00,-163.20,-4.80,0 -168.00,-19.20,12.09,0.00,1.00,-168.00,4.80,0 -172.80,-14.40,12.07,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,12.05,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,12.03,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,12.01,0.00,1.00,177.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 --177.60,4.80,11.96,0.00,1.00,168.00,-0.00,0 --172.80,9.60,11.94,0.00,1.00,168.00,4.80,0 --172.80,14.40,11.92,0.00,1.00,163.20,-4.80,0 --168.00,19.20,11.90,0.00,1.00,158.40,4.80,0 --163.20,24.00,11.88,0.00,1.00,153.60,-4.80,0 --163.20,24.00,11.86,0.00,1.00,148.80,4.80,0 --158.40,28.80,11.83,0.00,1.00,144.00,-9.60,0 --153.60,33.60,11.81,0.00,1.00,139.20,9.60,0 --153.60,38.40,11.79,0.00,1.00,134.40,-9.60,0 --148.80,38.40,11.77,0.00,1.00,129.60,9.60,0 --144.00,43.20,11.75,0.00,1.00,124.80,-9.60,0 --139.20,48.00,11.73,0.00,1.00,120.00,9.60,0 --129.60,48.00,11.71,0.00,1.00,115.20,-9.60,0 --124.80,52.80,11.68,0.00,1.00,110.40,9.60,0 --115.20,52.80,11.66,0.00,1.00,100.80,-14.40,0 --110.40,57.60,11.64,0.00,1.00,96.00,14.40,0 --100.80,57.60,11.62,0.00,1.00,91.20,-14.40,0 --91.20,57.60,11.60,0.00,1.00,86.40,14.40,0 --81.60,57.60,11.58,0.00,1.00,81.60,-14.40,0 --76.80,57.60,11.56,0.00,1.00,72.00,14.40,0 --67.20,57.60,11.54,0.00,1.00,67.20,-14.40,0 --57.60,52.80,11.51,0.00,1.00,62.40,9.60,0 --52.80,52.80,11.49,0.00,1.00,57.60,-9.60,0 --48.00,48.00,11.47,0.00,1.00,52.80,9.60,0 --38.40,43.20,11.45,0.00,1.00,48.00,-9.60,0 --33.60,43.20,11.43,0.00,1.00,43.20,9.60,0 --28.80,38.40,11.41,0.00,1.00,38.40,-9.60,0 --28.80,33.60,11.39,0.00,1.00,33.60,9.60,0 --24.00,33.60,11.36,0.00,1.00,28.80,-9.60,0 --19.20,28.80,11.34,0.00,1.00,24.00,4.80,0 --14.40,24.00,11.32,0.00,1.00,19.20,-4.80,0 --14.40,19.20,11.30,0.00,1.00,14.40,4.80,0 --9.60,14.40,11.28,0.00,1.00,14.40,-4.80,0 --9.60,14.40,11.26,0.00,1.00,9.60,4.80,0 --4.80,9.60,11.24,0.00,1.00,4.80,-0.00,0 --4.80,4.80,11.21,0.00,1.00,0.00,0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,11.17,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,11.13,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,11.11,0.00,1.00,-19.20,-4.80,0 -9.60,-19.20,11.09,0.00,1.00,-24.00,4.80,0 -14.40,-24.00,11.07,0.00,1.00,-28.80,-9.60,0 -19.20,-28.80,11.04,0.00,1.00,-33.60,9.60,0 -19.20,-33.60,11.02,0.00,1.00,-38.40,-9.60,0 -24.00,-38.40,11.00,0.00,1.00,-43.20,9.60,0 -28.80,-43.20,10.98,0.00,1.00,-48.00,-14.40,0 -33.60,-43.20,10.96,0.00,1.00,-52.80,14.40,0 -38.40,-48.00,10.94,0.00,1.00,-57.60,-14.40,0 -43.20,-52.80,10.92,0.00,1.00,-62.40,14.40,0 -48.00,-52.80,10.89,0.00,1.00,-72.00,-14.40,0 -52.80,-57.60,10.87,0.00,1.00,-76.80,14.40,0 -62.40,-57.60,10.85,0.00,1.00,-81.60,-19.20,0 -72.00,-62.40,10.83,0.00,1.00,-86.40,19.20,0 -81.60,-62.40,10.81,0.00,1.00,-91.20,-19.20,0 -91.20,-62.40,10.79,0.00,1.00,-96.00,19.20,0 -100.80,-62.40,10.77,0.00,1.00,-100.80,-19.20,0 -110.40,-62.40,10.74,0.00,1.00,-105.60,19.20,0 -120.00,-57.60,10.72,0.00,1.00,-115.20,-14.40,0 -129.60,-57.60,10.70,0.00,1.00,-120.00,14.40,0 -134.40,-52.80,10.68,0.00,1.00,-124.80,-14.40,0 -139.20,-48.00,10.66,0.00,1.00,-129.60,14.40,0 -144.00,-48.00,10.64,0.00,1.00,-134.40,-14.40,0 -148.80,-43.20,10.62,0.00,1.00,-139.20,14.40,0 -153.60,-38.40,10.60,0.00,1.00,-144.00,-14.40,0 -158.40,-33.60,10.57,0.00,1.00,-148.80,9.60,0 -163.20,-33.60,10.55,0.00,1.00,-153.60,-9.60,0 -163.20,-28.80,10.53,0.00,1.00,-158.40,9.60,0 -168.00,-24.00,10.51,0.00,1.00,-163.20,-9.60,0 -168.00,-19.20,10.49,0.00,1.00,-163.20,4.80,0 -172.80,-14.40,10.47,0.00,1.00,-168.00,-4.80,0 -172.80,-9.60,10.45,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,10.42,0.00,1.00,-177.60,-0.00,0 -177.60,-0.00,10.40,0.00,1.00,177.60,0.00,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 --177.60,4.80,10.36,0.00,1.00,168.00,-0.00,0 --172.80,9.60,10.34,0.00,1.00,163.20,4.80,0 --172.80,14.40,10.32,0.00,1.00,163.20,-4.80,0 --168.00,19.20,10.30,0.00,1.00,158.40,4.80,0 --168.00,24.00,10.28,0.00,1.00,153.60,-9.60,0 --163.20,28.80,10.25,0.00,1.00,148.80,9.60,0 --163.20,33.60,10.23,0.00,1.00,144.00,-9.60,0 --158.40,33.60,10.21,0.00,1.00,139.20,9.60,0 --153.60,38.40,10.19,0.00,1.00,134.40,-14.40,0 --148.80,43.20,10.17,0.00,1.00,129.60,14.40,0 --144.00,48.00,10.15,0.00,1.00,124.80,-14.40,0 --139.20,48.00,10.13,0.00,1.00,120.00,14.40,0 --134.40,52.80,10.10,0.00,1.00,115.20,-14.40,0 --129.60,57.60,10.08,0.00,1.00,105.60,14.40,0 --120.00,57.60,10.06,0.00,1.00,100.80,-14.40,0 --110.40,62.40,10.04,0.00,1.00,96.00,19.20,0 --100.80,62.40,10.02,0.00,1.00,91.20,-19.20,0 --91.20,62.40,10.00,0.00,1.00,86.40,19.20,0 --81.60,62.40,9.98,0.00,1.00,81.60,-19.20,0 --72.00,62.40,9.95,0.00,1.00,76.80,19.20,0 --62.40,57.60,9.93,0.00,1.00,72.00,-19.20,0 --52.80,57.60,9.91,0.00,1.00,62.40,14.40,0 --48.00,52.80,9.89,0.00,1.00,57.60,-14.40,0 --43.20,52.80,9.87,0.00,1.00,52.80,14.40,0 --38.40,48.00,9.85,0.00,1.00,48.00,-14.40,0 --33.60,43.20,9.83,0.00,1.00,43.20,14.40,0 --28.80,43.20,9.81,0.00,1.00,38.40,-14.40,0 --24.00,38.40,9.78,0.00,1.00,33.60,9.60,0 --19.20,33.60,9.76,0.00,1.00,28.80,-9.60,0 --19.20,28.80,9.74,0.00,1.00,24.00,9.60,0 --14.40,24.00,9.72,0.00,1.00,19.20,-9.60,0 --9.60,19.20,9.70,0.00,1.00,19.20,4.80,0 --9.60,19.20,9.68,0.00,1.00,14.40,-4.80,0 --4.80,14.40,9.66,0.00,1.00,9.60,4.80,0 --4.80,9.60,9.63,0.00,1.00,4.80,-4.80,0 --0.00,4.80,9.61,0.00,1.00,0.00,0.00,0 -0.00,0.00,9.59,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,9.57,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,9.53,0.00,1.00,-19.20,4.80,0 -9.60,-19.20,9.51,0.00,1.00,-24.00,-4.80,0 -9.60,-24.00,9.48,0.00,1.00,-28.80,9.60,0 -14.40,-24.00,9.46,0.00,1.00,-33.60,-9.60,0 -14.40,-28.80,9.44,0.00,1.00,-33.60,14.40,0 -19.20,-33.60,9.42,0.00,1.00,-38.40,-14.40,0 -19.20,-38.40,9.40,0.00,1.00,-43.20,14.40,0 -24.00,-43.20,9.38,0.00,1.00,-48.00,-14.40,0 -28.80,-48.00,9.36,0.00,1.00,-57.60,19.20,0 -33.60,-52.80,9.34,0.00,1.00,-62.40,-19.20,0 -38.40,-52.80,9.31,0.00,1.00,-67.20,19.20,0 -43.20,-57.60,9.29,0.00,1.00,-72.00,-19.20,0 -48.00,-62.40,9.27,0.00,1.00,-76.80,19.20,0 -57.60,-62.40,9.25,0.00,1.00,-81.60,-19.20,0 -67.20,-67.20,9.23,0.00,1.00,-86.40,24.00,0 -81.60,-67.20,9.21,0.00,1.00,-91.20,-24.00,0 -91.20,-67.20,9.19,0.00,1.00,-96.00,24.00,0 -105.60,-67.20,9.16,0.00,1.00,-100.80,-24.00,0 -115.20,-67.20,9.14,0.00,1.00,-105.60,24.00,0 -124.80,-62.40,9.12,0.00,1.00,-110.40,-19.20,0 -134.40,-57.60,9.10,0.00,1.00,-115.20,19.20,0 -139.20,-57.60,9.08,0.00,1.00,-120.00,-19.20,0 -144.00,-52.80,9.06,0.00,1.00,-129.60,19.20,0 -148.80,-48.00,9.04,0.00,1.00,-134.40,-19.20,0 -153.60,-43.20,9.01,0.00,1.00,-139.20,19.20,0 -158.40,-43.20,8.99,0.00,1.00,-144.00,-14.40,0 -163.20,-38.40,8.97,0.00,1.00,-148.80,14.40,0 -163.20,-33.60,8.95,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,8.93,0.00,1.00,-153.60,9.60,0 -168.00,-24.00,8.91,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,8.89,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,8.87,0.00,1.00,-168.00,-4.80,0 -177.60,-9.60,8.84,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,8.82,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,8.80,0.00,1.00,177.60,0.00,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 --177.60,4.80,8.76,0.00,1.00,168.00,-4.80,0 --177.60,9.60,8.74,0.00,1.00,163.20,4.80,0 --172.80,14.40,8.72,0.00,1.00,158.40,-4.80,0 --172.80,19.20,8.69,0.00,1.00,153.60,9.60,0 --168.00,24.00,8.67,0.00,1.00,148.80,-9.60,0 --168.00,28.80,8.65,0.00,1.00,148.80,9.60,0 --163.20,33.60,8.63,0.00,1.00,144.00,-14.40,0 --163.20,38.40,8.61,0.00,1.00,139.20,14.40,0 --158.40,43.20,8.59,0.00,1.00,134.40,-14.40,0 --153.60,43.20,8.57,0.00,1.00,129.60,19.20,0 --148.80,48.00,8.54,0.00,1.00,120.00,-19.20,0 --144.00,52.80,8.52,0.00,1.00,115.20,19.20,0 --139.20,57.60,8.50,0.00,1.00,110.40,-19.20,0 --134.40,57.60,8.48,0.00,1.00,105.60,19.20,0 --124.80,62.40,8.46,0.00,1.00,100.80,-19.20,0 --115.20,67.20,8.44,0.00,1.00,96.00,24.00,0 --105.60,67.20,8.42,0.00,1.00,91.20,-24.00,0 --91.20,67.20,8.40,0.00,1.00,86.40,24.00,0 --81.60,67.20,8.37,0.00,1.00,81.60,-24.00,0 --67.20,67.20,8.35,0.00,1.00,76.80,24.00,0 --57.60,62.40,8.33,0.00,1.00,72.00,-19.20,0 --48.00,62.40,8.31,0.00,1.00,67.20,19.20,0 --43.20,57.60,8.29,0.00,1.00,62.40,-19.20,0 --38.40,52.80,8.27,0.00,1.00,57.60,19.20,0 --33.60,52.80,8.25,0.00,1.00,48.00,-19.20,0 --28.80,48.00,8.22,0.00,1.00,43.20,19.20,0 --24.00,43.20,8.20,0.00,1.00,38.40,-14.40,0 --19.20,38.40,8.18,0.00,1.00,33.60,14.40,0 --19.20,33.60,8.16,0.00,1.00,33.60,-14.40,0 --14.40,28.80,8.14,0.00,1.00,28.80,14.40,0 --14.40,24.00,8.12,0.00,1.00,24.00,-9.60,0 --9.60,24.00,8.10,0.00,1.00,19.20,9.60,0 --9.60,19.20,8.07,0.00,1.00,14.40,-4.80,0 --4.80,14.40,8.05,0.00,1.00,9.60,4.80,0 --4.80,9.60,8.03,0.00,1.00,4.80,-4.80,0 --0.00,4.80,8.01,0.00,1.00,0.00,0.00,0 -0.00,0.00,7.99,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,7.97,0.00,1.00,-9.60,0.00,0 -4.80,-9.60,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,7.93,0.00,1.00,-19.20,4.80,0 -4.80,-19.20,7.90,0.00,1.00,-24.00,-9.60,0 -9.60,-24.00,7.88,0.00,1.00,-28.80,9.60,0 -9.60,-28.80,7.86,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,7.84,0.00,1.00,-38.40,14.40,0 -14.40,-38.40,7.82,0.00,1.00,-43.20,-14.40,0 -14.40,-38.40,7.80,0.00,1.00,-48.00,19.20,0 -19.20,-43.20,7.78,0.00,1.00,-52.80,-19.20,0 -24.00,-48.00,7.75,0.00,1.00,-57.60,19.20,0 -24.00,-52.80,7.73,0.00,1.00,-62.40,-24.00,0 -28.80,-57.60,7.71,0.00,1.00,-67.20,24.00,0 -38.40,-62.40,7.69,0.00,1.00,-72.00,-24.00,0 -43.20,-62.40,7.67,0.00,1.00,-76.80,24.00,0 -52.80,-67.20,7.65,0.00,1.00,-81.60,-24.00,0 -62.40,-72.00,7.63,0.00,1.00,-86.40,28.80,0 -76.80,-72.00,7.60,0.00,1.00,-91.20,-28.80,0 -96.00,-72.00,7.58,0.00,1.00,-96.00,28.80,0 -110.40,-72.00,7.56,0.00,1.00,-100.80,-28.80,0 -120.00,-67.20,7.54,0.00,1.00,-105.60,28.80,0 -134.40,-67.20,7.52,0.00,1.00,-110.40,-24.00,0 -139.20,-62.40,7.50,0.00,1.00,-115.20,24.00,0 -148.80,-57.60,7.48,0.00,1.00,-120.00,-24.00,0 -153.60,-57.60,7.46,0.00,1.00,-124.80,24.00,0 -158.40,-52.80,7.43,0.00,1.00,-129.60,-24.00,0 -158.40,-48.00,7.41,0.00,1.00,-134.40,19.20,0 -163.20,-43.20,7.39,0.00,1.00,-139.20,-19.20,0 -163.20,-38.40,7.37,0.00,1.00,-144.00,19.20,0 -168.00,-33.60,7.35,0.00,1.00,-148.80,-14.40,0 -168.00,-28.80,7.33,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,7.31,0.00,1.00,-158.40,-9.60,0 -172.80,-19.20,7.28,0.00,1.00,-163.20,9.60,0 -172.80,-14.40,7.26,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,7.24,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,7.22,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,7.20,0.00,1.00,177.60,0.00,0 --177.60,0.00,7.18,0.00,1.00,172.80,0.00,0 --177.60,4.80,7.16,0.00,1.00,168.00,-4.80,0 --177.60,9.60,7.13,0.00,1.00,163.20,4.80,0 --172.80,14.40,7.11,0.00,1.00,158.40,-9.60,0 --172.80,19.20,7.09,0.00,1.00,153.60,9.60,0 --172.80,24.00,7.07,0.00,1.00,148.80,-9.60,0 --168.00,28.80,7.05,0.00,1.00,144.00,14.40,0 --168.00,33.60,7.03,0.00,1.00,139.20,-14.40,0 --163.20,38.40,7.01,0.00,1.00,134.40,19.20,0 --163.20,43.20,6.99,0.00,1.00,129.60,-19.20,0 --158.40,48.00,6.96,0.00,1.00,124.80,19.20,0 --158.40,52.80,6.94,0.00,1.00,120.00,-24.00,0 --153.60,57.60,6.92,0.00,1.00,115.20,24.00,0 --148.80,57.60,6.90,0.00,1.00,110.40,-24.00,0 --139.20,62.40,6.88,0.00,1.00,105.60,24.00,0 --134.40,67.20,6.86,0.00,1.00,100.80,-24.00,0 --120.00,67.20,6.84,0.00,1.00,96.00,28.80,0 --110.40,72.00,6.81,0.00,1.00,91.20,-28.80,0 --96.00,72.00,6.79,0.00,1.00,86.40,28.80,0 --76.80,72.00,6.77,0.00,1.00,81.60,-28.80,0 --62.40,72.00,6.75,0.00,1.00,76.80,28.80,0 --52.80,67.20,6.73,0.00,1.00,72.00,-24.00,0 --43.20,62.40,6.71,0.00,1.00,67.20,24.00,0 --38.40,62.40,6.69,0.00,1.00,62.40,-24.00,0 --28.80,57.60,6.66,0.00,1.00,57.60,24.00,0 --24.00,52.80,6.64,0.00,1.00,52.80,-24.00,0 --24.00,48.00,6.62,0.00,1.00,48.00,19.20,0 --19.20,43.20,6.60,0.00,1.00,43.20,-19.20,0 --14.40,38.40,6.58,0.00,1.00,38.40,19.20,0 --14.40,38.40,6.56,0.00,1.00,33.60,-14.40,0 --9.60,33.60,6.54,0.00,1.00,28.80,14.40,0 --9.60,28.80,6.52,0.00,1.00,24.00,-14.40,0 --9.60,24.00,6.49,0.00,1.00,19.20,9.60,0 --4.80,19.20,6.47,0.00,1.00,14.40,-9.60,0 --4.80,14.40,6.45,0.00,1.00,9.60,4.80,0 --4.80,9.60,6.43,0.00,1.00,4.80,-4.80,0 --0.00,4.80,6.41,0.00,1.00,0.00,0.00,0 -0.00,0.00,6.39,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,6.37,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-14.40,6.32,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,6.30,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,6.28,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,6.26,0.00,1.00,-33.60,-14.40,0 -9.60,-33.60,6.24,0.00,1.00,-38.40,19.20,0 -9.60,-38.40,6.22,0.00,1.00,-43.20,-19.20,0 -14.40,-43.20,6.19,0.00,1.00,-48.00,19.20,0 -14.40,-48.00,6.17,0.00,1.00,-52.80,-24.00,0 -14.40,-52.80,6.15,0.00,1.00,-57.60,24.00,0 -19.20,-57.60,6.13,0.00,1.00,-62.40,-28.80,0 -24.00,-57.60,6.11,0.00,1.00,-67.20,28.80,0 -28.80,-62.40,6.09,0.00,1.00,-72.00,-28.80,0 -33.60,-67.20,6.07,0.00,1.00,-76.80,28.80,0 -43.20,-72.00,6.05,0.00,1.00,-81.60,-28.80,0 -57.60,-72.00,6.02,0.00,1.00,-86.40,33.60,0 -76.80,-76.80,6.00,0.00,1.00,-91.20,-33.60,0 -96.00,-76.80,5.98,0.00,1.00,-96.00,33.60,0 -115.20,-76.80,5.96,0.00,1.00,-100.80,-33.60,0 -129.60,-72.00,5.94,0.00,1.00,-105.60,28.80,0 -139.20,-72.00,5.92,0.00,1.00,-110.40,-28.80,0 -148.80,-67.20,5.90,0.00,1.00,-115.20,28.80,0 -153.60,-62.40,5.87,0.00,1.00,-120.00,-28.80,0 -158.40,-57.60,5.85,0.00,1.00,-124.80,28.80,0 -163.20,-52.80,5.83,0.00,1.00,-129.60,-24.00,0 -163.20,-48.00,5.81,0.00,1.00,-134.40,24.00,0 -168.00,-43.20,5.79,0.00,1.00,-139.20,-24.00,0 -168.00,-38.40,5.77,0.00,1.00,-144.00,19.20,0 -172.80,-33.60,5.75,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,5.72,0.00,1.00,-153.60,14.40,0 -172.80,-24.00,5.70,0.00,1.00,-158.40,-14.40,0 -172.80,-19.20,5.68,0.00,1.00,-163.20,9.60,0 -177.60,-14.40,5.66,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,5.64,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,5.62,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,5.60,0.00,1.00,177.60,0.00,0 --177.60,0.00,5.58,0.00,1.00,172.80,0.00,0 --177.60,4.80,5.55,0.00,1.00,168.00,-4.80,0 --177.60,9.60,5.53,0.00,1.00,163.20,4.80,0 --177.60,14.40,5.51,0.00,1.00,158.40,-9.60,0 --172.80,19.20,5.49,0.00,1.00,153.60,9.60,0 --172.80,24.00,5.47,0.00,1.00,148.80,-14.40,0 --172.80,28.80,5.45,0.00,1.00,144.00,14.40,0 --172.80,33.60,5.43,0.00,1.00,139.20,-19.20,0 --168.00,38.40,5.40,0.00,1.00,134.40,19.20,0 --168.00,43.20,5.38,0.00,1.00,129.60,-24.00,0 --163.20,48.00,5.36,0.00,1.00,124.80,24.00,0 --163.20,52.80,5.34,0.00,1.00,120.00,-24.00,0 --158.40,57.60,5.32,0.00,1.00,115.20,28.80,0 --153.60,62.40,5.30,0.00,1.00,110.40,-28.80,0 --148.80,67.20,5.28,0.00,1.00,105.60,28.80,0 --139.20,72.00,5.26,0.00,1.00,100.80,-28.80,0 --129.60,72.00,5.23,0.00,1.00,96.00,28.80,0 --115.20,76.80,5.21,0.00,1.00,91.20,-33.60,0 --96.00,76.80,5.19,0.00,1.00,86.40,33.60,0 --76.80,76.80,5.17,0.00,1.00,81.60,-33.60,0 --57.60,72.00,5.15,0.00,1.00,76.80,33.60,0 --43.20,72.00,5.13,0.00,1.00,72.00,-28.80,0 --33.60,67.20,5.11,0.00,1.00,67.20,28.80,0 --28.80,62.40,5.08,0.00,1.00,62.40,-28.80,0 --24.00,57.60,5.06,0.00,1.00,57.60,28.80,0 --19.20,57.60,5.04,0.00,1.00,52.80,-28.80,0 --14.40,52.80,5.02,0.00,1.00,48.00,24.00,0 --14.40,48.00,5.00,0.00,1.00,43.20,-24.00,0 --14.40,43.20,4.98,0.00,1.00,38.40,19.20,0 --9.60,38.40,4.96,0.00,1.00,33.60,-19.20,0 --9.60,33.60,4.93,0.00,1.00,28.80,19.20,0 --4.80,28.80,4.91,0.00,1.00,24.00,-14.40,0 --4.80,24.00,4.89,0.00,1.00,19.20,14.40,0 --4.80,19.20,4.87,0.00,1.00,14.40,-9.60,0 --4.80,14.40,4.85,0.00,1.00,9.60,9.60,0 --0.00,9.60,4.83,0.00,1.00,4.80,-4.80,0 --0.00,4.80,4.81,0.00,1.00,0.00,4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,4.76,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,4.74,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,4.72,0.00,1.00,-19.20,9.60,0 -4.80,-19.20,4.70,0.00,1.00,-24.00,-9.60,0 -4.80,-24.00,4.68,0.00,1.00,-28.80,14.40,0 -4.80,-28.80,4.66,0.00,1.00,-33.60,-14.40,0 -4.80,-33.60,4.64,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,4.61,0.00,1.00,-43.20,-24.00,0 -9.60,-43.20,4.59,0.00,1.00,-48.00,24.00,0 -9.60,-48.00,4.57,0.00,1.00,-52.80,-24.00,0 -9.60,-52.80,4.55,0.00,1.00,-57.60,28.80,0 -14.40,-57.60,4.53,0.00,1.00,-62.40,-28.80,0 -14.40,-62.40,4.51,0.00,1.00,-67.20,33.60,0 -19.20,-67.20,4.49,0.00,1.00,-72.00,-33.60,0 -24.00,-72.00,4.46,0.00,1.00,-76.80,33.60,0 -33.60,-72.00,4.44,0.00,1.00,-81.60,-33.60,0 -43.20,-76.80,4.42,0.00,1.00,-86.40,38.40,0 -67.20,-81.60,4.40,0.00,1.00,-91.20,-38.40,0 -96.00,-81.60,4.38,0.00,1.00,-96.00,38.40,0 -124.80,-81.60,4.36,0.00,1.00,-100.80,-38.40,0 -144.00,-76.80,4.34,0.00,1.00,-105.60,33.60,0 -153.60,-72.00,4.32,0.00,1.00,-110.40,-33.60,0 -158.40,-67.20,4.29,0.00,1.00,-115.20,33.60,0 -163.20,-62.40,4.27,0.00,1.00,-120.00,-33.60,0 -168.00,-57.60,4.25,0.00,1.00,-124.80,28.80,0 -168.00,-52.80,4.23,0.00,1.00,-129.60,-28.80,0 -168.00,-48.00,4.21,0.00,1.00,-134.40,28.80,0 -172.80,-43.20,4.19,0.00,1.00,-139.20,-24.00,0 -172.80,-38.40,4.17,0.00,1.00,-144.00,24.00,0 -172.80,-33.60,4.14,0.00,1.00,-148.80,-19.20,0 -172.80,-28.80,4.12,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,4.10,0.00,1.00,-158.40,-14.40,0 -177.60,-19.20,4.08,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,4.06,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,4.04,0.00,1.00,-172.80,4.80,0 -177.60,-4.80,4.02,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,3.99,0.00,1.00,177.60,0.00,0 --177.60,0.00,3.97,0.00,1.00,172.80,0.00,0 --177.60,4.80,3.95,0.00,1.00,168.00,-4.80,0 --177.60,9.60,3.93,0.00,1.00,163.20,4.80,0 --177.60,14.40,3.91,0.00,1.00,158.40,-9.60,0 --177.60,19.20,3.89,0.00,1.00,153.60,14.40,0 --177.60,24.00,3.87,0.00,1.00,148.80,-14.40,0 --172.80,28.80,3.85,0.00,1.00,144.00,19.20,0 --172.80,33.60,3.82,0.00,1.00,139.20,-19.20,0 --172.80,38.40,3.80,0.00,1.00,134.40,24.00,0 --172.80,43.20,3.78,0.00,1.00,129.60,-24.00,0 --168.00,48.00,3.76,0.00,1.00,124.80,28.80,0 --168.00,52.80,3.74,0.00,1.00,120.00,-28.80,0 --168.00,57.60,3.72,0.00,1.00,115.20,28.80,0 --163.20,62.40,3.70,0.00,1.00,110.40,-33.60,0 --158.40,67.20,3.67,0.00,1.00,105.60,33.60,0 --153.60,72.00,3.65,0.00,1.00,100.80,-33.60,0 --144.00,76.80,3.63,0.00,1.00,96.00,33.60,0 --124.80,81.60,3.61,0.00,1.00,91.20,-38.40,0 --96.00,81.60,3.59,0.00,1.00,86.40,38.40,0 --67.20,81.60,3.57,0.00,1.00,81.60,-38.40,0 --43.20,76.80,3.55,0.00,1.00,76.80,38.40,0 --33.60,72.00,3.52,0.00,1.00,72.00,-33.60,0 --24.00,72.00,3.50,0.00,1.00,67.20,33.60,0 --19.20,67.20,3.48,0.00,1.00,62.40,-33.60,0 --14.40,62.40,3.46,0.00,1.00,57.60,33.60,0 --14.40,57.60,3.44,0.00,1.00,52.80,-28.80,0 --9.60,52.80,3.42,0.00,1.00,48.00,28.80,0 --9.60,48.00,3.40,0.00,1.00,43.20,-24.00,0 --9.60,43.20,3.38,0.00,1.00,38.40,24.00,0 --4.80,38.40,3.35,0.00,1.00,33.60,-24.00,0 --4.80,33.60,3.33,0.00,1.00,28.80,19.20,0 --4.80,28.80,3.31,0.00,1.00,24.00,-14.40,0 --4.80,24.00,3.29,0.00,1.00,19.20,14.40,0 --4.80,19.20,3.27,0.00,1.00,14.40,-9.60,0 --0.00,14.40,3.25,0.00,1.00,9.60,9.60,0 --0.00,9.60,3.23,0.00,1.00,4.80,-4.80,0 --0.00,4.80,3.20,0.00,1.00,0.00,4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,0.00,0 -0.00,-4.80,3.16,0.00,1.00,-9.60,4.80,0 -0.00,-9.60,3.14,0.00,1.00,-14.40,-4.80,0 -0.00,-14.40,3.12,0.00,1.00,-19.20,9.60,0 -0.00,-19.20,3.10,0.00,1.00,-24.00,-14.40,0 -0.00,-24.00,3.08,0.00,1.00,-28.80,14.40,0 -0.00,-28.80,3.05,0.00,1.00,-33.60,-19.20,0 -0.00,-33.60,3.03,0.00,1.00,-38.40,19.20,0 -4.80,-38.40,3.01,0.00,1.00,-43.20,-24.00,0 -4.80,-43.20,2.99,0.00,1.00,-48.00,28.80,0 -4.80,-48.00,2.97,0.00,1.00,-52.80,-28.80,0 -4.80,-52.80,2.95,0.00,1.00,-57.60,33.60,0 -4.80,-57.60,2.93,0.00,1.00,-62.40,-33.60,0 -4.80,-62.40,2.91,0.00,1.00,-67.20,33.60,0 -9.60,-67.20,2.88,0.00,1.00,-72.00,-38.40,0 -9.60,-72.00,2.86,0.00,1.00,-76.80,38.40,0 -14.40,-76.80,2.84,0.00,1.00,-81.60,-38.40,0 -24.00,-81.60,2.82,0.00,1.00,-86.40,43.20,0 -43.20,-86.40,2.80,0.00,1.00,-91.20,-43.20,0 -110.40,-86.40,2.78,0.00,1.00,-96.00,43.20,0 -148.80,-81.60,2.76,0.00,1.00,-100.80,-43.20,0 -163.20,-76.80,2.73,0.00,1.00,-105.60,38.40,0 -168.00,-72.00,2.71,0.00,1.00,-110.40,-38.40,0 -172.80,-67.20,2.69,0.00,1.00,-115.20,38.40,0 -172.80,-62.40,2.67,0.00,1.00,-120.00,-38.40,0 -172.80,-57.60,2.65,0.00,1.00,-124.80,33.60,0 -172.80,-52.80,2.63,0.00,1.00,-129.60,-33.60,0 -177.60,-48.00,2.61,0.00,1.00,-134.40,28.80,0 -177.60,-43.20,2.58,0.00,1.00,-139.20,-28.80,0 -177.60,-38.40,2.56,0.00,1.00,-144.00,24.00,0 -177.60,-33.60,2.54,0.00,1.00,-148.80,-24.00,0 -177.60,-28.80,2.52,0.00,1.00,-153.60,19.20,0 -177.60,-24.00,2.50,0.00,1.00,-158.40,-19.20,0 -177.60,-19.20,2.48,0.00,1.00,-163.20,14.40,0 -177.60,-14.40,2.46,0.00,1.00,-168.00,-9.60,0 -177.60,-9.60,2.44,0.00,1.00,-172.80,9.60,0 -177.60,-4.80,2.41,0.00,1.00,-177.60,-4.80,0 -177.60,-0.00,2.39,0.00,1.00,177.60,0.00,0 --177.60,0.00,2.37,0.00,1.00,172.80,0.00,0 --177.60,4.80,2.35,0.00,1.00,168.00,-4.80,0 --177.60,9.60,2.33,0.00,1.00,163.20,9.60,0 --177.60,14.40,2.31,0.00,1.00,158.40,-9.60,0 --177.60,19.20,2.29,0.00,1.00,153.60,14.40,0 --177.60,24.00,2.26,0.00,1.00,148.80,-19.20,0 --177.60,28.80,2.24,0.00,1.00,144.00,19.20,0 --177.60,33.60,2.22,0.00,1.00,139.20,-24.00,0 --177.60,38.40,2.20,0.00,1.00,134.40,24.00,0 --177.60,43.20,2.18,0.00,1.00,129.60,-28.80,0 --177.60,48.00,2.16,0.00,1.00,124.80,28.80,0 --172.80,52.80,2.14,0.00,1.00,120.00,-33.60,0 --172.80,57.60,2.11,0.00,1.00,115.20,33.60,0 --172.80,62.40,2.09,0.00,1.00,110.40,-38.40,0 --172.80,67.20,2.07,0.00,1.00,105.60,38.40,0 --168.00,72.00,2.05,0.00,1.00,100.80,-38.40,0 --163.20,76.80,2.03,0.00,1.00,96.00,38.40,0 --148.80,81.60,2.01,0.00,1.00,91.20,-43.20,0 --110.40,86.40,1.99,0.00,1.00,86.40,43.20,0 --43.20,86.40,1.97,0.00,1.00,81.60,-43.20,0 --24.00,81.60,1.94,0.00,1.00,76.80,43.20,0 --14.40,76.80,1.92,0.00,1.00,72.00,-38.40,0 --9.60,72.00,1.90,0.00,1.00,67.20,38.40,0 --9.60,67.20,1.88,0.00,1.00,62.40,-38.40,0 --4.80,62.40,1.86,0.00,1.00,57.60,33.60,0 --4.80,57.60,1.84,0.00,1.00,52.80,-33.60,0 --4.80,52.80,1.82,0.00,1.00,48.00,33.60,0 --4.80,48.00,1.79,0.00,1.00,43.20,-28.80,0 --4.80,43.20,1.77,0.00,1.00,38.40,28.80,0 --4.80,38.40,1.75,0.00,1.00,33.60,-24.00,0 --0.00,33.60,1.73,0.00,1.00,28.80,19.20,0 --0.00,28.80,1.71,0.00,1.00,24.00,-19.20,0 --0.00,24.00,1.69,0.00,1.00,19.20,14.40,0 --0.00,19.20,1.67,0.00,1.00,14.40,-14.40,0 --0.00,14.40,1.64,0.00,1.00,9.60,9.60,0 --0.00,9.60,1.62,0.00,1.00,4.80,-4.80,0 --0.00,4.80,1.60,0.00,1.00,0.00,4.80,0 --0.00,0.00,1.58,0.00,1.00,-4.80,0.00,0 --0.00,-4.80,1.56,0.00,1.00,-9.60,4.80,0 --0.00,-9.60,1.54,0.00,1.00,-14.40,-4.80,0 --0.00,-14.40,1.52,0.00,1.00,-19.20,9.60,0 --0.00,-19.20,1.50,0.00,1.00,-24.00,-14.40,0 --0.00,-24.00,1.47,0.00,1.00,-28.80,19.20,0 --0.00,-28.80,1.45,0.00,1.00,-33.60,-19.20,0 --0.00,-33.60,1.43,0.00,1.00,-38.40,24.00,0 --0.00,-38.40,1.41,0.00,1.00,-43.20,-28.80,0 --0.00,-43.20,1.39,0.00,1.00,-48.00,28.80,0 --0.00,-48.00,1.37,0.00,1.00,-52.80,-33.60,0 --0.00,-52.80,1.35,0.00,1.00,-57.60,33.60,0 --0.00,-57.60,1.32,0.00,1.00,-62.40,-38.40,0 --0.00,-62.40,1.30,0.00,1.00,-67.20,38.40,0 --4.80,-67.20,1.28,0.00,1.00,-72.00,-43.20,0 --4.80,-72.00,1.26,0.00,1.00,-76.80,43.20,0 --4.80,-76.80,1.24,0.00,1.00,-81.60,-43.20,0 --9.60,-81.60,1.22,0.00,1.00,-86.40,43.20,0 --19.20,-86.40,1.20,0.00,1.00,-91.20,-48.00,0 --134.40,-86.40,1.17,0.00,1.00,-96.00,48.00,0 --168.00,-81.60,1.15,0.00,1.00,-100.80,-48.00,0 --172.80,-76.80,1.13,0.00,1.00,-105.60,43.20,0 --177.60,-72.00,1.11,0.00,1.00,-110.40,-43.20,0 --177.60,-67.20,1.09,0.00,1.00,-115.20,43.20,0 --177.60,-62.40,1.07,0.00,1.00,-120.00,-38.40,0 --177.60,-57.60,1.05,0.00,1.00,-124.80,38.40,0 --177.60,-52.80,1.03,0.00,1.00,-129.60,-38.40,0 --177.60,-48.00,1.00,0.00,1.00,-134.40,33.60,0 --177.60,-43.20,0.98,0.00,1.00,-139.20,-28.80,0 --177.60,-38.40,0.96,0.00,1.00,-144.00,28.80,0 --177.60,-33.60,0.94,0.00,1.00,-148.80,-24.00,0 --177.60,-28.80,0.92,0.00,1.00,-153.60,24.00,0 --177.60,-24.00,0.90,0.00,1.00,-158.40,-19.20,0 --177.60,-19.20,0.88,0.00,1.00,-163.20,14.40,0 --177.60,-14.40,0.85,0.00,1.00,-168.00,-14.40,0 --177.60,-9.60,0.83,0.00,1.00,-172.80,9.60,0 --177.60,-4.80,0.81,0.00,1.00,-177.60,-4.80,0 --177.60,-0.00,0.79,0.00,1.00,177.60,0.00,0 -177.60,0.00,0.77,0.00,1.00,172.80,0.00,0 -177.60,4.80,0.75,0.00,1.00,168.00,-4.80,0 -177.60,9.60,0.73,0.00,1.00,163.20,9.60,0 -177.60,14.40,0.70,0.00,1.00,158.40,-14.40,0 -177.60,19.20,0.68,0.00,1.00,153.60,14.40,0 -177.60,24.00,0.66,0.00,1.00,148.80,-19.20,0 -177.60,28.80,0.64,0.00,1.00,144.00,24.00,0 -177.60,33.60,0.62,0.00,1.00,139.20,-24.00,0 -177.60,38.40,0.60,0.00,1.00,134.40,28.80,0 -177.60,43.20,0.58,0.00,1.00,129.60,-28.80,0 -177.60,48.00,0.56,0.00,1.00,124.80,33.60,0 -177.60,52.80,0.53,0.00,1.00,120.00,-38.40,0 -177.60,57.60,0.51,0.00,1.00,115.20,38.40,0 -177.60,62.40,0.49,0.00,1.00,110.40,-38.40,0 -177.60,67.20,0.47,0.00,1.00,105.60,43.20,0 -177.60,72.00,0.45,0.00,1.00,100.80,-43.20,0 -172.80,76.80,0.43,0.00,1.00,96.00,43.20,0 -168.00,81.60,0.41,0.00,1.00,91.20,-48.00,0 -134.40,86.40,0.38,0.00,1.00,86.40,48.00,0 -19.20,86.40,0.36,0.00,1.00,81.60,-48.00,0 -9.60,81.60,0.34,0.00,1.00,76.80,43.20,0 -4.80,76.80,0.32,0.00,1.00,72.00,-43.20,0 -4.80,72.00,0.30,0.00,1.00,67.20,43.20,0 -4.80,67.20,0.28,0.00,1.00,62.40,-43.20,0 -0.00,62.40,0.26,0.00,1.00,57.60,38.40,0 -0.00,57.60,0.23,0.00,1.00,52.80,-38.40,0 -0.00,52.80,0.21,0.00,1.00,48.00,33.60,0 -0.00,48.00,0.19,0.00,1.00,43.20,-33.60,0 -0.00,43.20,0.17,0.00,1.00,38.40,28.80,0 -0.00,38.40,0.15,0.00,1.00,33.60,-28.80,0 -0.00,33.60,0.13,0.00,1.00,28.80,24.00,0 -0.00,28.80,0.11,0.00,1.00,24.00,-19.20,0 -0.00,24.00,0.09,0.00,1.00,19.20,19.20,0 -0.00,19.20,0.06,0.00,1.00,14.40,-14.40,0 -0.00,14.40,0.04,0.00,1.00,9.60,9.60,0 -0.00,9.60,0.02,0.00,1.00,4.80,-4.80,0 -0.00,4.80,0.00,0.00,1.00,0.00,4.80,0 diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC32c_ISM2.csv b/scripts/testv/stvOMASA_4ISM_2MASA2TC32c_ISM2.csv deleted file mode 100644 index f5c6b1f25e71755e1b34e7ce7f6a8913f3e1a85f..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_2MASA2TC32c_ISM2.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,4.80,16.00,0.00,1.00,0.00,0.00,0 -0.00,9.60,15.98,0.00,1.00,-177.60,4.80,0 -0.00,14.40,15.96,0.00,1.00,4.80,9.60,0 -0.00,19.20,15.94,0.00,1.00,-168.00,14.40,0 -0.00,24.00,15.91,0.00,1.00,14.40,19.20,0 -0.00,28.80,15.89,0.00,1.00,-163.20,24.00,0 -0.00,33.60,15.87,0.00,1.00,19.20,28.80,0 -0.00,38.40,15.85,0.00,1.00,-153.60,33.60,0 -0.00,43.20,15.83,0.00,1.00,28.80,38.40,0 -0.00,48.00,15.81,0.00,1.00,-148.80,43.20,0 -0.00,52.80,15.79,0.00,1.00,38.40,48.00,0 -0.00,57.60,15.77,0.00,1.00,-139.20,52.80,0 -0.00,62.40,15.74,0.00,1.00,48.00,57.60,0 -4.80,67.20,15.72,0.00,1.00,-124.80,62.40,0 -4.80,72.00,15.70,0.00,1.00,57.60,67.20,0 -4.80,76.80,15.68,0.00,1.00,-115.20,72.00,0 -9.60,81.60,15.66,0.00,1.00,72.00,76.80,0 -19.20,86.40,15.64,0.00,1.00,-100.80,81.60,0 -134.40,86.40,15.62,0.00,1.00,86.40,86.40,0 -168.00,81.60,15.59,0.00,1.00,-86.40,89.20,0 -172.80,76.80,15.57,0.00,1.00,100.80,86.40,0 -177.60,72.00,15.55,0.00,1.00,-76.80,81.60,0 -177.60,67.20,15.53,0.00,1.00,110.40,76.80,0 -177.60,62.40,15.51,0.00,1.00,-62.40,72.00,0 -177.60,57.60,15.49,0.00,1.00,124.80,67.20,0 -177.60,52.80,15.47,0.00,1.00,-52.80,62.40,0 -177.60,48.00,15.44,0.00,1.00,134.40,57.60,0 -177.60,43.20,15.42,0.00,1.00,-38.40,52.80,0 -177.60,38.40,15.40,0.00,1.00,144.00,48.00,0 -177.60,33.60,15.38,0.00,1.00,-33.60,43.20,0 -177.60,28.80,15.36,0.00,1.00,153.60,38.40,0 -177.60,24.00,15.34,0.00,1.00,-24.00,33.60,0 -177.60,19.20,15.32,0.00,1.00,158.40,28.80,0 -177.60,14.40,15.30,0.00,1.00,-14.40,24.00,0 -177.60,9.60,15.27,0.00,1.00,168.00,19.20,0 -177.60,4.80,15.25,0.00,1.00,-9.60,14.40,0 -177.60,0.00,15.23,0.00,1.00,172.80,9.60,0 --177.60,-0.00,15.21,0.00,1.00,-0.00,4.80,0 --177.60,-4.80,15.19,0.00,1.00,-177.60,-0.00,0 --177.60,-9.60,15.17,0.00,1.00,4.80,-4.80,0 --177.60,-14.40,15.15,0.00,1.00,-172.80,-9.60,0 --177.60,-19.20,15.12,0.00,1.00,14.40,-14.40,0 --177.60,-24.00,15.10,0.00,1.00,-163.20,-19.20,0 --177.60,-28.80,15.08,0.00,1.00,19.20,-24.00,0 --177.60,-33.60,15.06,0.00,1.00,-158.40,-28.80,0 --177.60,-38.40,15.04,0.00,1.00,28.80,-33.60,0 --177.60,-43.20,15.02,0.00,1.00,-148.80,-38.40,0 --177.60,-48.00,15.00,0.00,1.00,33.60,-48.00,0 --177.60,-52.80,14.97,0.00,1.00,-139.20,-48.00,0 --177.60,-57.60,14.95,0.00,1.00,43.20,-52.80,0 --177.60,-62.40,14.93,0.00,1.00,-129.60,-57.60,0 --177.60,-67.20,14.91,0.00,1.00,57.60,-62.40,0 --177.60,-72.00,14.89,0.00,1.00,-120.00,-67.20,0 --172.80,-76.80,14.87,0.00,1.00,67.20,-76.80,0 --168.00,-81.60,14.85,0.00,1.00,-105.60,-76.80,0 --134.40,-86.40,14.83,0.00,1.00,81.60,-86.40,0 --19.20,-86.40,14.80,0.00,1.00,-91.20,-89.20,0 --9.60,-81.60,14.78,0.00,1.00,96.00,-86.40,0 --4.80,-76.80,14.76,0.00,1.00,-76.80,-81.60,0 --4.80,-72.00,14.74,0.00,1.00,110.40,-76.80,0 --4.80,-67.20,14.72,0.00,1.00,-67.20,-72.00,0 --0.00,-62.40,14.70,0.00,1.00,120.00,-67.20,0 --0.00,-57.60,14.68,0.00,1.00,-52.80,-62.40,0 --0.00,-52.80,14.65,0.00,1.00,129.60,-57.60,0 --0.00,-48.00,14.63,0.00,1.00,-43.20,-52.80,0 --0.00,-43.20,14.61,0.00,1.00,144.00,-48.00,0 --0.00,-38.40,14.59,0.00,1.00,-33.60,-43.20,0 --0.00,-33.60,14.57,0.00,1.00,148.80,-38.40,0 --0.00,-28.80,14.55,0.00,1.00,-24.00,-33.60,0 --0.00,-24.00,14.53,0.00,1.00,158.40,-28.80,0 --0.00,-19.20,14.50,0.00,1.00,-19.20,-24.00,0 --0.00,-14.40,14.48,0.00,1.00,168.00,-19.20,0 --0.00,-9.60,14.46,0.00,1.00,-9.60,-14.40,0 --0.00,-4.80,14.44,0.00,1.00,172.80,-9.60,0 --0.00,0.00,14.42,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,14.40,0.00,1.00,0.00,0.00,0 --0.00,9.60,14.38,0.00,1.00,-177.60,4.80,0 --0.00,14.40,14.36,0.00,1.00,9.60,9.60,0 --0.00,19.20,14.33,0.00,1.00,-168.00,14.40,0 --0.00,24.00,14.31,0.00,1.00,14.40,19.20,0 --0.00,28.80,14.29,0.00,1.00,-163.20,24.00,0 --0.00,33.60,14.27,0.00,1.00,24.00,28.80,0 --4.80,38.40,14.25,0.00,1.00,-153.60,33.60,0 --4.80,43.20,14.23,0.00,1.00,28.80,38.40,0 --4.80,48.00,14.21,0.00,1.00,-144.00,43.20,0 --4.80,52.80,14.18,0.00,1.00,38.40,48.00,0 --4.80,57.60,14.16,0.00,1.00,-134.40,52.80,0 --4.80,62.40,14.14,0.00,1.00,48.00,57.60,0 --9.60,67.20,14.12,0.00,1.00,-124.80,62.40,0 --9.60,72.00,14.10,0.00,1.00,62.40,67.20,0 --14.40,76.80,14.08,0.00,1.00,-115.20,72.00,0 --24.00,81.60,14.06,0.00,1.00,72.00,76.80,0 --43.20,86.40,14.03,0.00,1.00,-100.80,81.60,0 --110.40,86.40,14.01,0.00,1.00,86.40,86.40,0 --148.80,81.60,13.99,0.00,1.00,-86.40,86.40,0 --163.20,76.80,13.97,0.00,1.00,96.00,81.60,0 --168.00,72.00,13.95,0.00,1.00,-76.80,76.80,0 --172.80,67.20,13.93,0.00,1.00,110.40,72.00,0 --172.80,62.40,13.91,0.00,1.00,-62.40,67.20,0 --172.80,57.60,13.89,0.00,1.00,120.00,62.40,0 --172.80,52.80,13.86,0.00,1.00,-52.80,57.60,0 --177.60,48.00,13.84,0.00,1.00,134.40,52.80,0 --177.60,43.20,13.82,0.00,1.00,-43.20,48.00,0 --177.60,38.40,13.80,0.00,1.00,144.00,43.20,0 --177.60,33.60,13.78,0.00,1.00,-33.60,38.40,0 --177.60,28.80,13.76,0.00,1.00,148.80,33.60,0 --177.60,24.00,13.74,0.00,1.00,-24.00,28.80,0 --177.60,19.20,13.71,0.00,1.00,158.40,24.00,0 --177.60,14.40,13.69,0.00,1.00,-19.20,19.20,0 --177.60,9.60,13.67,0.00,1.00,168.00,14.40,0 --177.60,4.80,13.65,0.00,1.00,-9.60,9.60,0 --177.60,0.00,13.63,0.00,1.00,172.80,4.80,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,13.59,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,13.56,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,13.54,0.00,1.00,-172.80,-9.60,0 -177.60,-19.20,13.52,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,13.50,0.00,1.00,-163.20,-19.20,0 -177.60,-28.80,13.48,0.00,1.00,19.20,-24.00,0 -177.60,-33.60,13.46,0.00,1.00,-153.60,-28.80,0 -177.60,-38.40,13.44,0.00,1.00,28.80,-33.60,0 -177.60,-43.20,13.42,0.00,1.00,-148.80,-38.40,0 -177.60,-48.00,13.39,0.00,1.00,38.40,-43.20,0 -172.80,-52.80,13.37,0.00,1.00,-139.20,-48.00,0 -172.80,-57.60,13.35,0.00,1.00,48.00,-52.80,0 -172.80,-62.40,13.33,0.00,1.00,-124.80,-57.60,0 -172.80,-67.20,13.31,0.00,1.00,57.60,-62.40,0 -168.00,-72.00,13.29,0.00,1.00,-115.20,-67.20,0 -163.20,-76.80,13.27,0.00,1.00,72.00,-72.00,0 -148.80,-81.60,13.24,0.00,1.00,-105.60,-76.80,0 -110.40,-86.40,13.22,0.00,1.00,81.60,-81.60,0 -43.20,-86.40,13.20,0.00,1.00,-91.20,-86.40,0 -24.00,-81.60,13.18,0.00,1.00,96.00,-86.40,0 -14.40,-76.80,13.16,0.00,1.00,-76.80,-81.60,0 -9.60,-72.00,13.14,0.00,1.00,105.60,-76.80,0 -9.60,-67.20,13.12,0.00,1.00,-67.20,-72.00,0 -4.80,-62.40,13.09,0.00,1.00,120.00,-67.20,0 -4.80,-57.60,13.07,0.00,1.00,-57.60,-62.40,0 -4.80,-52.80,13.05,0.00,1.00,129.60,-57.60,0 -4.80,-48.00,13.03,0.00,1.00,-43.20,-52.80,0 -4.80,-43.20,13.01,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,12.99,0.00,1.00,-33.60,-43.20,0 -0.00,-33.60,12.97,0.00,1.00,148.80,-38.40,0 -0.00,-28.80,12.95,0.00,1.00,-28.80,-33.60,0 -0.00,-24.00,12.92,0.00,1.00,158.40,-28.80,0 -0.00,-19.20,12.90,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,12.88,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,12.86,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,12.84,0.00,1.00,172.80,-9.60,0 -0.00,0.00,12.82,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,12.80,0.00,1.00,0.00,0.00,0 --0.00,9.60,12.77,0.00,1.00,-177.60,4.80,0 --0.00,14.40,12.75,0.00,1.00,9.60,9.60,0 --4.80,19.20,12.73,0.00,1.00,-168.00,14.40,0 --4.80,24.00,12.71,0.00,1.00,14.40,19.20,0 --4.80,28.80,12.69,0.00,1.00,-158.40,24.00,0 --4.80,33.60,12.67,0.00,1.00,24.00,28.80,0 --4.80,38.40,12.65,0.00,1.00,-153.60,33.60,0 --9.60,43.20,12.62,0.00,1.00,33.60,38.40,0 --9.60,48.00,12.60,0.00,1.00,-144.00,43.20,0 --9.60,52.80,12.58,0.00,1.00,43.20,48.00,0 --14.40,57.60,12.56,0.00,1.00,-134.40,52.80,0 --14.40,62.40,12.54,0.00,1.00,52.80,57.60,0 --19.20,67.20,12.52,0.00,1.00,-124.80,62.40,0 --24.00,72.00,12.50,0.00,1.00,62.40,67.20,0 --33.60,72.00,12.48,0.00,1.00,-110.40,72.00,0 --43.20,76.80,12.45,0.00,1.00,72.00,72.00,0 --67.20,81.60,12.43,0.00,1.00,-100.80,76.80,0 --96.00,81.60,12.41,0.00,1.00,86.40,81.60,0 --124.80,81.60,12.39,0.00,1.00,-86.40,81.60,0 --144.00,76.80,12.37,0.00,1.00,96.00,76.80,0 --153.60,72.00,12.35,0.00,1.00,-76.80,76.80,0 --158.40,67.20,12.33,0.00,1.00,110.40,72.00,0 --163.20,62.40,12.30,0.00,1.00,-67.20,67.20,0 --168.00,57.60,12.28,0.00,1.00,120.00,62.40,0 --168.00,52.80,12.26,0.00,1.00,-52.80,57.60,0 --168.00,48.00,12.24,0.00,1.00,129.60,52.80,0 --172.80,43.20,12.22,0.00,1.00,-43.20,48.00,0 --172.80,38.40,12.20,0.00,1.00,139.20,43.20,0 --172.80,33.60,12.18,0.00,1.00,-33.60,38.40,0 --172.80,28.80,12.15,0.00,1.00,148.80,33.60,0 --177.60,24.00,12.13,0.00,1.00,-24.00,28.80,0 --177.60,19.20,12.11,0.00,1.00,158.40,24.00,0 --177.60,14.40,12.09,0.00,1.00,-19.20,19.20,0 --177.60,9.60,12.07,0.00,1.00,168.00,14.40,0 --177.60,4.80,12.05,0.00,1.00,-9.60,9.60,0 --177.60,0.00,12.03,0.00,1.00,172.80,4.80,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,11.98,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,11.96,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,11.94,0.00,1.00,-168.00,-9.60,0 -177.60,-19.20,11.92,0.00,1.00,14.40,-14.40,0 -177.60,-24.00,11.90,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,11.88,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,11.86,0.00,1.00,-153.60,-28.80,0 -172.80,-38.40,11.83,0.00,1.00,28.80,-33.60,0 -172.80,-43.20,11.81,0.00,1.00,-144.00,-38.40,0 -168.00,-48.00,11.79,0.00,1.00,38.40,-43.20,0 -168.00,-52.80,11.77,0.00,1.00,-134.40,-48.00,0 -168.00,-57.60,11.75,0.00,1.00,48.00,-52.80,0 -163.20,-62.40,11.73,0.00,1.00,-124.80,-57.60,0 -158.40,-67.20,11.71,0.00,1.00,62.40,-62.40,0 -153.60,-72.00,11.68,0.00,1.00,-115.20,-67.20,0 -144.00,-76.80,11.66,0.00,1.00,72.00,-72.00,0 -124.80,-81.60,11.64,0.00,1.00,-100.80,-76.80,0 -96.00,-81.60,11.62,0.00,1.00,81.60,-76.80,0 -67.20,-81.60,11.60,0.00,1.00,-91.20,-81.60,0 -43.20,-76.80,11.58,0.00,1.00,96.00,-81.60,0 -33.60,-72.00,11.56,0.00,1.00,-81.60,-76.80,0 -24.00,-72.00,11.54,0.00,1.00,105.60,-72.00,0 -19.20,-67.20,11.51,0.00,1.00,-67.20,-72.00,0 -14.40,-62.40,11.49,0.00,1.00,115.20,-67.20,0 -14.40,-57.60,11.47,0.00,1.00,-57.60,-62.40,0 -9.60,-52.80,11.45,0.00,1.00,129.60,-57.60,0 -9.60,-48.00,11.43,0.00,1.00,-48.00,-52.80,0 -9.60,-43.20,11.41,0.00,1.00,139.20,-48.00,0 -4.80,-38.40,11.39,0.00,1.00,-38.40,-43.20,0 -4.80,-33.60,11.36,0.00,1.00,148.80,-38.40,0 -4.80,-28.80,11.34,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,11.32,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,11.30,0.00,1.00,-19.20,-24.00,0 -0.00,-14.40,11.28,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,11.26,0.00,1.00,-9.60,-14.40,0 -0.00,-4.80,11.24,0.00,1.00,172.80,-9.60,0 -0.00,0.00,11.21,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,11.19,0.00,1.00,0.00,0.00,0 --0.00,9.60,11.17,0.00,1.00,-177.60,4.80,0 --4.80,14.40,11.15,0.00,1.00,9.60,9.60,0 --4.80,19.20,11.13,0.00,1.00,-168.00,14.40,0 --4.80,24.00,11.11,0.00,1.00,14.40,19.20,0 --4.80,28.80,11.09,0.00,1.00,-158.40,24.00,0 --9.60,33.60,11.07,0.00,1.00,24.00,28.80,0 --9.60,38.40,11.04,0.00,1.00,-148.80,33.60,0 --14.40,43.20,11.02,0.00,1.00,33.60,38.40,0 --14.40,48.00,11.00,0.00,1.00,-139.20,43.20,0 --14.40,52.80,10.98,0.00,1.00,43.20,48.00,0 --19.20,57.60,10.96,0.00,1.00,-129.60,52.80,0 --24.00,57.60,10.94,0.00,1.00,52.80,52.80,0 --28.80,62.40,10.92,0.00,1.00,-120.00,57.60,0 --33.60,67.20,10.89,0.00,1.00,62.40,62.40,0 --43.20,72.00,10.87,0.00,1.00,-110.40,67.20,0 --57.60,72.00,10.85,0.00,1.00,76.80,72.00,0 --76.80,76.80,10.83,0.00,1.00,-100.80,72.00,0 --96.00,76.80,10.81,0.00,1.00,86.40,76.80,0 --115.20,76.80,10.79,0.00,1.00,-86.40,76.80,0 --129.60,72.00,10.77,0.00,1.00,96.00,76.80,0 --139.20,72.00,10.74,0.00,1.00,-76.80,72.00,0 --148.80,67.20,10.72,0.00,1.00,105.60,67.20,0 --153.60,62.40,10.70,0.00,1.00,-67.20,67.20,0 --158.40,57.60,10.68,0.00,1.00,120.00,62.40,0 --163.20,52.80,10.66,0.00,1.00,-57.60,57.60,0 --163.20,48.00,10.64,0.00,1.00,129.60,52.80,0 --168.00,43.20,10.62,0.00,1.00,-48.00,48.00,0 --168.00,38.40,10.60,0.00,1.00,139.20,43.20,0 --172.80,33.60,10.57,0.00,1.00,-38.40,38.40,0 --172.80,28.80,10.55,0.00,1.00,148.80,33.60,0 --172.80,24.00,10.53,0.00,1.00,-28.80,28.80,0 --172.80,19.20,10.51,0.00,1.00,158.40,24.00,0 --177.60,14.40,10.49,0.00,1.00,-19.20,19.20,0 --177.60,9.60,10.47,0.00,1.00,163.20,14.40,0 --177.60,4.80,10.45,0.00,1.00,-9.60,9.60,0 --177.60,0.00,10.42,0.00,1.00,172.80,4.80,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,10.38,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,10.36,0.00,1.00,4.80,-4.80,0 -177.60,-14.40,10.34,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,10.32,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,10.30,0.00,1.00,-163.20,-19.20,0 -172.80,-28.80,10.28,0.00,1.00,24.00,-24.00,0 -172.80,-33.60,10.25,0.00,1.00,-153.60,-28.80,0 -168.00,-38.40,10.23,0.00,1.00,33.60,-33.60,0 -168.00,-43.20,10.21,0.00,1.00,-144.00,-38.40,0 -163.20,-48.00,10.19,0.00,1.00,43.20,-43.20,0 -163.20,-52.80,10.17,0.00,1.00,-134.40,-48.00,0 -158.40,-57.60,10.15,0.00,1.00,52.80,-52.80,0 -153.60,-62.40,10.13,0.00,1.00,-124.80,-57.60,0 -148.80,-67.20,10.10,0.00,1.00,62.40,-62.40,0 -139.20,-72.00,10.08,0.00,1.00,-115.20,-67.20,0 -129.60,-72.00,10.06,0.00,1.00,72.00,-67.20,0 -115.20,-76.80,10.04,0.00,1.00,-100.80,-72.00,0 -96.00,-76.80,10.02,0.00,1.00,81.60,-76.80,0 -76.80,-76.80,10.00,0.00,1.00,-91.20,-76.80,0 -57.60,-72.00,9.98,0.00,1.00,96.00,-76.80,0 -43.20,-72.00,9.95,0.00,1.00,-81.60,-72.00,0 -33.60,-67.20,9.93,0.00,1.00,105.60,-72.00,0 -28.80,-62.40,9.91,0.00,1.00,-67.20,-67.20,0 -24.00,-57.60,9.89,0.00,1.00,115.20,-62.40,0 -19.20,-57.60,9.87,0.00,1.00,-57.60,-57.60,0 -14.40,-52.80,9.85,0.00,1.00,124.80,-52.80,0 -14.40,-48.00,9.83,0.00,1.00,-48.00,-52.80,0 -14.40,-43.20,9.81,0.00,1.00,134.40,-48.00,0 -9.60,-38.40,9.78,0.00,1.00,-38.40,-43.20,0 -9.60,-33.60,9.76,0.00,1.00,144.00,-38.40,0 -4.80,-28.80,9.74,0.00,1.00,-28.80,-33.60,0 -4.80,-24.00,9.72,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,9.70,0.00,1.00,-19.20,-24.00,0 -4.80,-14.40,9.68,0.00,1.00,163.20,-19.20,0 -0.00,-9.60,9.66,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,9.63,0.00,1.00,172.80,-9.60,0 -0.00,0.00,9.61,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,9.59,0.00,1.00,0.00,0.00,0 --4.80,9.60,9.57,0.00,1.00,-177.60,4.80,0 --4.80,14.40,9.55,0.00,1.00,9.60,9.60,0 --4.80,19.20,9.53,0.00,1.00,-168.00,14.40,0 --9.60,24.00,9.51,0.00,1.00,19.20,19.20,0 --9.60,28.80,9.48,0.00,1.00,-158.40,24.00,0 --9.60,33.60,9.46,0.00,1.00,24.00,28.80,0 --14.40,38.40,9.44,0.00,1.00,-148.80,33.60,0 --14.40,38.40,9.42,0.00,1.00,33.60,33.60,0 --19.20,43.20,9.40,0.00,1.00,-139.20,38.40,0 --24.00,48.00,9.38,0.00,1.00,43.20,43.20,0 --24.00,52.80,9.36,0.00,1.00,-129.60,48.00,0 --28.80,57.60,9.34,0.00,1.00,52.80,52.80,0 --38.40,62.40,9.31,0.00,1.00,-120.00,57.60,0 --43.20,62.40,9.29,0.00,1.00,67.20,62.40,0 --52.80,67.20,9.27,0.00,1.00,-110.40,62.40,0 --62.40,72.00,9.25,0.00,1.00,76.80,67.20,0 --76.80,72.00,9.23,0.00,1.00,-100.80,67.20,0 --96.00,72.00,9.21,0.00,1.00,86.40,72.00,0 --110.40,72.00,9.19,0.00,1.00,-86.40,72.00,0 --120.00,67.20,9.16,0.00,1.00,96.00,72.00,0 --134.40,67.20,9.14,0.00,1.00,-76.80,67.20,0 --139.20,62.40,9.12,0.00,1.00,105.60,67.20,0 --148.80,57.60,9.10,0.00,1.00,-67.20,62.40,0 --153.60,57.60,9.08,0.00,1.00,115.20,57.60,0 --158.40,52.80,9.06,0.00,1.00,-57.60,52.80,0 --158.40,48.00,9.04,0.00,1.00,129.60,52.80,0 --163.20,43.20,9.01,0.00,1.00,-48.00,48.00,0 --163.20,38.40,8.99,0.00,1.00,139.20,43.20,0 --168.00,33.60,8.97,0.00,1.00,-38.40,38.40,0 --168.00,28.80,8.95,0.00,1.00,148.80,33.60,0 --172.80,24.00,8.93,0.00,1.00,-28.80,28.80,0 --172.80,19.20,8.91,0.00,1.00,153.60,24.00,0 --172.80,14.40,8.89,0.00,1.00,-19.20,19.20,0 --177.60,9.60,8.87,0.00,1.00,163.20,14.40,0 --177.60,4.80,8.84,0.00,1.00,-9.60,9.60,0 --177.60,0.00,8.82,0.00,1.00,172.80,4.80,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,8.78,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,8.76,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,8.74,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,8.72,0.00,1.00,14.40,-14.40,0 -172.80,-24.00,8.69,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,8.67,0.00,1.00,24.00,-24.00,0 -168.00,-33.60,8.65,0.00,1.00,-153.60,-28.80,0 -163.20,-38.40,8.63,0.00,1.00,33.60,-33.60,0 -163.20,-43.20,8.61,0.00,1.00,-144.00,-38.40,0 -158.40,-48.00,8.59,0.00,1.00,43.20,-43.20,0 -158.40,-52.80,8.57,0.00,1.00,-134.40,-48.00,0 -153.60,-57.60,8.54,0.00,1.00,52.80,-52.80,0 -148.80,-57.60,8.52,0.00,1.00,-124.80,-52.80,0 -139.20,-62.40,8.50,0.00,1.00,62.40,-57.60,0 -134.40,-67.20,8.48,0.00,1.00,-110.40,-62.40,0 -120.00,-67.20,8.46,0.00,1.00,72.00,-67.20,0 -110.40,-72.00,8.44,0.00,1.00,-100.80,-67.20,0 -96.00,-72.00,8.42,0.00,1.00,81.60,-72.00,0 -76.80,-72.00,8.40,0.00,1.00,-91.20,-72.00,0 -62.40,-72.00,8.37,0.00,1.00,96.00,-72.00,0 -52.80,-67.20,8.35,0.00,1.00,-81.60,-67.20,0 -43.20,-62.40,8.33,0.00,1.00,105.60,-67.20,0 -38.40,-62.40,8.31,0.00,1.00,-72.00,-62.40,0 -28.80,-57.60,8.29,0.00,1.00,115.20,-62.40,0 -24.00,-52.80,8.27,0.00,1.00,-57.60,-57.60,0 -24.00,-48.00,8.25,0.00,1.00,124.80,-52.80,0 -19.20,-43.20,8.22,0.00,1.00,-48.00,-48.00,0 -14.40,-38.40,8.20,0.00,1.00,134.40,-43.20,0 -14.40,-38.40,8.18,0.00,1.00,-38.40,-38.40,0 -9.60,-33.60,8.16,0.00,1.00,144.00,-33.60,0 -9.60,-28.80,8.14,0.00,1.00,-28.80,-33.60,0 -9.60,-24.00,8.12,0.00,1.00,153.60,-28.80,0 -4.80,-19.20,8.10,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,8.07,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,8.05,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,8.03,0.00,1.00,172.80,-9.60,0 -0.00,0.00,8.01,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,7.99,0.00,1.00,0.00,0.00,0 --4.80,9.60,7.97,0.00,1.00,-177.60,4.80,0 --4.80,14.40,7.95,0.00,1.00,9.60,9.60,0 --9.60,19.20,7.93,0.00,1.00,-168.00,14.40,0 --9.60,24.00,7.90,0.00,1.00,19.20,19.20,0 --14.40,24.00,7.88,0.00,1.00,-158.40,24.00,0 --14.40,28.80,7.86,0.00,1.00,28.80,24.00,0 --19.20,33.60,7.84,0.00,1.00,-148.80,28.80,0 --19.20,38.40,7.82,0.00,1.00,38.40,33.60,0 --24.00,43.20,7.80,0.00,1.00,-139.20,38.40,0 --28.80,48.00,7.78,0.00,1.00,48.00,43.20,0 --33.60,52.80,7.75,0.00,1.00,-129.60,48.00,0 --38.40,52.80,7.73,0.00,1.00,57.60,52.80,0 --43.20,57.60,7.71,0.00,1.00,-120.00,52.80,0 --48.00,62.40,7.69,0.00,1.00,67.20,57.60,0 --57.60,62.40,7.67,0.00,1.00,-110.40,62.40,0 --67.20,67.20,7.65,0.00,1.00,76.80,62.40,0 --81.60,67.20,7.63,0.00,1.00,-100.80,62.40,0 --91.20,67.20,7.60,0.00,1.00,86.40,67.20,0 --105.60,67.20,7.58,0.00,1.00,-86.40,67.20,0 --115.20,67.20,7.56,0.00,1.00,96.00,67.20,0 --124.80,62.40,7.54,0.00,1.00,-76.80,62.40,0 --134.40,57.60,7.52,0.00,1.00,105.60,62.40,0 --139.20,57.60,7.50,0.00,1.00,-67.20,57.60,0 --144.00,52.80,7.48,0.00,1.00,115.20,57.60,0 --148.80,48.00,7.46,0.00,1.00,-57.60,52.80,0 --153.60,43.20,7.43,0.00,1.00,124.80,48.00,0 --158.40,43.20,7.41,0.00,1.00,-48.00,43.20,0 --163.20,38.40,7.39,0.00,1.00,134.40,38.40,0 --163.20,33.60,7.37,0.00,1.00,-38.40,38.40,0 --168.00,28.80,7.35,0.00,1.00,144.00,33.60,0 --168.00,24.00,7.33,0.00,1.00,-28.80,28.80,0 --172.80,19.20,7.31,0.00,1.00,153.60,24.00,0 --172.80,14.40,7.28,0.00,1.00,-19.20,19.20,0 --177.60,9.60,7.26,0.00,1.00,163.20,14.40,0 --177.60,4.80,7.24,0.00,1.00,-9.60,9.60,0 --177.60,0.00,7.22,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,7.18,0.00,1.00,-177.60,-0.00,0 -177.60,-9.60,7.16,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,7.13,0.00,1.00,-168.00,-9.60,0 -172.80,-19.20,7.11,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,7.09,0.00,1.00,-158.40,-19.20,0 -168.00,-28.80,7.07,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,7.05,0.00,1.00,-148.80,-28.80,0 -163.20,-38.40,7.03,0.00,1.00,33.60,-33.60,0 -158.40,-43.20,7.01,0.00,1.00,-139.20,-38.40,0 -153.60,-43.20,6.99,0.00,1.00,43.20,-38.40,0 -148.80,-48.00,6.96,0.00,1.00,-129.60,-43.20,0 -144.00,-52.80,6.94,0.00,1.00,52.80,-48.00,0 -139.20,-57.60,6.92,0.00,1.00,-120.00,-52.80,0 -134.40,-57.60,6.90,0.00,1.00,62.40,-57.60,0 -124.80,-62.40,6.88,0.00,1.00,-110.40,-57.60,0 -115.20,-67.20,6.86,0.00,1.00,72.00,-62.40,0 -105.60,-67.20,6.84,0.00,1.00,-100.80,-62.40,0 -91.20,-67.20,6.81,0.00,1.00,81.60,-67.20,0 -81.60,-67.20,6.79,0.00,1.00,-91.20,-67.20,0 -67.20,-67.20,6.77,0.00,1.00,96.00,-67.20,0 -57.60,-62.40,6.75,0.00,1.00,-81.60,-62.40,0 -48.00,-62.40,6.73,0.00,1.00,105.60,-62.40,0 -43.20,-57.60,6.71,0.00,1.00,-72.00,-62.40,0 -38.40,-52.80,6.69,0.00,1.00,115.20,-57.60,0 -33.60,-52.80,6.66,0.00,1.00,-62.40,-52.80,0 -28.80,-48.00,6.64,0.00,1.00,124.80,-52.80,0 -24.00,-43.20,6.62,0.00,1.00,-52.80,-48.00,0 -19.20,-38.40,6.60,0.00,1.00,134.40,-43.20,0 -19.20,-33.60,6.58,0.00,1.00,-43.20,-38.40,0 -14.40,-28.80,6.56,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,6.54,0.00,1.00,-33.60,-28.80,0 -9.60,-24.00,6.52,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,6.49,0.00,1.00,-24.00,-24.00,0 -4.80,-14.40,6.47,0.00,1.00,163.20,-19.20,0 -4.80,-9.60,6.45,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,6.43,0.00,1.00,172.80,-9.60,0 -0.00,0.00,6.41,0.00,1.00,-4.80,-4.80,0 --0.00,4.80,6.39,0.00,1.00,0.00,0.00,0 --4.80,9.60,6.37,0.00,1.00,-177.60,4.80,0 --4.80,14.40,6.34,0.00,1.00,9.60,9.60,0 --9.60,19.20,6.32,0.00,1.00,-168.00,14.40,0 --9.60,19.20,6.30,0.00,1.00,19.20,14.40,0 --14.40,24.00,6.28,0.00,1.00,-158.40,19.20,0 --19.20,28.80,6.26,0.00,1.00,28.80,24.00,0 --19.20,33.60,6.24,0.00,1.00,-148.80,28.80,0 --24.00,38.40,6.22,0.00,1.00,38.40,33.60,0 --28.80,43.20,6.19,0.00,1.00,-139.20,38.40,0 --33.60,43.20,6.17,0.00,1.00,48.00,38.40,0 --38.40,48.00,6.15,0.00,1.00,-129.60,43.20,0 --43.20,52.80,6.13,0.00,1.00,57.60,48.00,0 --48.00,52.80,6.11,0.00,1.00,-120.00,52.80,0 --52.80,57.60,6.09,0.00,1.00,67.20,52.80,0 --62.40,57.60,6.07,0.00,1.00,-110.40,57.60,0 --72.00,62.40,6.05,0.00,1.00,76.80,57.60,0 --81.60,62.40,6.02,0.00,1.00,-100.80,62.40,0 --91.20,62.40,6.00,0.00,1.00,86.40,62.40,0 --100.80,62.40,5.98,0.00,1.00,-86.40,62.40,0 --110.40,62.40,5.96,0.00,1.00,96.00,62.40,0 --120.00,57.60,5.94,0.00,1.00,-76.80,57.60,0 --129.60,57.60,5.92,0.00,1.00,105.60,57.60,0 --134.40,52.80,5.90,0.00,1.00,-67.20,57.60,0 --139.20,48.00,5.87,0.00,1.00,115.20,52.80,0 --144.00,48.00,5.85,0.00,1.00,-57.60,48.00,0 --148.80,43.20,5.83,0.00,1.00,124.80,48.00,0 --153.60,38.40,5.81,0.00,1.00,-48.00,43.20,0 --158.40,33.60,5.79,0.00,1.00,134.40,38.40,0 --163.20,33.60,5.77,0.00,1.00,-38.40,33.60,0 --163.20,28.80,5.75,0.00,1.00,144.00,28.80,0 --168.00,24.00,5.72,0.00,1.00,-28.80,28.80,0 --168.00,19.20,5.70,0.00,1.00,153.60,24.00,0 --172.80,14.40,5.68,0.00,1.00,-19.20,19.20,0 --172.80,9.60,5.66,0.00,1.00,163.20,14.40,0 --177.60,4.80,5.64,0.00,1.00,-9.60,9.60,0 --177.60,0.00,5.62,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,5.58,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,5.55,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,5.53,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,5.51,0.00,1.00,14.40,-14.40,0 -168.00,-24.00,5.49,0.00,1.00,-158.40,-19.20,0 -163.20,-28.80,5.47,0.00,1.00,24.00,-24.00,0 -163.20,-33.60,5.45,0.00,1.00,-148.80,-28.80,0 -158.40,-33.60,5.43,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,5.40,0.00,1.00,-139.20,-33.60,0 -148.80,-43.20,5.38,0.00,1.00,43.20,-38.40,0 -144.00,-48.00,5.36,0.00,1.00,-129.60,-43.20,0 -139.20,-48.00,5.34,0.00,1.00,52.80,-48.00,0 -134.40,-52.80,5.32,0.00,1.00,-120.00,-48.00,0 -129.60,-57.60,5.30,0.00,1.00,62.40,-52.80,0 -120.00,-57.60,5.28,0.00,1.00,-110.40,-57.60,0 -110.40,-62.40,5.26,0.00,1.00,72.00,-57.60,0 -100.80,-62.40,5.23,0.00,1.00,-100.80,-57.60,0 -91.20,-62.40,5.21,0.00,1.00,81.60,-62.40,0 -81.60,-62.40,5.19,0.00,1.00,-91.20,-62.40,0 -72.00,-62.40,5.17,0.00,1.00,96.00,-62.40,0 -62.40,-57.60,5.15,0.00,1.00,-81.60,-62.40,0 -52.80,-57.60,5.13,0.00,1.00,105.60,-57.60,0 -48.00,-52.80,5.11,0.00,1.00,-72.00,-57.60,0 -43.20,-52.80,5.08,0.00,1.00,115.20,-52.80,0 -38.40,-48.00,5.06,0.00,1.00,-62.40,-52.80,0 -33.60,-43.20,5.04,0.00,1.00,124.80,-48.00,0 -28.80,-43.20,5.02,0.00,1.00,-52.80,-43.20,0 -24.00,-38.40,5.00,0.00,1.00,134.40,-38.40,0 -19.20,-33.60,4.98,0.00,1.00,-43.20,-38.40,0 -19.20,-28.80,4.96,0.00,1.00,144.00,-33.60,0 -14.40,-24.00,4.93,0.00,1.00,-33.60,-28.80,0 -9.60,-19.20,4.91,0.00,1.00,153.60,-24.00,0 -9.60,-19.20,4.89,0.00,1.00,-24.00,-19.20,0 -4.80,-14.40,4.87,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,4.85,0.00,1.00,-14.40,-14.40,0 -0.00,-4.80,4.83,0.00,1.00,172.80,-9.60,0 -0.00,0.00,4.81,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,4.79,0.00,1.00,0.00,0.00,0 --4.80,9.60,4.76,0.00,1.00,-177.60,4.80,0 --9.60,14.40,4.74,0.00,1.00,9.60,9.60,0 --9.60,14.40,4.72,0.00,1.00,-168.00,9.60,0 --14.40,19.20,4.70,0.00,1.00,19.20,14.40,0 --14.40,24.00,4.68,0.00,1.00,-158.40,19.20,0 --19.20,28.80,4.66,0.00,1.00,28.80,24.00,0 --24.00,33.60,4.64,0.00,1.00,-148.80,28.80,0 --28.80,33.60,4.61,0.00,1.00,38.40,28.80,0 --28.80,38.40,4.59,0.00,1.00,-139.20,33.60,0 --33.60,43.20,4.57,0.00,1.00,48.00,38.40,0 --38.40,43.20,4.55,0.00,1.00,-129.60,43.20,0 --48.00,48.00,4.53,0.00,1.00,57.60,43.20,0 --52.80,52.80,4.51,0.00,1.00,-120.00,48.00,0 --57.60,52.80,4.49,0.00,1.00,67.20,48.00,0 --67.20,57.60,4.46,0.00,1.00,-110.40,52.80,0 --76.80,57.60,4.44,0.00,1.00,76.80,52.80,0 --81.60,57.60,4.42,0.00,1.00,-100.80,57.60,0 --91.20,57.60,4.40,0.00,1.00,86.40,57.60,0 --100.80,57.60,4.38,0.00,1.00,-86.40,57.60,0 --110.40,57.60,4.36,0.00,1.00,96.00,57.60,0 --115.20,52.80,4.34,0.00,1.00,-76.80,52.80,0 --124.80,52.80,4.32,0.00,1.00,105.60,52.80,0 --129.60,48.00,4.29,0.00,1.00,-67.20,52.80,0 --139.20,48.00,4.27,0.00,1.00,115.20,48.00,0 --144.00,43.20,4.25,0.00,1.00,-57.60,48.00,0 --148.80,38.40,4.23,0.00,1.00,124.80,43.20,0 --153.60,38.40,4.21,0.00,1.00,-48.00,38.40,0 --153.60,33.60,4.19,0.00,1.00,134.40,38.40,0 --158.40,28.80,4.17,0.00,1.00,-38.40,33.60,0 --163.20,24.00,4.14,0.00,1.00,144.00,28.80,0 --163.20,24.00,4.12,0.00,1.00,-28.80,24.00,0 --168.00,19.20,4.10,0.00,1.00,153.60,24.00,0 --172.80,14.40,4.08,0.00,1.00,-19.20,19.20,0 --172.80,9.60,4.06,0.00,1.00,163.20,14.40,0 --177.60,4.80,4.04,0.00,1.00,-9.60,9.60,0 --177.60,0.00,4.02,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,3.97,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,3.95,0.00,1.00,4.80,-4.80,0 -172.80,-14.40,3.93,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,3.91,0.00,1.00,14.40,-14.40,0 -163.20,-24.00,3.89,0.00,1.00,-158.40,-19.20,0 -163.20,-24.00,3.87,0.00,1.00,24.00,-24.00,0 -158.40,-28.80,3.85,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,3.82,0.00,1.00,33.60,-28.80,0 -153.60,-38.40,3.80,0.00,1.00,-139.20,-33.60,0 -148.80,-38.40,3.78,0.00,1.00,43.20,-38.40,0 -144.00,-43.20,3.76,0.00,1.00,-129.60,-38.40,0 -139.20,-48.00,3.74,0.00,1.00,52.80,-43.20,0 -129.60,-48.00,3.72,0.00,1.00,-120.00,-48.00,0 -124.80,-52.80,3.70,0.00,1.00,62.40,-48.00,0 -115.20,-52.80,3.67,0.00,1.00,-110.40,-52.80,0 -110.40,-57.60,3.65,0.00,1.00,72.00,-52.80,0 -100.80,-57.60,3.63,0.00,1.00,-100.80,-52.80,0 -91.20,-57.60,3.61,0.00,1.00,81.60,-57.60,0 -81.60,-57.60,3.59,0.00,1.00,-91.20,-57.60,0 -76.80,-57.60,3.57,0.00,1.00,96.00,-57.60,0 -67.20,-57.60,3.55,0.00,1.00,-81.60,-57.60,0 -57.60,-52.80,3.52,0.00,1.00,105.60,-52.80,0 -52.80,-52.80,3.50,0.00,1.00,-72.00,-52.80,0 -48.00,-48.00,3.48,0.00,1.00,115.20,-48.00,0 -38.40,-43.20,3.46,0.00,1.00,-62.40,-48.00,0 -33.60,-43.20,3.44,0.00,1.00,124.80,-43.20,0 -28.80,-38.40,3.42,0.00,1.00,-52.80,-43.20,0 -28.80,-33.60,3.40,0.00,1.00,134.40,-38.40,0 -24.00,-33.60,3.38,0.00,1.00,-43.20,-33.60,0 -19.20,-28.80,3.35,0.00,1.00,144.00,-28.80,0 -14.40,-24.00,3.33,0.00,1.00,-33.60,-28.80,0 -14.40,-19.20,3.31,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,3.29,0.00,1.00,-24.00,-19.20,0 -9.60,-14.40,3.27,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,3.25,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.23,0.00,1.00,172.80,-9.60,0 -0.00,0.00,3.20,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.18,0.00,1.00,0.00,0.00,0 --4.80,9.60,3.16,0.00,1.00,-177.60,4.80,0 --9.60,9.60,3.14,0.00,1.00,9.60,9.60,0 --9.60,14.40,3.12,0.00,1.00,-168.00,9.60,0 --14.40,19.20,3.10,0.00,1.00,19.20,14.40,0 --19.20,24.00,3.08,0.00,1.00,-158.40,19.20,0 --24.00,24.00,3.05,0.00,1.00,28.80,24.00,0 --24.00,28.80,3.03,0.00,1.00,-148.80,24.00,0 --28.80,33.60,3.01,0.00,1.00,38.40,28.80,0 --33.60,38.40,2.99,0.00,1.00,-139.20,33.60,0 --38.40,38.40,2.97,0.00,1.00,48.00,33.60,0 --43.20,43.20,2.95,0.00,1.00,-129.60,38.40,0 --48.00,43.20,2.93,0.00,1.00,57.60,43.20,0 --52.80,48.00,2.91,0.00,1.00,-120.00,43.20,0 --62.40,48.00,2.88,0.00,1.00,67.20,48.00,0 --67.20,52.80,2.86,0.00,1.00,-110.40,48.00,0 --76.80,52.80,2.84,0.00,1.00,76.80,48.00,0 --86.40,52.80,2.82,0.00,1.00,-100.80,52.80,0 --91.20,52.80,2.80,0.00,1.00,86.40,52.80,0 --100.80,52.80,2.78,0.00,1.00,-86.40,52.80,0 --105.60,52.80,2.76,0.00,1.00,96.00,52.80,0 --115.20,48.00,2.73,0.00,1.00,-76.80,48.00,0 --120.00,48.00,2.71,0.00,1.00,105.60,48.00,0 --129.60,48.00,2.69,0.00,1.00,-67.20,48.00,0 --134.40,43.20,2.67,0.00,1.00,115.20,43.20,0 --139.20,43.20,2.65,0.00,1.00,-57.60,43.20,0 --144.00,38.40,2.63,0.00,1.00,124.80,38.40,0 --148.80,33.60,2.61,0.00,1.00,-48.00,38.40,0 --153.60,33.60,2.58,0.00,1.00,134.40,33.60,0 --158.40,28.80,2.56,0.00,1.00,-38.40,28.80,0 --158.40,24.00,2.54,0.00,1.00,144.00,28.80,0 --163.20,19.20,2.52,0.00,1.00,-28.80,24.00,0 --168.00,19.20,2.50,0.00,1.00,153.60,19.20,0 --168.00,14.40,2.48,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.46,0.00,1.00,163.20,14.40,0 --177.60,4.80,2.44,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.41,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -177.60,-4.80,2.37,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.35,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,2.33,0.00,1.00,-168.00,-9.60,0 -168.00,-19.20,2.31,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,2.29,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,2.26,0.00,1.00,24.00,-19.20,0 -158.40,-28.80,2.24,0.00,1.00,-148.80,-24.00,0 -153.60,-33.60,2.22,0.00,1.00,33.60,-28.80,0 -148.80,-33.60,2.20,0.00,1.00,-139.20,-28.80,0 -144.00,-38.40,2.18,0.00,1.00,43.20,-33.60,0 -139.20,-43.20,2.16,0.00,1.00,-129.60,-38.40,0 -134.40,-43.20,2.14,0.00,1.00,52.80,-38.40,0 -129.60,-48.00,2.11,0.00,1.00,-120.00,-43.20,0 -120.00,-48.00,2.09,0.00,1.00,62.40,-43.20,0 -115.20,-48.00,2.07,0.00,1.00,-110.40,-48.00,0 -105.60,-52.80,2.05,0.00,1.00,72.00,-48.00,0 -100.80,-52.80,2.03,0.00,1.00,-100.80,-48.00,0 -91.20,-52.80,2.01,0.00,1.00,81.60,-52.80,0 -86.40,-52.80,1.99,0.00,1.00,-91.20,-52.80,0 -76.80,-52.80,1.97,0.00,1.00,96.00,-52.80,0 -67.20,-52.80,1.94,0.00,1.00,-81.60,-52.80,0 -62.40,-48.00,1.92,0.00,1.00,105.60,-48.00,0 -52.80,-48.00,1.90,0.00,1.00,-72.00,-48.00,0 -48.00,-43.20,1.88,0.00,1.00,115.20,-48.00,0 -43.20,-43.20,1.86,0.00,1.00,-62.40,-43.20,0 -38.40,-38.40,1.84,0.00,1.00,124.80,-43.20,0 -33.60,-38.40,1.82,0.00,1.00,-52.80,-38.40,0 -28.80,-33.60,1.79,0.00,1.00,134.40,-33.60,0 -24.00,-28.80,1.77,0.00,1.00,-43.20,-33.60,0 -24.00,-24.00,1.75,0.00,1.00,144.00,-28.80,0 -19.20,-24.00,1.73,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,1.71,0.00,1.00,153.60,-24.00,0 -9.60,-14.40,1.69,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,1.67,0.00,1.00,163.20,-14.40,0 -4.80,-9.60,1.64,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.62,0.00,1.00,172.80,-9.60,0 -0.00,0.00,1.60,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.58,0.00,1.00,0.00,0.00,0 --4.80,4.80,1.56,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.54,0.00,1.00,9.60,4.80,0 --14.40,14.40,1.52,0.00,1.00,-168.00,9.60,0 --14.40,19.20,1.50,0.00,1.00,19.20,14.40,0 --19.20,19.20,1.47,0.00,1.00,-158.40,19.20,0 --24.00,24.00,1.45,0.00,1.00,28.80,19.20,0 --28.80,28.80,1.43,0.00,1.00,-148.80,24.00,0 --33.60,28.80,1.41,0.00,1.00,38.40,28.80,0 --38.40,33.60,1.39,0.00,1.00,-139.20,28.80,0 --43.20,38.40,1.37,0.00,1.00,48.00,33.60,0 --48.00,38.40,1.35,0.00,1.00,-129.60,33.60,0 --52.80,43.20,1.32,0.00,1.00,57.60,38.40,0 --57.60,43.20,1.30,0.00,1.00,-120.00,38.40,0 --62.40,43.20,1.28,0.00,1.00,67.20,43.20,0 --72.00,48.00,1.26,0.00,1.00,-110.40,43.20,0 --76.80,48.00,1.24,0.00,1.00,76.80,43.20,0 --86.40,48.00,1.22,0.00,1.00,-100.80,48.00,0 --91.20,48.00,1.20,0.00,1.00,86.40,48.00,0 --100.80,48.00,1.17,0.00,1.00,-86.40,48.00,0 --105.60,48.00,1.15,0.00,1.00,96.00,48.00,0 --110.40,48.00,1.13,0.00,1.00,-76.80,48.00,0 --120.00,43.20,1.11,0.00,1.00,105.60,43.20,0 --124.80,43.20,1.09,0.00,1.00,-67.20,43.20,0 --129.60,38.40,1.07,0.00,1.00,115.20,43.20,0 --134.40,38.40,1.05,0.00,1.00,-57.60,38.40,0 --139.20,33.60,1.03,0.00,1.00,124.80,38.40,0 --144.00,33.60,1.00,0.00,1.00,-48.00,33.60,0 --148.80,28.80,0.98,0.00,1.00,134.40,33.60,0 --153.60,24.00,0.96,0.00,1.00,-38.40,28.80,0 --158.40,24.00,0.94,0.00,1.00,144.00,24.00,0 --163.20,19.20,0.92,0.00,1.00,-28.80,24.00,0 --163.20,14.40,0.90,0.00,1.00,153.60,19.20,0 --168.00,14.40,0.88,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.85,0.00,1.00,163.20,14.40,0 --172.80,4.80,0.83,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.81,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.77,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.75,0.00,1.00,4.80,-4.80,0 -168.00,-14.40,0.73,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.70,0.00,1.00,14.40,-14.40,0 -163.20,-19.20,0.68,0.00,1.00,-158.40,-14.40,0 -158.40,-24.00,0.66,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.64,0.00,1.00,-148.80,-24.00,0 -148.80,-28.80,0.62,0.00,1.00,33.60,-24.00,0 -144.00,-33.60,0.60,0.00,1.00,-139.20,-28.80,0 -139.20,-33.60,0.58,0.00,1.00,43.20,-33.60,0 -134.40,-38.40,0.56,0.00,1.00,-129.60,-33.60,0 -129.60,-38.40,0.53,0.00,1.00,52.80,-38.40,0 -124.80,-43.20,0.51,0.00,1.00,-120.00,-38.40,0 -120.00,-43.20,0.49,0.00,1.00,62.40,-43.20,0 -110.40,-48.00,0.47,0.00,1.00,-110.40,-43.20,0 -105.60,-48.00,0.45,0.00,1.00,72.00,-43.20,0 -100.80,-48.00,0.43,0.00,1.00,-100.80,-48.00,0 -91.20,-48.00,0.41,0.00,1.00,81.60,-48.00,0 -86.40,-48.00,0.38,0.00,1.00,-91.20,-48.00,0 -76.80,-48.00,0.36,0.00,1.00,96.00,-48.00,0 -72.00,-48.00,0.34,0.00,1.00,-81.60,-48.00,0 -62.40,-43.20,0.32,0.00,1.00,105.60,-43.20,0 -57.60,-43.20,0.30,0.00,1.00,-72.00,-43.20,0 -52.80,-43.20,0.28,0.00,1.00,115.20,-43.20,0 -48.00,-38.40,0.26,0.00,1.00,-62.40,-38.40,0 -43.20,-38.40,0.23,0.00,1.00,124.80,-38.40,0 -38.40,-33.60,0.21,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,0.19,0.00,1.00,134.40,-33.60,0 -28.80,-28.80,0.17,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,0.15,0.00,1.00,144.00,-28.80,0 -19.20,-19.20,0.13,0.00,1.00,-33.60,-24.00,0 -14.40,-19.20,0.11,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,0.09,0.00,1.00,-24.00,-19.20,0 -9.60,-9.60,0.06,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,0.04,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,0.02,0.00,1.00,172.80,-4.80,0 -0.00,0.00,0.00,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,0.00,0.00,1.00,0.00,0.00,0 --4.80,4.80,0.02,0.00,1.00,-177.60,4.80,0 --9.60,9.60,0.04,0.00,1.00,9.60,4.80,0 --14.40,14.40,0.06,0.00,1.00,-168.00,9.60,0 --19.20,14.40,0.09,0.00,1.00,19.20,14.40,0 --24.00,19.20,0.11,0.00,1.00,-158.40,14.40,0 --24.00,24.00,0.13,0.00,1.00,28.80,19.20,0 --28.80,24.00,0.15,0.00,1.00,-148.80,24.00,0 --33.60,28.80,0.17,0.00,1.00,38.40,24.00,0 --38.40,28.80,0.19,0.00,1.00,-139.20,28.80,0 --43.20,33.60,0.21,0.00,1.00,48.00,28.80,0 --48.00,33.60,0.23,0.00,1.00,-129.60,33.60,0 --52.80,38.40,0.26,0.00,1.00,57.60,33.60,0 --62.40,38.40,0.28,0.00,1.00,-120.00,38.40,0 --67.20,38.40,0.30,0.00,1.00,67.20,38.40,0 --72.00,43.20,0.32,0.00,1.00,-110.40,38.40,0 --76.80,43.20,0.34,0.00,1.00,76.80,38.40,0 --86.40,43.20,0.36,0.00,1.00,-100.80,43.20,0 --91.20,43.20,0.38,0.00,1.00,86.40,43.20,0 --96.00,43.20,0.41,0.00,1.00,-86.40,43.20,0 --105.60,43.20,0.43,0.00,1.00,96.00,43.20,0 --110.40,43.20,0.45,0.00,1.00,-76.80,43.20,0 --115.20,38.40,0.47,0.00,1.00,105.60,38.40,0 --124.80,38.40,0.49,0.00,1.00,-67.20,38.40,0 --129.60,38.40,0.51,0.00,1.00,115.20,38.40,0 --134.40,33.60,0.53,0.00,1.00,-57.60,33.60,0 --139.20,33.60,0.56,0.00,1.00,124.80,33.60,0 --144.00,28.80,0.58,0.00,1.00,-48.00,28.80,0 --148.80,28.80,0.60,0.00,1.00,134.40,28.80,0 --153.60,24.00,0.62,0.00,1.00,-38.40,24.00,0 --158.40,19.20,0.64,0.00,1.00,144.00,24.00,0 --158.40,19.20,0.66,0.00,1.00,-28.80,19.20,0 --163.20,14.40,0.68,0.00,1.00,153.60,19.20,0 --168.00,9.60,0.70,0.00,1.00,-19.20,14.40,0 --172.80,9.60,0.73,0.00,1.00,163.20,9.60,0 --172.80,4.80,0.75,0.00,1.00,-9.60,9.60,0 --177.60,0.00,0.77,0.00,1.00,172.80,4.80,0 -177.60,-0.00,0.79,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,0.81,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,0.83,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,0.85,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,0.88,0.00,1.00,14.40,-9.60,0 -158.40,-19.20,0.90,0.00,1.00,-158.40,-14.40,0 -158.40,-19.20,0.92,0.00,1.00,24.00,-19.20,0 -153.60,-24.00,0.94,0.00,1.00,-148.80,-19.20,0 -148.80,-28.80,0.96,0.00,1.00,33.60,-24.00,0 -144.00,-28.80,0.98,0.00,1.00,-139.20,-24.00,0 -139.20,-33.60,1.00,0.00,1.00,43.20,-28.80,0 -134.40,-33.60,1.03,0.00,1.00,-129.60,-28.80,0 -129.60,-38.40,1.05,0.00,1.00,52.80,-33.60,0 -124.80,-38.40,1.07,0.00,1.00,-120.00,-33.60,0 -115.20,-38.40,1.09,0.00,1.00,62.40,-38.40,0 -110.40,-43.20,1.11,0.00,1.00,-110.40,-38.40,0 -105.60,-43.20,1.13,0.00,1.00,72.00,-38.40,0 -96.00,-43.20,1.15,0.00,1.00,-100.80,-43.20,0 -91.20,-43.20,1.17,0.00,1.00,81.60,-43.20,0 -86.40,-43.20,1.20,0.00,1.00,-91.20,-43.20,0 -76.80,-43.20,1.22,0.00,1.00,96.00,-43.20,0 -72.00,-43.20,1.24,0.00,1.00,-81.60,-43.20,0 -67.20,-38.40,1.26,0.00,1.00,105.60,-38.40,0 -62.40,-38.40,1.28,0.00,1.00,-72.00,-38.40,0 -52.80,-38.40,1.30,0.00,1.00,115.20,-38.40,0 -48.00,-33.60,1.32,0.00,1.00,-62.40,-38.40,0 -43.20,-33.60,1.35,0.00,1.00,124.80,-33.60,0 -38.40,-28.80,1.37,0.00,1.00,-52.80,-33.60,0 -33.60,-28.80,1.39,0.00,1.00,134.40,-28.80,0 -28.80,-24.00,1.41,0.00,1.00,-43.20,-28.80,0 -24.00,-24.00,1.43,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,1.45,0.00,1.00,-33.60,-24.00,0 -19.20,-14.40,1.47,0.00,1.00,153.60,-19.20,0 -14.40,-14.40,1.50,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,1.52,0.00,1.00,163.20,-14.40,0 -4.80,-4.80,1.54,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,1.56,0.00,1.00,172.80,-4.80,0 -0.00,0.00,1.58,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,1.60,0.00,1.00,0.00,0.00,0 --9.60,4.80,1.62,0.00,1.00,-177.60,4.80,0 --9.60,9.60,1.64,0.00,1.00,9.60,4.80,0 --14.40,9.60,1.67,0.00,1.00,-168.00,9.60,0 --19.20,14.40,1.69,0.00,1.00,19.20,9.60,0 --24.00,19.20,1.71,0.00,1.00,-158.40,14.40,0 --28.80,19.20,1.73,0.00,1.00,28.80,19.20,0 --33.60,24.00,1.75,0.00,1.00,-148.80,19.20,0 --38.40,24.00,1.77,0.00,1.00,38.40,24.00,0 --43.20,28.80,1.79,0.00,1.00,-139.20,24.00,0 --48.00,28.80,1.82,0.00,1.00,48.00,28.80,0 --52.80,33.60,1.84,0.00,1.00,-129.60,28.80,0 --57.60,33.60,1.86,0.00,1.00,57.60,28.80,0 --62.40,33.60,1.88,0.00,1.00,-120.00,33.60,0 --67.20,38.40,1.90,0.00,1.00,67.20,33.60,0 --72.00,38.40,1.92,0.00,1.00,-110.40,33.60,0 --81.60,38.40,1.94,0.00,1.00,76.80,38.40,0 --86.40,38.40,1.97,0.00,1.00,-100.80,38.40,0 --91.20,38.40,1.99,0.00,1.00,86.40,38.40,0 --96.00,38.40,2.01,0.00,1.00,-86.40,38.40,0 --105.60,38.40,2.03,0.00,1.00,96.00,38.40,0 --110.40,38.40,2.05,0.00,1.00,-76.80,38.40,0 --115.20,33.60,2.07,0.00,1.00,105.60,33.60,0 --120.00,33.60,2.09,0.00,1.00,-67.20,33.60,0 --124.80,33.60,2.11,0.00,1.00,115.20,33.60,0 --129.60,28.80,2.14,0.00,1.00,-57.60,33.60,0 --134.40,28.80,2.16,0.00,1.00,124.80,28.80,0 --139.20,24.00,2.18,0.00,1.00,-48.00,28.80,0 --144.00,24.00,2.20,0.00,1.00,134.40,24.00,0 --148.80,19.20,2.22,0.00,1.00,-38.40,24.00,0 --153.60,19.20,2.24,0.00,1.00,144.00,19.20,0 --158.40,14.40,2.26,0.00,1.00,-28.80,19.20,0 --163.20,14.40,2.29,0.00,1.00,153.60,14.40,0 --168.00,9.60,2.31,0.00,1.00,-19.20,14.40,0 --172.80,9.60,2.33,0.00,1.00,163.20,9.60,0 --172.80,4.80,2.35,0.00,1.00,-9.60,9.60,0 --177.60,0.00,2.37,0.00,1.00,172.80,4.80,0 -177.60,-0.00,2.39,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,2.41,0.00,1.00,-177.60,-0.00,0 -172.80,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,2.46,0.00,1.00,-168.00,-9.60,0 -163.20,-14.40,2.48,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,2.50,0.00,1.00,-158.40,-14.40,0 -153.60,-19.20,2.52,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,2.54,0.00,1.00,-148.80,-19.20,0 -144.00,-24.00,2.56,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,2.58,0.00,1.00,-139.20,-24.00,0 -134.40,-28.80,2.61,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,2.63,0.00,1.00,-129.60,-28.80,0 -124.80,-33.60,2.65,0.00,1.00,52.80,-28.80,0 -120.00,-33.60,2.67,0.00,1.00,-120.00,-33.60,0 -115.20,-33.60,2.69,0.00,1.00,62.40,-33.60,0 -110.40,-38.40,2.71,0.00,1.00,-110.40,-33.60,0 -105.60,-38.40,2.73,0.00,1.00,72.00,-33.60,0 -96.00,-38.40,2.76,0.00,1.00,-100.80,-38.40,0 -91.20,-38.40,2.78,0.00,1.00,81.60,-38.40,0 -86.40,-38.40,2.80,0.00,1.00,-91.20,-38.40,0 -81.60,-38.40,2.82,0.00,1.00,96.00,-38.40,0 -72.00,-38.40,2.84,0.00,1.00,-81.60,-38.40,0 -67.20,-38.40,2.86,0.00,1.00,105.60,-38.40,0 -62.40,-33.60,2.88,0.00,1.00,-72.00,-33.60,0 -57.60,-33.60,2.91,0.00,1.00,115.20,-33.60,0 -52.80,-33.60,2.93,0.00,1.00,-62.40,-33.60,0 -48.00,-28.80,2.95,0.00,1.00,124.80,-28.80,0 -43.20,-28.80,2.97,0.00,1.00,-52.80,-28.80,0 -38.40,-24.00,2.99,0.00,1.00,134.40,-28.80,0 -33.60,-24.00,3.01,0.00,1.00,-43.20,-24.00,0 -28.80,-19.20,3.03,0.00,1.00,144.00,-24.00,0 -24.00,-19.20,3.05,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,3.08,0.00,1.00,153.60,-19.20,0 -14.40,-9.60,3.10,0.00,1.00,-24.00,-14.40,0 -9.60,-9.60,3.12,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,3.14,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,3.16,0.00,1.00,172.80,-4.80,0 -0.00,0.00,3.18,0.00,1.00,-4.80,-4.80,0 --4.80,4.80,3.20,0.00,1.00,0.00,0.00,0 --9.60,4.80,3.23,0.00,1.00,-177.60,4.80,0 --14.40,9.60,3.25,0.00,1.00,9.60,4.80,0 --14.40,9.60,3.27,0.00,1.00,-168.00,9.60,0 --19.20,14.40,3.29,0.00,1.00,19.20,9.60,0 --24.00,14.40,3.31,0.00,1.00,-158.40,14.40,0 --28.80,19.20,3.33,0.00,1.00,28.80,14.40,0 --33.60,19.20,3.35,0.00,1.00,-148.80,19.20,0 --38.40,24.00,3.38,0.00,1.00,38.40,19.20,0 --43.20,24.00,3.40,0.00,1.00,-139.20,19.20,0 --48.00,24.00,3.42,0.00,1.00,48.00,24.00,0 --52.80,28.80,3.44,0.00,1.00,-129.60,24.00,0 --57.60,28.80,3.46,0.00,1.00,57.60,28.80,0 --62.40,28.80,3.48,0.00,1.00,-120.00,28.80,0 --67.20,33.60,3.50,0.00,1.00,67.20,28.80,0 --72.00,33.60,3.52,0.00,1.00,-110.40,28.80,0 --81.60,33.60,3.55,0.00,1.00,76.80,33.60,0 --86.40,33.60,3.57,0.00,1.00,-100.80,33.60,0 --91.20,33.60,3.59,0.00,1.00,86.40,33.60,0 --96.00,33.60,3.61,0.00,1.00,-86.40,33.60,0 --100.80,33.60,3.63,0.00,1.00,96.00,33.60,0 --110.40,33.60,3.65,0.00,1.00,-76.80,33.60,0 --115.20,33.60,3.67,0.00,1.00,105.60,28.80,0 --120.00,28.80,3.70,0.00,1.00,-67.20,28.80,0 --124.80,28.80,3.72,0.00,1.00,115.20,28.80,0 --129.60,28.80,3.74,0.00,1.00,-57.60,28.80,0 --134.40,24.00,3.76,0.00,1.00,124.80,24.00,0 --139.20,24.00,3.78,0.00,1.00,-48.00,24.00,0 --144.00,19.20,3.80,0.00,1.00,134.40,24.00,0 --148.80,19.20,3.82,0.00,1.00,-38.40,19.20,0 --153.60,14.40,3.85,0.00,1.00,144.00,19.20,0 --158.40,14.40,3.87,0.00,1.00,-28.80,14.40,0 --163.20,9.60,3.89,0.00,1.00,153.60,14.40,0 --168.00,9.60,3.91,0.00,1.00,-19.20,9.60,0 --168.00,4.80,3.93,0.00,1.00,163.20,9.60,0 --172.80,4.80,3.95,0.00,1.00,-9.60,4.80,0 --177.60,0.00,3.97,0.00,1.00,172.80,4.80,0 -177.60,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,4.02,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -168.00,-9.60,4.06,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,4.08,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,4.10,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,4.12,0.00,1.00,24.00,-14.40,0 -148.80,-19.20,4.14,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,4.17,0.00,1.00,33.60,-19.20,0 -139.20,-24.00,4.19,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,4.21,0.00,1.00,43.20,-24.00,0 -129.60,-28.80,4.23,0.00,1.00,-129.60,-24.00,0 -124.80,-28.80,4.25,0.00,1.00,52.80,-24.00,0 -120.00,-28.80,4.27,0.00,1.00,-120.00,-28.80,0 -115.20,-33.60,4.29,0.00,1.00,62.40,-28.80,0 -110.40,-33.60,4.32,0.00,1.00,-110.40,-28.80,0 -100.80,-33.60,4.34,0.00,1.00,72.00,-28.80,0 -96.00,-33.60,4.36,0.00,1.00,-100.80,-33.60,0 -91.20,-33.60,4.38,0.00,1.00,81.60,-33.60,0 -86.40,-33.60,4.40,0.00,1.00,-91.20,-33.60,0 -81.60,-33.60,4.42,0.00,1.00,96.00,-33.60,0 -72.00,-33.60,4.44,0.00,1.00,-81.60,-33.60,0 -67.20,-33.60,4.46,0.00,1.00,105.60,-33.60,0 -62.40,-28.80,4.49,0.00,1.00,-72.00,-28.80,0 -57.60,-28.80,4.51,0.00,1.00,115.20,-28.80,0 -52.80,-28.80,4.53,0.00,1.00,-62.40,-28.80,0 -48.00,-24.00,4.55,0.00,1.00,124.80,-28.80,0 -43.20,-24.00,4.57,0.00,1.00,-52.80,-24.00,0 -38.40,-24.00,4.59,0.00,1.00,134.40,-24.00,0 -33.60,-19.20,4.61,0.00,1.00,-43.20,-19.20,0 -28.80,-19.20,4.64,0.00,1.00,144.00,-19.20,0 -24.00,-14.40,4.66,0.00,1.00,-33.60,-19.20,0 -19.20,-14.40,4.68,0.00,1.00,153.60,-14.40,0 -14.40,-9.60,4.70,0.00,1.00,-24.00,-14.40,0 -14.40,-9.60,4.72,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,4.74,0.00,1.00,-14.40,-9.60,0 -4.80,-4.80,4.76,0.00,1.00,172.80,-4.80,0 -0.00,0.00,4.79,0.00,1.00,-4.80,-4.80,0 --4.80,0.00,4.81,0.00,1.00,0.00,0.00,0 --9.60,4.80,4.83,0.00,1.00,-177.60,0.00,0 --14.40,4.80,4.85,0.00,1.00,9.60,4.80,0 --19.20,9.60,4.87,0.00,1.00,-168.00,4.80,0 --19.20,9.60,4.89,0.00,1.00,19.20,9.60,0 --24.00,14.40,4.91,0.00,1.00,-158.40,9.60,0 --28.80,14.40,4.93,0.00,1.00,28.80,14.40,0 --33.60,19.20,4.96,0.00,1.00,-148.80,14.40,0 --38.40,19.20,4.98,0.00,1.00,38.40,14.40,0 --43.20,19.20,5.00,0.00,1.00,-139.20,19.20,0 --48.00,24.00,5.02,0.00,1.00,48.00,19.20,0 --52.80,24.00,5.04,0.00,1.00,-129.60,24.00,0 --57.60,24.00,5.06,0.00,1.00,57.60,24.00,0 --62.40,24.00,5.08,0.00,1.00,-120.00,24.00,0 --72.00,28.80,5.11,0.00,1.00,67.20,24.00,0 --76.80,28.80,5.13,0.00,1.00,-110.40,24.00,0 --81.60,28.80,5.15,0.00,1.00,76.80,28.80,0 --86.40,28.80,5.17,0.00,1.00,-100.80,28.80,0 --91.20,28.80,5.19,0.00,1.00,86.40,28.80,0 --96.00,28.80,5.21,0.00,1.00,-86.40,28.80,0 --100.80,28.80,5.23,0.00,1.00,96.00,28.80,0 --105.60,28.80,5.26,0.00,1.00,-76.80,28.80,0 --115.20,28.80,5.28,0.00,1.00,105.60,28.80,0 --120.00,24.00,5.30,0.00,1.00,-67.20,24.00,0 --124.80,24.00,5.32,0.00,1.00,115.20,24.00,0 --129.60,24.00,5.34,0.00,1.00,-57.60,24.00,0 --134.40,24.00,5.36,0.00,1.00,124.80,24.00,0 --139.20,19.20,5.38,0.00,1.00,-48.00,19.20,0 --144.00,19.20,5.40,0.00,1.00,134.40,19.20,0 --148.80,14.40,5.43,0.00,1.00,-38.40,19.20,0 --153.60,14.40,5.45,0.00,1.00,144.00,14.40,0 --158.40,14.40,5.47,0.00,1.00,-28.80,14.40,0 --163.20,9.60,5.49,0.00,1.00,153.60,9.60,0 --163.20,9.60,5.51,0.00,1.00,-19.20,9.60,0 --168.00,4.80,5.53,0.00,1.00,163.20,9.60,0 --172.80,4.80,5.55,0.00,1.00,-9.60,4.80,0 --177.60,0.00,5.58,0.00,1.00,172.80,4.80,0 -177.60,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,5.62,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,5.64,0.00,1.00,4.80,-4.80,0 -163.20,-9.60,5.66,0.00,1.00,-168.00,-4.80,0 -163.20,-9.60,5.68,0.00,1.00,14.40,-9.60,0 -158.40,-14.40,5.70,0.00,1.00,-158.40,-9.60,0 -153.60,-14.40,5.72,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,5.75,0.00,1.00,-148.80,-14.40,0 -144.00,-19.20,5.77,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,5.79,0.00,1.00,-139.20,-19.20,0 -134.40,-24.00,5.81,0.00,1.00,43.20,-19.20,0 -129.60,-24.00,5.83,0.00,1.00,-129.60,-19.20,0 -124.80,-24.00,5.85,0.00,1.00,52.80,-24.00,0 -120.00,-24.00,5.87,0.00,1.00,-120.00,-24.00,0 -115.20,-28.80,5.90,0.00,1.00,62.40,-24.00,0 -105.60,-28.80,5.92,0.00,1.00,-110.40,-24.00,0 -100.80,-28.80,5.94,0.00,1.00,72.00,-28.80,0 -96.00,-28.80,5.96,0.00,1.00,-100.80,-28.80,0 -91.20,-28.80,5.98,0.00,1.00,81.60,-28.80,0 -86.40,-28.80,6.00,0.00,1.00,-91.20,-28.80,0 -81.60,-28.80,6.02,0.00,1.00,96.00,-28.80,0 -76.80,-28.80,6.05,0.00,1.00,-81.60,-28.80,0 -72.00,-28.80,6.07,0.00,1.00,105.60,-28.80,0 -62.40,-24.00,6.09,0.00,1.00,-72.00,-24.00,0 -57.60,-24.00,6.11,0.00,1.00,115.20,-24.00,0 -52.80,-24.00,6.13,0.00,1.00,-62.40,-24.00,0 -48.00,-24.00,6.15,0.00,1.00,124.80,-24.00,0 -43.20,-19.20,6.17,0.00,1.00,-52.80,-24.00,0 -38.40,-19.20,6.19,0.00,1.00,134.40,-19.20,0 -33.60,-19.20,6.22,0.00,1.00,-43.20,-19.20,0 -28.80,-14.40,6.24,0.00,1.00,144.00,-14.40,0 -24.00,-14.40,6.26,0.00,1.00,-33.60,-14.40,0 -19.20,-9.60,6.28,0.00,1.00,153.60,-14.40,0 -19.20,-9.60,6.30,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,6.32,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,6.34,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,6.37,0.00,1.00,172.80,-4.80,0 -0.00,0.00,6.39,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,6.41,0.00,1.00,0.00,0.00,0 --9.60,4.80,6.43,0.00,1.00,-177.60,0.00,0 --14.40,4.80,6.45,0.00,1.00,9.60,4.80,0 --19.20,9.60,6.47,0.00,1.00,-168.00,4.80,0 --24.00,9.60,6.49,0.00,1.00,19.20,9.60,0 --28.80,9.60,6.52,0.00,1.00,-158.40,9.60,0 --33.60,14.40,6.54,0.00,1.00,28.80,9.60,0 --33.60,14.40,6.56,0.00,1.00,-148.80,14.40,0 --38.40,14.40,6.58,0.00,1.00,38.40,14.40,0 --43.20,19.20,6.60,0.00,1.00,-139.20,14.40,0 --48.00,19.20,6.62,0.00,1.00,48.00,14.40,0 --57.60,19.20,6.64,0.00,1.00,-129.60,19.20,0 --62.40,19.20,6.66,0.00,1.00,57.60,19.20,0 --67.20,24.00,6.69,0.00,1.00,-120.00,19.20,0 --72.00,24.00,6.71,0.00,1.00,67.20,19.20,0 --76.80,24.00,6.73,0.00,1.00,-110.40,24.00,0 --81.60,24.00,6.75,0.00,1.00,76.80,24.00,0 --86.40,24.00,6.77,0.00,1.00,-100.80,24.00,0 --91.20,24.00,6.79,0.00,1.00,86.40,24.00,0 --96.00,24.00,6.81,0.00,1.00,-86.40,24.00,0 --100.80,24.00,6.84,0.00,1.00,96.00,24.00,0 --105.60,24.00,6.86,0.00,1.00,-76.80,24.00,0 --110.40,24.00,6.88,0.00,1.00,105.60,24.00,0 --115.20,19.20,6.90,0.00,1.00,-67.20,19.20,0 --120.00,19.20,6.92,0.00,1.00,115.20,19.20,0 --129.60,19.20,6.94,0.00,1.00,-57.60,19.20,0 --134.40,19.20,6.96,0.00,1.00,124.80,19.20,0 --139.20,19.20,6.99,0.00,1.00,-48.00,19.20,0 --144.00,14.40,7.01,0.00,1.00,134.40,14.40,0 --148.80,14.40,7.03,0.00,1.00,-38.40,14.40,0 --148.80,14.40,7.05,0.00,1.00,144.00,14.40,0 --153.60,9.60,7.07,0.00,1.00,-28.80,9.60,0 --158.40,9.60,7.09,0.00,1.00,153.60,9.60,0 --163.20,4.80,7.11,0.00,1.00,-19.20,9.60,0 --168.00,4.80,7.13,0.00,1.00,163.20,4.80,0 --172.80,4.80,7.16,0.00,1.00,-9.60,4.80,0 --177.60,0.00,7.18,0.00,1.00,172.80,4.80,0 -177.60,-0.00,7.20,0.00,1.00,-0.00,0.00,0 -172.80,-4.80,7.22,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,7.24,0.00,1.00,4.80,-4.80,0 -163.20,-4.80,7.26,0.00,1.00,-168.00,-4.80,0 -158.40,-9.60,7.28,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,7.31,0.00,1.00,-158.40,-9.60,0 -148.80,-14.40,7.33,0.00,1.00,24.00,-9.60,0 -148.80,-14.40,7.35,0.00,1.00,-148.80,-9.60,0 -144.00,-14.40,7.37,0.00,1.00,33.60,-14.40,0 -139.20,-19.20,7.39,0.00,1.00,-139.20,-14.40,0 -134.40,-19.20,7.41,0.00,1.00,43.20,-14.40,0 -129.60,-19.20,7.43,0.00,1.00,-129.60,-19.20,0 -120.00,-19.20,7.46,0.00,1.00,52.80,-19.20,0 -115.20,-19.20,7.48,0.00,1.00,-120.00,-19.20,0 -110.40,-24.00,7.50,0.00,1.00,62.40,-19.20,0 -105.60,-24.00,7.52,0.00,1.00,-110.40,-19.20,0 -100.80,-24.00,7.54,0.00,1.00,72.00,-24.00,0 -96.00,-24.00,7.56,0.00,1.00,-100.80,-24.00,0 -91.20,-24.00,7.58,0.00,1.00,81.60,-24.00,0 -86.40,-24.00,7.60,0.00,1.00,-91.20,-24.00,0 -81.60,-24.00,7.63,0.00,1.00,96.00,-24.00,0 -76.80,-24.00,7.65,0.00,1.00,-81.60,-24.00,0 -72.00,-24.00,7.67,0.00,1.00,105.60,-24.00,0 -67.20,-24.00,7.69,0.00,1.00,-72.00,-24.00,0 -62.40,-19.20,7.71,0.00,1.00,115.20,-19.20,0 -57.60,-19.20,7.73,0.00,1.00,-62.40,-19.20,0 -48.00,-19.20,7.75,0.00,1.00,124.80,-19.20,0 -43.20,-19.20,7.78,0.00,1.00,-52.80,-19.20,0 -38.40,-14.40,7.80,0.00,1.00,134.40,-14.40,0 -33.60,-14.40,7.82,0.00,1.00,-43.20,-14.40,0 -33.60,-14.40,7.84,0.00,1.00,144.00,-14.40,0 -28.80,-9.60,7.86,0.00,1.00,-33.60,-14.40,0 -24.00,-9.60,7.88,0.00,1.00,153.60,-9.60,0 -19.20,-9.60,7.90,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,7.93,0.00,1.00,163.20,-9.60,0 -9.60,-4.80,7.95,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,7.97,0.00,1.00,172.80,-4.80,0 -0.00,0.00,7.99,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,8.01,0.00,1.00,0.00,0.00,0 --9.60,4.80,8.03,0.00,1.00,-177.60,0.00,0 --14.40,4.80,8.05,0.00,1.00,9.60,4.80,0 --19.20,4.80,8.07,0.00,1.00,-168.00,4.80,0 --24.00,9.60,8.10,0.00,1.00,19.20,4.80,0 --28.80,9.60,8.12,0.00,1.00,-158.40,9.60,0 --33.60,9.60,8.14,0.00,1.00,24.00,9.60,0 --38.40,9.60,8.16,0.00,1.00,-148.80,9.60,0 --43.20,14.40,8.18,0.00,1.00,33.60,9.60,0 --48.00,14.40,8.20,0.00,1.00,-139.20,14.40,0 --52.80,14.40,8.22,0.00,1.00,43.20,14.40,0 --57.60,14.40,8.25,0.00,1.00,-129.60,14.40,0 --62.40,19.20,8.27,0.00,1.00,52.80,14.40,0 --67.20,19.20,8.29,0.00,1.00,-120.00,14.40,0 --72.00,19.20,8.31,0.00,1.00,62.40,14.40,0 --76.80,19.20,8.33,0.00,1.00,-110.40,19.20,0 --81.60,19.20,8.35,0.00,1.00,76.80,19.20,0 --86.40,19.20,8.37,0.00,1.00,-100.80,19.20,0 --91.20,19.20,8.40,0.00,1.00,86.40,19.20,0 --96.00,19.20,8.42,0.00,1.00,-86.40,19.20,0 --100.80,19.20,8.44,0.00,1.00,96.00,19.20,0 --105.60,19.20,8.46,0.00,1.00,-76.80,19.20,0 --110.40,19.20,8.48,0.00,1.00,105.60,19.20,0 --115.20,19.20,8.50,0.00,1.00,-67.20,19.20,0 --120.00,14.40,8.52,0.00,1.00,120.00,14.40,0 --124.80,14.40,8.54,0.00,1.00,-57.60,14.40,0 --129.60,14.40,8.57,0.00,1.00,129.60,14.40,0 --134.40,14.40,8.59,0.00,1.00,-48.00,14.40,0 --139.20,14.40,8.61,0.00,1.00,139.20,14.40,0 --144.00,9.60,8.63,0.00,1.00,-38.40,9.60,0 --148.80,9.60,8.65,0.00,1.00,148.80,9.60,0 --153.60,9.60,8.67,0.00,1.00,-28.80,9.60,0 --158.40,4.80,8.69,0.00,1.00,158.40,9.60,0 --163.20,4.80,8.72,0.00,1.00,-19.20,4.80,0 --168.00,4.80,8.74,0.00,1.00,163.20,4.80,0 --172.80,0.00,8.76,0.00,1.00,-9.60,4.80,0 --177.60,0.00,8.78,0.00,1.00,172.80,0.00,0 -177.60,-0.00,8.80,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,8.82,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,8.84,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,8.87,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,8.89,0.00,1.00,14.40,-4.80,0 -153.60,-9.60,8.91,0.00,1.00,-158.40,-4.80,0 -148.80,-9.60,8.93,0.00,1.00,24.00,-9.60,0 -144.00,-9.60,8.95,0.00,1.00,-153.60,-9.60,0 -139.20,-14.40,8.97,0.00,1.00,33.60,-9.60,0 -134.40,-14.40,8.99,0.00,1.00,-144.00,-9.60,0 -129.60,-14.40,9.01,0.00,1.00,43.20,-14.40,0 -124.80,-14.40,9.04,0.00,1.00,-134.40,-14.40,0 -120.00,-14.40,9.06,0.00,1.00,52.80,-14.40,0 -115.20,-19.20,9.08,0.00,1.00,-124.80,-14.40,0 -110.40,-19.20,9.10,0.00,1.00,62.40,-14.40,0 -105.60,-19.20,9.12,0.00,1.00,-110.40,-19.20,0 -100.80,-19.20,9.14,0.00,1.00,72.00,-19.20,0 -96.00,-19.20,9.16,0.00,1.00,-100.80,-19.20,0 -91.20,-19.20,9.19,0.00,1.00,81.60,-19.20,0 -86.40,-19.20,9.21,0.00,1.00,-91.20,-19.20,0 -81.60,-19.20,9.23,0.00,1.00,96.00,-19.20,0 -76.80,-19.20,9.25,0.00,1.00,-81.60,-19.20,0 -72.00,-19.20,9.27,0.00,1.00,105.60,-19.20,0 -67.20,-19.20,9.29,0.00,1.00,-72.00,-19.20,0 -62.40,-19.20,9.31,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,9.34,0.00,1.00,-57.60,-14.40,0 -52.80,-14.40,9.36,0.00,1.00,124.80,-14.40,0 -48.00,-14.40,9.38,0.00,1.00,-48.00,-14.40,0 -43.20,-14.40,9.40,0.00,1.00,134.40,-14.40,0 -38.40,-9.60,9.42,0.00,1.00,-38.40,-14.40,0 -33.60,-9.60,9.44,0.00,1.00,144.00,-9.60,0 -28.80,-9.60,9.46,0.00,1.00,-28.80,-9.60,0 -24.00,-9.60,9.48,0.00,1.00,153.60,-9.60,0 -19.20,-4.80,9.51,0.00,1.00,-24.00,-9.60,0 -14.40,-4.80,9.53,0.00,1.00,163.20,-4.80,0 -9.60,-4.80,9.55,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,9.57,0.00,1.00,172.80,-4.80,0 -0.00,0.00,9.59,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,9.61,0.00,1.00,0.00,0.00,0 --9.60,0.00,9.63,0.00,1.00,-177.60,0.00,0 --14.40,4.80,9.66,0.00,1.00,9.60,0.00,0 --19.20,4.80,9.68,0.00,1.00,-168.00,4.80,0 --24.00,4.80,9.70,0.00,1.00,14.40,4.80,0 --28.80,4.80,9.72,0.00,1.00,-158.40,4.80,0 --33.60,9.60,9.74,0.00,1.00,24.00,4.80,0 --38.40,9.60,9.76,0.00,1.00,-148.80,9.60,0 --43.20,9.60,9.78,0.00,1.00,33.60,9.60,0 --48.00,9.60,9.81,0.00,1.00,-139.20,9.60,0 --52.80,9.60,9.83,0.00,1.00,43.20,9.60,0 --57.60,14.40,9.85,0.00,1.00,-129.60,9.60,0 --62.40,14.40,9.87,0.00,1.00,52.80,9.60,0 --67.20,14.40,9.89,0.00,1.00,-120.00,9.60,0 --72.00,14.40,9.91,0.00,1.00,62.40,14.40,0 --76.80,14.40,9.93,0.00,1.00,-110.40,14.40,0 --81.60,14.40,9.95,0.00,1.00,76.80,14.40,0 --86.40,14.40,9.98,0.00,1.00,-100.80,14.40,0 --91.20,14.40,10.00,0.00,1.00,86.40,14.40,0 --96.00,14.40,10.02,0.00,1.00,-86.40,14.40,0 --100.80,14.40,10.04,0.00,1.00,96.00,14.40,0 --105.60,14.40,10.06,0.00,1.00,-76.80,14.40,0 --110.40,14.40,10.08,0.00,1.00,110.40,14.40,0 --115.20,14.40,10.10,0.00,1.00,-67.20,14.40,0 --120.00,14.40,10.13,0.00,1.00,120.00,9.60,0 --124.80,9.60,10.15,0.00,1.00,-57.60,9.60,0 --129.60,9.60,10.17,0.00,1.00,129.60,9.60,0 --134.40,9.60,10.19,0.00,1.00,-48.00,9.60,0 --139.20,9.60,10.21,0.00,1.00,139.20,9.60,0 --144.00,9.60,10.23,0.00,1.00,-38.40,9.60,0 --148.80,9.60,10.25,0.00,1.00,148.80,9.60,0 --153.60,4.80,10.28,0.00,1.00,-28.80,4.80,0 --158.40,4.80,10.30,0.00,1.00,158.40,4.80,0 --163.20,4.80,10.32,0.00,1.00,-19.20,4.80,0 --168.00,4.80,10.34,0.00,1.00,168.00,4.80,0 --172.80,0.00,10.36,0.00,1.00,-9.60,4.80,0 --177.60,0.00,10.38,0.00,1.00,172.80,0.00,0 -177.60,-0.00,10.40,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,10.42,0.00,1.00,-177.60,-0.00,0 -168.00,-4.80,10.45,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,10.47,0.00,1.00,-168.00,-4.80,0 -158.40,-4.80,10.49,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,10.51,0.00,1.00,-163.20,-4.80,0 -148.80,-9.60,10.53,0.00,1.00,24.00,-4.80,0 -144.00,-9.60,10.55,0.00,1.00,-153.60,-4.80,0 -139.20,-9.60,10.57,0.00,1.00,33.60,-9.60,0 -134.40,-9.60,10.60,0.00,1.00,-144.00,-9.60,0 -129.60,-9.60,10.62,0.00,1.00,43.20,-9.60,0 -124.80,-9.60,10.64,0.00,1.00,-134.40,-9.60,0 -120.00,-14.40,10.66,0.00,1.00,52.80,-9.60,0 -115.20,-14.40,10.68,0.00,1.00,-124.80,-9.60,0 -110.40,-14.40,10.70,0.00,1.00,62.40,-9.60,0 -105.60,-14.40,10.72,0.00,1.00,-115.20,-14.40,0 -100.80,-14.40,10.74,0.00,1.00,72.00,-14.40,0 -96.00,-14.40,10.77,0.00,1.00,-100.80,-14.40,0 -91.20,-14.40,10.79,0.00,1.00,81.60,-14.40,0 -86.40,-14.40,10.81,0.00,1.00,-91.20,-14.40,0 -81.60,-14.40,10.83,0.00,1.00,96.00,-14.40,0 -76.80,-14.40,10.85,0.00,1.00,-81.60,-14.40,0 -72.00,-14.40,10.87,0.00,1.00,105.60,-14.40,0 -67.20,-14.40,10.89,0.00,1.00,-67.20,-14.40,0 -62.40,-14.40,10.92,0.00,1.00,115.20,-14.40,0 -57.60,-14.40,10.94,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,10.96,0.00,1.00,124.80,-9.60,0 -48.00,-9.60,10.98,0.00,1.00,-48.00,-9.60,0 -43.20,-9.60,11.00,0.00,1.00,134.40,-9.60,0 -38.40,-9.60,11.02,0.00,1.00,-38.40,-9.60,0 -33.60,-9.60,11.04,0.00,1.00,144.00,-9.60,0 -28.80,-4.80,11.07,0.00,1.00,-28.80,-9.60,0 -24.00,-4.80,11.09,0.00,1.00,153.60,-4.80,0 -19.20,-4.80,11.11,0.00,1.00,-19.20,-4.80,0 -14.40,-4.80,11.13,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,11.15,0.00,1.00,-14.40,-4.80,0 -4.80,-0.00,11.17,0.00,1.00,172.80,-0.00,0 -0.00,0.00,11.19,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,11.21,0.00,1.00,0.00,0.00,0 --9.60,0.00,11.24,0.00,1.00,-177.60,0.00,0 --14.40,0.00,11.26,0.00,1.00,9.60,0.00,0 --19.20,4.80,11.28,0.00,1.00,-168.00,0.00,0 --24.00,4.80,11.30,0.00,1.00,14.40,4.80,0 --28.80,4.80,11.32,0.00,1.00,-158.40,4.80,0 --33.60,4.80,11.34,0.00,1.00,24.00,4.80,0 --38.40,4.80,11.36,0.00,1.00,-153.60,4.80,0 --43.20,4.80,11.39,0.00,1.00,33.60,4.80,0 --48.00,4.80,11.41,0.00,1.00,-144.00,4.80,0 --52.80,9.60,11.43,0.00,1.00,43.20,4.80,0 --57.60,9.60,11.45,0.00,1.00,-134.40,4.80,0 --62.40,9.60,11.47,0.00,1.00,52.80,4.80,0 --67.20,9.60,11.49,0.00,1.00,-124.80,9.60,0 --72.00,9.60,11.51,0.00,1.00,62.40,9.60,0 --76.80,9.60,11.54,0.00,1.00,-110.40,9.60,0 --81.60,9.60,11.56,0.00,1.00,72.00,9.60,0 --86.40,9.60,11.58,0.00,1.00,-100.80,9.60,0 --91.20,9.60,11.60,0.00,1.00,86.40,9.60,0 --96.00,9.60,11.62,0.00,1.00,-86.40,9.60,0 --100.80,9.60,11.64,0.00,1.00,96.00,9.60,0 --105.60,9.60,11.66,0.00,1.00,-76.80,9.60,0 --110.40,9.60,11.68,0.00,1.00,110.40,9.60,0 --115.20,9.60,11.71,0.00,1.00,-67.20,9.60,0 --120.00,9.60,11.73,0.00,1.00,120.00,9.60,0 --124.80,9.60,11.75,0.00,1.00,-52.80,9.60,0 --129.60,9.60,11.77,0.00,1.00,129.60,4.80,0 --134.40,4.80,11.79,0.00,1.00,-43.20,4.80,0 --139.20,4.80,11.81,0.00,1.00,139.20,4.80,0 --144.00,4.80,11.83,0.00,1.00,-33.60,4.80,0 --148.80,4.80,11.86,0.00,1.00,148.80,4.80,0 --153.60,4.80,11.88,0.00,1.00,-24.00,4.80,0 --158.40,4.80,11.90,0.00,1.00,158.40,4.80,0 --163.20,4.80,11.92,0.00,1.00,-19.20,4.80,0 --168.00,0.00,11.94,0.00,1.00,168.00,4.80,0 --172.80,0.00,11.96,0.00,1.00,-9.60,0.00,0 --177.60,0.00,11.98,0.00,1.00,172.80,0.00,0 -177.60,-0.00,12.01,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,12.03,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,12.05,0.00,1.00,4.80,-0.00,0 -163.20,-4.80,12.07,0.00,1.00,-168.00,-0.00,0 -158.40,-4.80,12.09,0.00,1.00,14.40,-4.80,0 -153.60,-4.80,12.11,0.00,1.00,-163.20,-4.80,0 -148.80,-4.80,12.13,0.00,1.00,24.00,-4.80,0 -144.00,-4.80,12.15,0.00,1.00,-153.60,-4.80,0 -139.20,-4.80,12.18,0.00,1.00,28.80,-4.80,0 -134.40,-4.80,12.20,0.00,1.00,-144.00,-4.80,0 -129.60,-9.60,12.22,0.00,1.00,38.40,-4.80,0 -124.80,-9.60,12.24,0.00,1.00,-134.40,-4.80,0 -120.00,-9.60,12.26,0.00,1.00,48.00,-4.80,0 -115.20,-9.60,12.28,0.00,1.00,-124.80,-9.60,0 -110.40,-9.60,12.30,0.00,1.00,57.60,-9.60,0 -105.60,-9.60,12.33,0.00,1.00,-115.20,-9.60,0 -100.80,-9.60,12.35,0.00,1.00,72.00,-9.60,0 -96.00,-9.60,12.37,0.00,1.00,-105.60,-9.60,0 -91.20,-9.60,12.39,0.00,1.00,81.60,-9.60,0 -86.40,-9.60,12.41,0.00,1.00,-91.20,-9.60,0 -81.60,-9.60,12.43,0.00,1.00,96.00,-9.60,0 -76.80,-9.60,12.45,0.00,1.00,-81.60,-9.60,0 -72.00,-9.60,12.48,0.00,1.00,105.60,-9.60,0 -67.20,-9.60,12.50,0.00,1.00,-67.20,-9.60,0 -62.40,-9.60,12.52,0.00,1.00,120.00,-9.60,0 -57.60,-9.60,12.54,0.00,1.00,-57.60,-9.60,0 -52.80,-9.60,12.56,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,12.58,0.00,1.00,-48.00,-4.80,0 -43.20,-4.80,12.60,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,12.62,0.00,1.00,-38.40,-4.80,0 -33.60,-4.80,12.65,0.00,1.00,148.80,-4.80,0 -28.80,-4.80,12.67,0.00,1.00,-28.80,-4.80,0 -24.00,-4.80,12.69,0.00,1.00,158.40,-4.80,0 -19.20,-4.80,12.71,0.00,1.00,-19.20,-4.80,0 -14.40,-0.00,12.73,0.00,1.00,163.20,-4.80,0 -9.60,-0.00,12.75,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,12.77,0.00,1.00,172.80,-0.00,0 -0.00,0.00,12.80,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,12.82,0.00,1.00,0.00,0.00,0 --9.60,0.00,12.84,0.00,1.00,-177.60,0.00,0 --14.40,0.00,12.86,0.00,1.00,9.60,0.00,0 --19.20,0.00,12.88,0.00,1.00,-168.00,0.00,0 --24.00,0.00,12.90,0.00,1.00,14.40,0.00,0 --28.80,0.00,12.92,0.00,1.00,-163.20,0.00,0 --33.60,4.80,12.95,0.00,1.00,24.00,0.00,0 --38.40,4.80,12.97,0.00,1.00,-153.60,0.00,0 --43.20,4.80,12.99,0.00,1.00,28.80,0.00,0 --48.00,4.80,13.01,0.00,1.00,-144.00,4.80,0 --52.80,4.80,13.03,0.00,1.00,38.40,4.80,0 --57.60,4.80,13.05,0.00,1.00,-134.40,4.80,0 --62.40,4.80,13.07,0.00,1.00,48.00,4.80,0 --67.20,4.80,13.09,0.00,1.00,-124.80,4.80,0 --72.00,4.80,13.12,0.00,1.00,62.40,4.80,0 --76.80,4.80,13.14,0.00,1.00,-115.20,4.80,0 --81.60,4.80,13.16,0.00,1.00,72.00,4.80,0 --86.40,4.80,13.18,0.00,1.00,-100.80,4.80,0 --91.20,4.80,13.20,0.00,1.00,86.40,4.80,0 --96.00,4.80,13.22,0.00,1.00,-86.40,4.80,0 --100.80,4.80,13.24,0.00,1.00,96.00,4.80,0 --105.60,4.80,13.27,0.00,1.00,-76.80,4.80,0 --110.40,4.80,13.29,0.00,1.00,110.40,4.80,0 --115.20,4.80,13.31,0.00,1.00,-62.40,4.80,0 --120.00,4.80,13.33,0.00,1.00,120.00,4.80,0 --124.80,4.80,13.35,0.00,1.00,-52.80,4.80,0 --129.60,4.80,13.37,0.00,1.00,134.40,4.80,0 --134.40,4.80,13.39,0.00,1.00,-43.20,4.80,0 --139.20,4.80,13.42,0.00,1.00,144.00,4.80,0 --144.00,4.80,13.44,0.00,1.00,-33.60,0.00,0 --148.80,4.80,13.46,0.00,1.00,153.60,0.00,0 --153.60,0.00,13.48,0.00,1.00,-24.00,0.00,0 --158.40,0.00,13.50,0.00,1.00,158.40,0.00,0 --163.20,0.00,13.52,0.00,1.00,-14.40,0.00,0 --168.00,0.00,13.54,0.00,1.00,168.00,0.00,0 --172.80,0.00,13.56,0.00,1.00,-9.60,0.00,0 --177.60,0.00,13.59,0.00,1.00,172.80,0.00,0 -177.60,-0.00,13.61,0.00,1.00,-0.00,0.00,0 -172.80,-0.00,13.63,0.00,1.00,-177.60,-0.00,0 -168.00,-0.00,13.65,0.00,1.00,4.80,-0.00,0 -163.20,-0.00,13.67,0.00,1.00,-172.80,-0.00,0 -158.40,-0.00,13.69,0.00,1.00,14.40,-0.00,0 -153.60,-0.00,13.71,0.00,1.00,-163.20,-0.00,0 -148.80,-4.80,13.74,0.00,1.00,19.20,-0.00,0 -144.00,-4.80,13.76,0.00,1.00,-153.60,-0.00,0 -139.20,-4.80,13.78,0.00,1.00,28.80,-0.00,0 -134.40,-4.80,13.80,0.00,1.00,-148.80,-0.00,0 -129.60,-4.80,13.82,0.00,1.00,38.40,-4.80,0 -124.80,-4.80,13.84,0.00,1.00,-139.20,-4.80,0 -120.00,-4.80,13.86,0.00,1.00,48.00,-4.80,0 -115.20,-4.80,13.89,0.00,1.00,-129.60,-4.80,0 -110.40,-4.80,13.91,0.00,1.00,57.60,-4.80,0 -105.60,-4.80,13.93,0.00,1.00,-115.20,-4.80,0 -100.80,-4.80,13.95,0.00,1.00,67.20,-4.80,0 -96.00,-4.80,13.97,0.00,1.00,-105.60,-4.80,0 -91.20,-4.80,13.99,0.00,1.00,81.60,-4.80,0 -86.40,-4.80,14.01,0.00,1.00,-91.20,-4.80,0 -81.60,-4.80,14.03,0.00,1.00,96.00,-4.80,0 -76.80,-4.80,14.06,0.00,1.00,-76.80,-4.80,0 -72.00,-4.80,14.08,0.00,1.00,105.60,-4.80,0 -67.20,-4.80,14.10,0.00,1.00,-67.20,-4.80,0 -62.40,-4.80,14.12,0.00,1.00,120.00,-4.80,0 -57.60,-4.80,14.14,0.00,1.00,-52.80,-4.80,0 -52.80,-4.80,14.16,0.00,1.00,129.60,-4.80,0 -48.00,-4.80,14.18,0.00,1.00,-43.20,-4.80,0 -43.20,-4.80,14.21,0.00,1.00,139.20,-4.80,0 -38.40,-4.80,14.23,0.00,1.00,-33.60,-4.80,0 -33.60,-4.80,14.25,0.00,1.00,148.80,-0.00,0 -28.80,-0.00,14.27,0.00,1.00,-28.80,-0.00,0 -24.00,-0.00,14.29,0.00,1.00,158.40,-0.00,0 -19.20,-0.00,14.31,0.00,1.00,-19.20,-0.00,0 -14.40,-0.00,14.33,0.00,1.00,163.20,-0.00,0 -9.60,-0.00,14.36,0.00,1.00,-9.60,-0.00,0 -4.80,-0.00,14.38,0.00,1.00,172.80,-0.00,0 -0.00,0.00,14.40,0.00,1.00,-4.80,-0.00,0 --4.80,0.00,14.42,0.00,1.00,0.00,0.00,0 --9.60,0.00,14.44,0.00,1.00,-177.60,-0.00,0 --14.40,0.00,14.46,0.00,1.00,4.80,-0.00,0 --19.20,0.00,14.48,0.00,1.00,-168.00,-0.00,0 --24.00,0.00,14.50,0.00,1.00,14.40,-0.00,0 --28.80,0.00,14.53,0.00,1.00,-163.20,-0.00,0 --33.60,0.00,14.55,0.00,1.00,19.20,-0.00,0 --38.40,0.00,14.57,0.00,1.00,-153.60,-0.00,0 --43.20,0.00,14.59,0.00,1.00,28.80,-0.00,0 --48.00,0.00,14.61,0.00,1.00,-148.80,-0.00,0 --52.80,0.00,14.63,0.00,1.00,38.40,-0.00,0 --57.60,0.00,14.65,0.00,1.00,-139.20,-0.00,0 --62.40,0.00,14.68,0.00,1.00,48.00,-0.00,0 --67.20,0.00,14.70,0.00,1.00,-124.80,-0.00,0 --72.00,0.00,14.72,0.00,1.00,57.60,-0.00,0 --76.80,0.00,14.74,0.00,1.00,-115.20,-0.00,0 --81.60,0.00,14.76,0.00,1.00,72.00,-0.00,0 --86.40,0.00,14.78,0.00,1.00,-100.80,-0.00,0 --91.20,0.00,14.80,0.00,1.00,86.40,-0.00,0 --96.00,0.00,14.83,0.00,1.00,-86.40,-0.00,0 --100.80,0.00,14.85,0.00,1.00,100.80,-0.00,0 --105.60,0.00,14.87,0.00,1.00,-76.80,-0.00,0 --110.40,0.00,14.89,0.00,1.00,110.40,-0.00,0 --115.20,0.00,14.91,0.00,1.00,-62.40,-0.00,0 --120.00,0.00,14.93,0.00,1.00,124.80,-0.00,0 --124.80,0.00,14.95,0.00,1.00,-48.00,-0.00,0 --129.60,0.00,14.97,0.00,1.00,134.40,-0.00,0 --134.40,0.00,15.00,0.00,1.00,-38.40,-0.00,0 --139.20,0.00,15.02,0.00,1.00,144.00,-0.00,0 --144.00,0.00,15.04,0.00,1.00,-28.80,-0.00,0 --148.80,0.00,15.06,0.00,1.00,153.60,-0.00,0 --153.60,0.00,15.08,0.00,1.00,-24.00,-0.00,0 --158.40,0.00,15.10,0.00,1.00,163.20,-0.00,0 --163.20,0.00,15.12,0.00,1.00,-14.40,-0.00,0 --168.00,0.00,15.15,0.00,1.00,168.00,-0.00,0 --172.80,0.00,15.17,0.00,1.00,-9.60,-0.00,0 --177.60,0.00,15.19,0.00,1.00,172.80,-0.00,0 -177.60,0.00,15.21,0.00,1.00,-0.00,-0.00,0 -172.80,0.00,15.23,0.00,1.00,-177.60,0.00,0 -168.00,0.00,15.25,0.00,1.00,4.80,0.00,0 -163.20,0.00,15.27,0.00,1.00,-172.80,0.00,0 -158.40,0.00,15.30,0.00,1.00,9.60,0.00,0 -153.60,0.00,15.32,0.00,1.00,-163.20,0.00,0 -148.80,0.00,15.34,0.00,1.00,19.20,0.00,0 -144.00,0.00,15.36,0.00,1.00,-158.40,0.00,0 -139.20,0.00,15.38,0.00,1.00,28.80,0.00,0 -134.40,0.00,15.40,0.00,1.00,-148.80,0.00,0 -129.60,0.00,15.42,0.00,1.00,33.60,0.00,0 -124.80,0.00,15.44,0.00,1.00,-139.20,0.00,0 -120.00,0.00,15.47,0.00,1.00,43.20,0.00,0 -115.20,0.00,15.49,0.00,1.00,-129.60,0.00,0 -110.40,0.00,15.51,0.00,1.00,57.60,0.00,0 -105.60,0.00,15.53,0.00,1.00,-120.00,0.00,0 -100.80,0.00,15.55,0.00,1.00,67.20,0.00,0 -96.00,0.00,15.57,0.00,1.00,-105.60,0.00,0 -91.20,0.00,15.59,0.00,1.00,81.60,0.00,0 -86.40,0.00,15.62,0.00,1.00,-91.20,0.00,0 -81.60,0.00,15.64,0.00,1.00,96.00,0.00,0 -76.80,0.00,15.66,0.00,1.00,-76.80,0.00,0 -72.00,0.00,15.68,0.00,1.00,110.40,0.00,0 -67.20,0.00,15.70,0.00,1.00,-67.20,0.00,0 -62.40,0.00,15.72,0.00,1.00,120.00,0.00,0 -57.60,0.00,15.74,0.00,1.00,-52.80,0.00,0 -52.80,0.00,15.77,0.00,1.00,134.40,0.00,0 -48.00,0.00,15.79,0.00,1.00,-43.20,0.00,0 -43.20,0.00,15.81,0.00,1.00,144.00,0.00,0 -38.40,0.00,15.83,0.00,1.00,-33.60,0.00,0 -33.60,0.00,15.85,0.00,1.00,153.60,0.00,0 -28.80,0.00,15.87,0.00,1.00,-24.00,0.00,0 -24.00,0.00,15.89,0.00,1.00,158.40,0.00,0 -19.20,0.00,15.91,0.00,1.00,-19.20,0.00,0 -14.40,0.00,15.94,0.00,1.00,168.00,0.00,0 -9.60,0.00,15.96,0.00,1.00,-9.60,0.00,0 -4.80,0.00,15.98,0.00,1.00,172.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,-4.80,0.00,0 diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC32c_ISM3.csv b/scripts/testv/stvOMASA_4ISM_2MASA2TC32c_ISM3.csv deleted file mode 100644 index 14eee9b693b536fa2fd22d2813d7f588b8930b06..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_2MASA2TC32c_ISM3.csv +++ /dev/null @@ -1,1500 +0,0 @@ -0.00,0.00,0.00,0.00,1.00,-0.00,0.00,0 --177.60,-4.80,16.00,0.00,1.00,-0.00,0.00,0 -4.80,4.80,0.02,0.00,1.00,-0.00,0.00,0 --168.00,-9.60,15.98,0.00,1.00,-0.00,0.00,0 -14.40,14.40,0.04,0.00,1.00,-0.00,0.00,0 --163.20,-14.40,15.96,0.00,1.00,-0.00,0.00,0 -19.20,19.20,0.06,0.00,1.00,-0.00,0.00,0 --153.60,-24.00,15.94,0.00,1.00,-0.00,0.00,0 -28.80,24.00,0.09,0.00,1.00,-0.00,0.00,0 --148.80,-28.80,15.91,0.00,1.00,-0.00,0.00,0 -38.40,33.60,0.11,0.00,1.00,-0.00,0.00,0 --139.20,-33.60,15.89,0.00,1.00,-0.00,0.00,0 -48.00,38.40,0.13,0.00,1.00,-0.00,0.00,0 --124.80,-38.40,15.87,0.00,1.00,-0.00,0.00,0 -57.60,38.40,0.15,0.00,1.00,-0.00,0.00,0 --115.20,-43.20,15.85,0.00,1.00,-0.00,0.00,0 -72.00,43.20,0.17,0.00,1.00,-0.00,0.00,0 --100.80,-43.20,15.83,0.00,1.00,-0.00,0.00,0 -86.40,43.20,0.19,0.00,1.00,-0.00,0.00,0 --86.40,-43.20,15.81,0.00,1.00,-177.60,0.00,0 -100.80,43.20,0.21,0.00,1.00,-177.60,0.00,0 --76.80,-43.20,15.79,0.00,1.00,-177.60,0.00,0 -110.40,43.20,0.23,0.00,1.00,-177.60,0.00,0 --62.40,-43.20,15.77,0.00,1.00,-177.60,0.00,0 -124.80,38.40,0.26,0.00,1.00,-177.60,0.00,0 --52.80,-38.40,15.74,0.00,1.00,177.60,0.00,0 -134.40,33.60,0.28,0.00,1.00,177.60,0.00,0 --38.40,-33.60,15.72,0.00,1.00,177.60,0.00,0 -144.00,28.80,0.30,0.00,1.00,177.60,0.00,0 --33.60,-28.80,15.70,0.00,1.00,177.60,0.00,0 -153.60,24.00,0.32,0.00,1.00,177.60,0.00,0 --24.00,-19.20,15.68,0.00,1.00,177.60,0.00,0 -158.40,19.20,0.34,0.00,1.00,177.60,0.00,0 --14.40,-14.40,15.66,0.00,1.00,177.60,0.00,0 -168.00,9.60,0.36,0.00,1.00,177.60,0.00,0 --9.60,-9.60,15.64,0.00,1.00,177.60,0.00,0 -172.80,4.80,0.38,0.00,1.00,177.60,0.00,0 --0.00,-0.00,15.62,0.00,1.00,177.60,0.00,0 --177.60,-0.00,0.41,0.00,1.00,-177.60,0.00,0 -4.80,4.80,15.59,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,0.43,0.00,1.00,-177.60,0.00,0 -14.40,9.60,15.57,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,0.45,0.00,1.00,-177.60,0.00,0 -19.20,19.20,15.55,0.00,1.00,-177.60,0.00,0 --158.40,-19.20,0.47,0.00,1.00,-177.60,0.00,0 -28.80,24.00,15.53,0.00,1.00,-177.60,0.00,0 --148.80,-28.80,0.49,0.00,1.00,-177.60,0.00,0 -33.60,28.80,15.51,0.00,1.00,-177.60,0.00,0 --139.20,-33.60,0.51,0.00,1.00,-177.60,0.00,0 -43.20,33.60,15.49,0.00,1.00,-177.60,0.00,0 --129.60,-38.40,0.53,0.00,1.00,-177.60,0.00,0 -57.60,38.40,15.47,0.00,1.00,177.60,0.00,0 --120.00,-43.20,0.56,0.00,1.00,177.60,0.00,0 -67.20,43.20,15.44,0.00,1.00,177.60,0.00,0 --105.60,-43.20,0.58,0.00,1.00,177.60,0.00,0 -81.60,43.20,15.42,0.00,1.00,177.60,0.00,0 --91.20,-43.20,0.60,0.00,1.00,177.60,0.00,0 -96.00,43.20,15.40,0.00,1.00,0.00,0.00,0 --76.80,-43.20,0.62,0.00,1.00,0.00,0.00,0 -110.40,43.20,15.38,0.00,1.00,0.00,0.00,0 --67.20,-43.20,0.64,0.00,1.00,0.00,0.00,0 -120.00,38.40,15.36,0.00,1.00,0.00,0.00,0 --52.80,-38.40,0.66,0.00,1.00,0.00,0.00,0 -129.60,38.40,15.34,0.00,1.00,0.00,0.00,0 --43.20,-33.60,0.68,0.00,1.00,0.00,0.00,0 -144.00,33.60,15.32,0.00,1.00,0.00,0.00,0 --33.60,-28.80,0.70,0.00,1.00,0.00,0.00,0 -148.80,24.00,15.30,0.00,1.00,0.00,0.00,0 --24.00,-24.00,0.73,0.00,1.00,0.00,0.00,0 -158.40,19.20,15.27,0.00,1.00,0.00,0.00,0 --19.20,-14.40,0.75,0.00,1.00,0.00,0.00,0 -168.00,14.40,15.25,0.00,1.00,0.00,0.00,0 --9.60,-9.60,0.77,0.00,1.00,0.00,0.00,0 -172.80,4.80,15.23,0.00,1.00,0.00,0.00,0 --4.80,-4.80,0.79,0.00,1.00,0.00,0.00,0 -0.00,0.00,15.21,0.00,1.00,0.00,0.00,0 --177.60,-4.80,0.81,0.00,1.00,0.00,-0.00,0 -9.60,4.80,15.19,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,0.83,0.00,1.00,0.00,-0.00,0 -14.40,14.40,15.17,0.00,1.00,0.00,-0.00,0 --163.20,-14.40,0.85,0.00,1.00,0.00,-0.00,0 -24.00,19.20,15.15,0.00,1.00,4.80,-0.00,0 --153.60,-19.20,0.88,0.00,1.00,4.80,-4.80,0 -28.80,24.00,15.12,0.00,1.00,4.80,-4.80,0 --144.00,-24.00,0.90,0.00,1.00,4.80,-4.80,0 -38.40,28.80,15.10,0.00,1.00,4.80,-4.80,0 --134.40,-28.80,0.92,0.00,1.00,4.80,-4.80,0 -48.00,33.60,15.08,0.00,1.00,9.60,-4.80,0 --124.80,-33.60,0.94,0.00,1.00,9.60,-4.80,0 -62.40,38.40,15.06,0.00,1.00,9.60,-4.80,0 --115.20,-38.40,0.96,0.00,1.00,14.40,-4.80,0 -72.00,38.40,15.04,0.00,1.00,19.20,-4.80,0 --100.80,-38.40,0.98,0.00,1.00,28.80,-4.80,0 -86.40,38.40,15.02,0.00,1.00,52.80,-4.80,0 --86.40,-38.40,1.00,0.00,1.00,105.60,-4.80,0 -96.00,38.40,15.00,0.00,1.00,139.20,-4.80,0 --76.80,-38.40,1.03,0.00,1.00,158.40,-4.80,0 -110.40,38.40,14.97,0.00,1.00,163.20,-4.80,0 --62.40,-38.40,1.05,0.00,1.00,168.00,-4.80,0 -120.00,33.60,14.95,0.00,1.00,168.00,-4.80,0 --52.80,-33.60,1.07,0.00,1.00,172.80,-4.80,0 -134.40,33.60,14.93,0.00,1.00,172.80,-4.80,0 --43.20,-28.80,1.09,0.00,1.00,172.80,-4.80,0 -144.00,28.80,14.91,0.00,1.00,172.80,-4.80,0 --33.60,-24.00,1.11,0.00,1.00,177.60,-4.80,0 -148.80,24.00,14.89,0.00,1.00,177.60,-4.80,0 --24.00,-19.20,1.13,0.00,1.00,177.60,-4.80,0 -158.40,14.40,14.87,0.00,1.00,177.60,-0.00,0 --19.20,-14.40,1.15,0.00,1.00,177.60,-0.00,0 -168.00,9.60,14.85,0.00,1.00,177.60,-0.00,0 --9.60,-9.60,1.17,0.00,1.00,177.60,-0.00,0 -172.80,4.80,14.83,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,14.80,0.00,1.00,-177.60,0.00,0 -4.80,4.80,1.22,0.00,1.00,-177.60,0.00,0 --172.80,-9.60,14.78,0.00,1.00,-177.60,0.00,0 -14.40,9.60,1.24,0.00,1.00,-177.60,0.00,0 --163.20,-14.40,14.76,0.00,1.00,-177.60,0.00,0 -19.20,14.40,1.26,0.00,1.00,-177.60,0.00,0 --153.60,-19.20,14.74,0.00,1.00,-177.60,4.80,0 -28.80,24.00,1.28,0.00,1.00,-177.60,4.80,0 --148.80,-24.00,14.72,0.00,1.00,-177.60,4.80,0 -38.40,28.80,1.30,0.00,1.00,-172.80,4.80,0 --139.20,-28.80,14.70,0.00,1.00,-172.80,4.80,0 -48.00,33.60,1.32,0.00,1.00,-172.80,4.80,0 --124.80,-33.60,14.68,0.00,1.00,-172.80,4.80,0 -57.60,33.60,1.35,0.00,1.00,-168.00,4.80,0 --115.20,-38.40,14.65,0.00,1.00,-168.00,4.80,0 -72.00,38.40,1.37,0.00,1.00,-163.20,4.80,0 --105.60,-38.40,14.63,0.00,1.00,-158.40,4.80,0 -81.60,38.40,1.39,0.00,1.00,-139.20,4.80,0 --91.20,-38.40,14.61,0.00,1.00,-105.60,4.80,0 -96.00,38.40,1.41,0.00,1.00,-52.80,4.80,0 --76.80,-38.40,14.59,0.00,1.00,-28.80,4.80,0 -105.60,38.40,1.43,0.00,1.00,-19.20,4.80,0 --67.20,-38.40,14.57,0.00,1.00,-14.40,4.80,0 -120.00,38.40,1.45,0.00,1.00,-9.60,4.80,0 --57.60,-33.60,14.55,0.00,1.00,-9.60,4.80,0 -129.60,33.60,1.47,0.00,1.00,-9.60,4.80,0 --43.20,-28.80,14.53,0.00,1.00,-4.80,4.80,0 -139.20,28.80,1.50,0.00,1.00,-4.80,4.80,0 --33.60,-24.00,14.50,0.00,1.00,-4.80,4.80,0 -148.80,24.00,1.52,0.00,1.00,-4.80,4.80,0 --28.80,-19.20,14.48,0.00,1.00,-4.80,4.80,0 -158.40,19.20,1.54,0.00,1.00,-4.80,0.00,0 --19.20,-14.40,14.46,0.00,1.00,-0.00,0.00,0 -163.20,14.40,1.56,0.00,1.00,-0.00,0.00,0 --9.60,-9.60,14.44,0.00,1.00,-0.00,0.00,0 -172.80,4.80,1.58,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,14.42,0.00,1.00,-0.00,0.00,0 -0.00,0.00,1.60,0.00,1.00,0.00,0.00,0 --177.60,-4.80,14.40,0.00,1.00,0.00,-0.00,0 -9.60,4.80,1.62,0.00,1.00,0.00,-0.00,0 --168.00,-9.60,14.38,0.00,1.00,4.80,-0.00,0 -14.40,9.60,1.64,0.00,1.00,4.80,-4.80,0 --158.40,-14.40,14.36,0.00,1.00,4.80,-4.80,0 -24.00,14.40,1.67,0.00,1.00,4.80,-4.80,0 --153.60,-19.20,14.33,0.00,1.00,4.80,-4.80,0 -33.60,19.20,1.69,0.00,1.00,9.60,-4.80,0 --144.00,-24.00,14.31,0.00,1.00,9.60,-4.80,0 -43.20,24.00,1.71,0.00,1.00,9.60,-4.80,0 --134.40,-28.80,14.29,0.00,1.00,14.40,-9.60,0 -52.80,28.80,1.73,0.00,1.00,14.40,-9.60,0 --124.80,-28.80,14.27,0.00,1.00,19.20,-9.60,0 -62.40,33.60,1.75,0.00,1.00,24.00,-9.60,0 --110.40,-33.60,14.25,0.00,1.00,28.80,-9.60,0 -72.00,33.60,1.77,0.00,1.00,33.60,-9.60,0 --100.80,-33.60,14.23,0.00,1.00,48.00,-9.60,0 -86.40,33.60,1.79,0.00,1.00,67.20,-9.60,0 --86.40,-33.60,14.21,0.00,1.00,96.00,-9.60,0 -96.00,33.60,1.82,0.00,1.00,120.00,-9.60,0 --76.80,-33.60,14.18,0.00,1.00,139.20,-9.60,0 -110.40,33.60,1.84,0.00,1.00,148.80,-9.60,0 --67.20,-33.60,14.16,0.00,1.00,153.60,-9.60,0 -120.00,33.60,1.86,0.00,1.00,158.40,-9.60,0 --52.80,-28.80,14.14,0.00,1.00,163.20,-9.60,0 -129.60,28.80,1.88,0.00,1.00,168.00,-9.60,0 --43.20,-28.80,14.12,0.00,1.00,168.00,-9.60,0 -139.20,24.00,1.90,0.00,1.00,168.00,-4.80,0 --33.60,-24.00,14.10,0.00,1.00,172.80,-4.80,0 -148.80,19.20,1.92,0.00,1.00,172.80,-4.80,0 --24.00,-19.20,14.08,0.00,1.00,172.80,-4.80,0 -158.40,14.40,1.94,0.00,1.00,177.60,-4.80,0 --19.20,-14.40,14.06,0.00,1.00,177.60,-4.80,0 -168.00,9.60,1.97,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,14.03,0.00,1.00,177.60,-0.00,0 -172.80,4.80,1.99,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,2.01,0.00,1.00,-177.60,0.00,0 -4.80,4.80,13.99,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,2.03,0.00,1.00,-177.60,0.00,0 -14.40,9.60,13.97,0.00,1.00,-177.60,4.80,0 --163.20,-14.40,2.05,0.00,1.00,-177.60,4.80,0 -24.00,14.40,13.95,0.00,1.00,-177.60,4.80,0 --153.60,-19.20,2.07,0.00,1.00,-172.80,4.80,0 -28.80,19.20,13.93,0.00,1.00,-172.80,4.80,0 --144.00,-24.00,2.09,0.00,1.00,-172.80,4.80,0 -38.40,24.00,13.91,0.00,1.00,-168.00,4.80,0 --134.40,-28.80,2.11,0.00,1.00,-168.00,9.60,0 -48.00,28.80,13.89,0.00,1.00,-168.00,9.60,0 --124.80,-28.80,2.14,0.00,1.00,-163.20,9.60,0 -62.40,33.60,13.86,0.00,1.00,-158.40,9.60,0 --115.20,-33.60,2.16,0.00,1.00,-153.60,9.60,0 -72.00,33.60,13.84,0.00,1.00,-148.80,9.60,0 --100.80,-33.60,2.18,0.00,1.00,-139.20,9.60,0 -81.60,33.60,13.82,0.00,1.00,-120.00,9.60,0 --91.20,-33.60,2.20,0.00,1.00,-96.00,9.60,0 -96.00,33.60,13.80,0.00,1.00,-67.20,9.60,0 --81.60,-33.60,2.22,0.00,1.00,-48.00,9.60,0 -105.60,33.60,13.78,0.00,1.00,-33.60,9.60,0 --67.20,-33.60,2.24,0.00,1.00,-28.80,9.60,0 -115.20,33.60,13.76,0.00,1.00,-24.00,9.60,0 --57.60,-28.80,2.26,0.00,1.00,-19.20,9.60,0 -129.60,28.80,13.74,0.00,1.00,-14.40,9.60,0 --48.00,-28.80,2.29,0.00,1.00,-14.40,9.60,0 -139.20,24.00,13.71,0.00,1.00,-9.60,4.80,0 --38.40,-24.00,2.31,0.00,1.00,-9.60,4.80,0 -148.80,19.20,13.69,0.00,1.00,-9.60,4.80,0 --28.80,-19.20,2.33,0.00,1.00,-4.80,4.80,0 -153.60,14.40,13.67,0.00,1.00,-4.80,4.80,0 --19.20,-14.40,2.35,0.00,1.00,-4.80,4.80,0 -163.20,9.60,13.65,0.00,1.00,-4.80,4.80,0 --9.60,-9.60,2.37,0.00,1.00,-4.80,0.00,0 -172.80,4.80,13.63,0.00,1.00,-0.00,0.00,0 --4.80,-4.80,2.39,0.00,1.00,-0.00,0.00,0 -0.00,0.00,13.61,0.00,1.00,0.00,0.00,0 --177.60,-4.80,2.41,0.00,1.00,0.00,-0.00,0 -9.60,4.80,13.59,0.00,1.00,4.80,-0.00,0 --168.00,-9.60,2.44,0.00,1.00,4.80,-4.80,0 -14.40,9.60,13.56,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,2.46,0.00,1.00,4.80,-4.80,0 -24.00,14.40,13.54,0.00,1.00,9.60,-4.80,0 --148.80,-14.40,2.48,0.00,1.00,9.60,-9.60,0 -33.60,19.20,13.52,0.00,1.00,9.60,-9.60,0 --139.20,-19.20,2.50,0.00,1.00,14.40,-9.60,0 -43.20,24.00,13.50,0.00,1.00,14.40,-9.60,0 --129.60,-24.00,2.52,0.00,1.00,19.20,-9.60,0 -52.80,24.00,13.48,0.00,1.00,19.20,-14.40,0 --120.00,-28.80,2.54,0.00,1.00,24.00,-14.40,0 -62.40,28.80,13.46,0.00,1.00,28.80,-14.40,0 --110.40,-28.80,2.56,0.00,1.00,38.40,-14.40,0 -76.80,28.80,13.44,0.00,1.00,48.00,-14.40,0 --100.80,-28.80,2.58,0.00,1.00,57.60,-14.40,0 -86.40,28.80,13.42,0.00,1.00,76.80,-14.40,0 --86.40,-28.80,2.61,0.00,1.00,96.00,-14.40,0 -96.00,28.80,13.39,0.00,1.00,115.20,-14.40,0 --76.80,-28.80,2.63,0.00,1.00,129.60,-14.40,0 -105.60,28.80,13.37,0.00,1.00,139.20,-14.40,0 --67.20,-28.80,2.65,0.00,1.00,144.00,-14.40,0 -120.00,28.80,13.35,0.00,1.00,153.60,-14.40,0 --57.60,-24.00,2.67,0.00,1.00,158.40,-14.40,0 -129.60,24.00,13.33,0.00,1.00,158.40,-9.60,0 --48.00,-24.00,2.69,0.00,1.00,163.20,-9.60,0 -139.20,19.20,13.31,0.00,1.00,168.00,-9.60,0 --38.40,-19.20,2.71,0.00,1.00,168.00,-9.60,0 -148.80,19.20,13.29,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,2.73,0.00,1.00,172.80,-9.60,0 -158.40,14.40,13.27,0.00,1.00,172.80,-4.80,0 --19.20,-9.60,2.76,0.00,1.00,172.80,-4.80,0 -163.20,9.60,13.24,0.00,1.00,177.60,-4.80,0 --9.60,-4.80,2.78,0.00,1.00,177.60,-4.80,0 -172.80,4.80,13.22,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,13.20,0.00,1.00,-177.60,0.00,0 -4.80,4.80,2.82,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,13.18,0.00,1.00,-177.60,4.80,0 -14.40,9.60,2.84,0.00,1.00,-177.60,4.80,0 --163.20,-9.60,13.16,0.00,1.00,-172.80,4.80,0 -24.00,14.40,2.86,0.00,1.00,-172.80,4.80,0 --153.60,-14.40,13.14,0.00,1.00,-172.80,9.60,0 -33.60,19.20,2.88,0.00,1.00,-168.00,9.60,0 --144.00,-19.20,13.12,0.00,1.00,-168.00,9.60,0 -43.20,19.20,2.91,0.00,1.00,-168.00,9.60,0 --134.40,-24.00,13.09,0.00,1.00,-163.20,9.60,0 -52.80,24.00,2.93,0.00,1.00,-158.40,9.60,0 --124.80,-24.00,13.07,0.00,1.00,-158.40,14.40,0 -62.40,28.80,2.95,0.00,1.00,-153.60,14.40,0 --115.20,-28.80,13.05,0.00,1.00,-144.00,14.40,0 -72.00,28.80,2.97,0.00,1.00,-139.20,14.40,0 --100.80,-28.80,13.03,0.00,1.00,-129.60,14.40,0 -81.60,28.80,2.99,0.00,1.00,-115.20,14.40,0 --91.20,-28.80,13.01,0.00,1.00,-96.00,14.40,0 -96.00,28.80,3.01,0.00,1.00,-76.80,14.40,0 --81.60,-28.80,12.99,0.00,1.00,-57.60,14.40,0 -105.60,28.80,3.03,0.00,1.00,-48.00,14.40,0 --67.20,-28.80,12.97,0.00,1.00,-38.40,14.40,0 -115.20,28.80,3.05,0.00,1.00,-28.80,14.40,0 --57.60,-28.80,12.95,0.00,1.00,-24.00,14.40,0 -124.80,24.00,3.08,0.00,1.00,-19.20,14.40,0 --48.00,-24.00,12.92,0.00,1.00,-19.20,9.60,0 -134.40,24.00,3.10,0.00,1.00,-14.40,9.60,0 --38.40,-19.20,12.90,0.00,1.00,-14.40,9.60,0 -144.00,19.20,3.12,0.00,1.00,-9.60,9.60,0 --28.80,-14.40,12.88,0.00,1.00,-9.60,9.60,0 -153.60,14.40,3.14,0.00,1.00,-9.60,4.80,0 --19.20,-9.60,12.86,0.00,1.00,-4.80,4.80,0 -163.20,9.60,3.16,0.00,1.00,-4.80,4.80,0 --14.40,-9.60,12.84,0.00,1.00,-4.80,4.80,0 -172.80,4.80,3.18,0.00,1.00,-4.80,0.00,0 --4.80,-4.80,12.82,0.00,1.00,-0.00,0.00,0 -0.00,0.00,3.20,0.00,1.00,0.00,0.00,0 --177.60,-0.00,12.80,0.00,1.00,0.00,-0.00,0 -9.60,4.80,3.23,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,12.77,0.00,1.00,4.80,-4.80,0 -19.20,9.60,3.25,0.00,1.00,4.80,-4.80,0 --158.40,-9.60,12.75,0.00,1.00,9.60,-9.60,0 -24.00,14.40,3.27,0.00,1.00,9.60,-9.60,0 --148.80,-14.40,12.73,0.00,1.00,14.40,-9.60,0 -33.60,14.40,3.29,0.00,1.00,14.40,-9.60,0 --139.20,-19.20,12.71,0.00,1.00,19.20,-14.40,0 -43.20,19.20,3.31,0.00,1.00,19.20,-14.40,0 --129.60,-19.20,12.69,0.00,1.00,24.00,-14.40,0 -52.80,19.20,3.33,0.00,1.00,28.80,-14.40,0 --120.00,-24.00,12.67,0.00,1.00,33.60,-19.20,0 -67.20,24.00,3.35,0.00,1.00,38.40,-19.20,0 --110.40,-24.00,12.65,0.00,1.00,43.20,-19.20,0 -76.80,24.00,3.38,0.00,1.00,52.80,-19.20,0 --100.80,-24.00,12.62,0.00,1.00,67.20,-19.20,0 -86.40,24.00,3.40,0.00,1.00,76.80,-19.20,0 --86.40,-24.00,12.60,0.00,1.00,96.00,-19.20,0 -96.00,24.00,3.42,0.00,1.00,105.60,-19.20,0 --76.80,-24.00,12.58,0.00,1.00,120.00,-19.20,0 -105.60,24.00,3.44,0.00,1.00,129.60,-19.20,0 --67.20,-24.00,12.56,0.00,1.00,139.20,-19.20,0 -115.20,24.00,3.46,0.00,1.00,144.00,-19.20,0 --57.60,-24.00,12.54,0.00,1.00,148.80,-14.40,0 -129.60,19.20,3.48,0.00,1.00,153.60,-14.40,0 --48.00,-19.20,12.52,0.00,1.00,158.40,-14.40,0 -139.20,19.20,3.50,0.00,1.00,163.20,-14.40,0 --38.40,-14.40,12.50,0.00,1.00,163.20,-14.40,0 -148.80,14.40,3.52,0.00,1.00,168.00,-9.60,0 --28.80,-14.40,12.48,0.00,1.00,168.00,-9.60,0 -153.60,9.60,3.55,0.00,1.00,172.80,-9.60,0 --19.20,-9.60,12.45,0.00,1.00,172.80,-4.80,0 -163.20,9.60,3.57,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,12.43,0.00,1.00,177.60,-4.80,0 -172.80,4.80,3.59,0.00,1.00,177.60,-0.00,0 --0.00,-0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,3.61,0.00,1.00,-177.60,0.00,0 -4.80,4.80,12.39,0.00,1.00,-177.60,0.00,0 --168.00,-4.80,3.63,0.00,1.00,-177.60,4.80,0 -14.40,9.60,12.37,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,3.65,0.00,1.00,-172.80,4.80,0 -24.00,9.60,12.35,0.00,1.00,-172.80,9.60,0 --153.60,-14.40,3.67,0.00,1.00,-168.00,9.60,0 -33.60,14.40,12.33,0.00,1.00,-168.00,9.60,0 --144.00,-14.40,3.70,0.00,1.00,-163.20,14.40,0 -43.20,19.20,12.30,0.00,1.00,-163.20,14.40,0 --134.40,-19.20,3.72,0.00,1.00,-158.40,14.40,0 -52.80,19.20,12.28,0.00,1.00,-153.60,14.40,0 --124.80,-24.00,3.74,0.00,1.00,-148.80,14.40,0 -62.40,24.00,12.26,0.00,1.00,-144.00,19.20,0 --110.40,-24.00,3.76,0.00,1.00,-139.20,19.20,0 -72.00,24.00,12.24,0.00,1.00,-129.60,19.20,0 --100.80,-24.00,3.78,0.00,1.00,-120.00,19.20,0 -81.60,24.00,12.22,0.00,1.00,-105.60,19.20,0 --91.20,-24.00,3.80,0.00,1.00,-96.00,19.20,0 -96.00,24.00,12.20,0.00,1.00,-76.80,19.20,0 --81.60,-24.00,3.82,0.00,1.00,-67.20,19.20,0 -105.60,24.00,12.18,0.00,1.00,-52.80,19.20,0 --72.00,-24.00,3.85,0.00,1.00,-43.20,19.20,0 -115.20,24.00,12.15,0.00,1.00,-38.40,19.20,0 --57.60,-24.00,3.87,0.00,1.00,-33.60,19.20,0 -124.80,19.20,12.13,0.00,1.00,-28.80,14.40,0 --48.00,-19.20,3.89,0.00,1.00,-24.00,14.40,0 -134.40,19.20,12.11,0.00,1.00,-19.20,14.40,0 --38.40,-19.20,3.91,0.00,1.00,-19.20,14.40,0 -144.00,14.40,12.09,0.00,1.00,-14.40,9.60,0 --28.80,-14.40,3.93,0.00,1.00,-14.40,9.60,0 -153.60,14.40,12.07,0.00,1.00,-9.60,9.60,0 --24.00,-9.60,3.95,0.00,1.00,-9.60,9.60,0 -163.20,9.60,12.05,0.00,1.00,-4.80,4.80,0 --14.40,-4.80,3.97,0.00,1.00,-4.80,4.80,0 -172.80,4.80,12.03,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,3.99,0.00,1.00,-0.00,0.00,0 -0.00,0.00,12.01,0.00,1.00,0.00,0.00,0 --177.60,-0.00,4.02,0.00,1.00,0.00,-0.00,0 -9.60,4.80,11.98,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,4.04,0.00,1.00,4.80,-4.80,0 -19.20,4.80,11.96,0.00,1.00,9.60,-9.60,0 --158.40,-9.60,4.06,0.00,1.00,9.60,-9.60,0 -28.80,9.60,11.94,0.00,1.00,14.40,-9.60,0 --148.80,-9.60,4.08,0.00,1.00,14.40,-14.40,0 -38.40,14.40,11.92,0.00,1.00,19.20,-14.40,0 --139.20,-14.40,4.10,0.00,1.00,19.20,-14.40,0 -48.00,14.40,11.90,0.00,1.00,24.00,-19.20,0 --129.60,-14.40,4.12,0.00,1.00,28.80,-19.20,0 -57.60,19.20,11.88,0.00,1.00,33.60,-19.20,0 --120.00,-19.20,4.14,0.00,1.00,38.40,-19.20,0 -67.20,19.20,11.86,0.00,1.00,43.20,-24.00,0 --110.40,-19.20,4.17,0.00,1.00,52.80,-24.00,0 -76.80,19.20,11.83,0.00,1.00,62.40,-24.00,0 --100.80,-19.20,4.19,0.00,1.00,72.00,-24.00,0 -86.40,19.20,11.81,0.00,1.00,81.60,-24.00,0 --86.40,-19.20,4.21,0.00,1.00,91.20,-24.00,0 -96.00,19.20,11.79,0.00,1.00,105.60,-24.00,0 --76.80,-19.20,4.23,0.00,1.00,115.20,-24.00,0 -105.60,19.20,11.77,0.00,1.00,124.80,-24.00,0 --67.20,-19.20,4.25,0.00,1.00,134.40,-24.00,0 -115.20,19.20,11.75,0.00,1.00,139.20,-19.20,0 --57.60,-19.20,4.27,0.00,1.00,144.00,-19.20,0 -124.80,19.20,11.73,0.00,1.00,148.80,-19.20,0 --48.00,-14.40,4.29,0.00,1.00,153.60,-19.20,0 -134.40,14.40,11.71,0.00,1.00,158.40,-19.20,0 --38.40,-14.40,4.32,0.00,1.00,158.40,-14.40,0 -144.00,14.40,11.68,0.00,1.00,163.20,-14.40,0 --28.80,-9.60,4.34,0.00,1.00,168.00,-14.40,0 -153.60,9.60,11.66,0.00,1.00,168.00,-9.60,0 --19.20,-9.60,4.36,0.00,1.00,172.80,-9.60,0 -163.20,4.80,11.64,0.00,1.00,172.80,-4.80,0 --9.60,-4.80,4.38,0.00,1.00,172.80,-4.80,0 -172.80,4.80,11.62,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,11.60,0.00,1.00,-177.60,0.00,0 -4.80,4.80,4.42,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,11.58,0.00,1.00,-172.80,4.80,0 -14.40,4.80,4.44,0.00,1.00,-172.80,4.80,0 --158.40,-9.60,11.56,0.00,1.00,-172.80,9.60,0 -24.00,9.60,4.46,0.00,1.00,-168.00,9.60,0 --148.80,-9.60,11.54,0.00,1.00,-168.00,14.40,0 -33.60,14.40,4.49,0.00,1.00,-163.20,14.40,0 --139.20,-14.40,11.51,0.00,1.00,-158.40,14.40,0 -43.20,14.40,4.51,0.00,1.00,-158.40,19.20,0 --129.60,-14.40,11.49,0.00,1.00,-153.60,19.20,0 -52.80,19.20,4.53,0.00,1.00,-148.80,19.20,0 --120.00,-19.20,11.47,0.00,1.00,-144.00,19.20,0 -62.40,19.20,4.55,0.00,1.00,-139.20,19.20,0 --110.40,-19.20,11.45,0.00,1.00,-134.40,24.00,0 -72.00,19.20,4.57,0.00,1.00,-124.80,24.00,0 --100.80,-19.20,11.43,0.00,1.00,-115.20,24.00,0 -81.60,19.20,4.59,0.00,1.00,-105.60,24.00,0 --91.20,-19.20,11.41,0.00,1.00,-91.20,24.00,0 -96.00,19.20,4.61,0.00,1.00,-81.60,24.00,0 --81.60,-19.20,11.39,0.00,1.00,-72.00,24.00,0 -105.60,19.20,4.64,0.00,1.00,-62.40,24.00,0 --72.00,-19.20,11.36,0.00,1.00,-52.80,24.00,0 -115.20,19.20,4.66,0.00,1.00,-43.20,24.00,0 --62.40,-19.20,11.34,0.00,1.00,-38.40,19.20,0 -124.80,19.20,4.68,0.00,1.00,-33.60,19.20,0 --52.80,-14.40,11.32,0.00,1.00,-28.80,19.20,0 -134.40,14.40,4.70,0.00,1.00,-24.00,19.20,0 --43.20,-14.40,11.30,0.00,1.00,-19.20,14.40,0 -144.00,14.40,4.72,0.00,1.00,-19.20,14.40,0 --33.60,-9.60,11.28,0.00,1.00,-14.40,14.40,0 -153.60,9.60,4.74,0.00,1.00,-14.40,9.60,0 --24.00,-9.60,11.26,0.00,1.00,-9.60,9.60,0 -163.20,4.80,4.76,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,11.24,0.00,1.00,-4.80,4.80,0 -172.80,4.80,4.79,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,11.21,0.00,1.00,-0.00,0.00,0 -0.00,0.00,4.81,0.00,1.00,0.00,0.00,0 --177.60,-0.00,11.19,0.00,1.00,0.00,-0.00,0 -9.60,4.80,4.83,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,11.17,0.00,1.00,4.80,-4.80,0 -19.20,4.80,4.85,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,11.15,0.00,1.00,14.40,-9.60,0 -28.80,9.60,4.87,0.00,1.00,14.40,-14.40,0 --148.80,-9.60,11.13,0.00,1.00,19.20,-14.40,0 -38.40,9.60,4.89,0.00,1.00,19.20,-19.20,0 --139.20,-9.60,11.11,0.00,1.00,24.00,-19.20,0 -48.00,9.60,4.91,0.00,1.00,28.80,-19.20,0 --129.60,-14.40,11.09,0.00,1.00,33.60,-24.00,0 -57.60,14.40,4.93,0.00,1.00,38.40,-24.00,0 --120.00,-14.40,11.07,0.00,1.00,43.20,-24.00,0 -67.20,14.40,4.96,0.00,1.00,48.00,-24.00,0 --110.40,-14.40,11.04,0.00,1.00,57.60,-28.80,0 -76.80,14.40,4.98,0.00,1.00,62.40,-28.80,0 --100.80,-14.40,11.02,0.00,1.00,72.00,-28.80,0 -86.40,14.40,5.00,0.00,1.00,81.60,-28.80,0 --86.40,-14.40,11.00,0.00,1.00,91.20,-28.80,0 -96.00,14.40,5.02,0.00,1.00,100.80,-28.80,0 --76.80,-14.40,10.98,0.00,1.00,110.40,-28.80,0 -105.60,14.40,5.04,0.00,1.00,120.00,-28.80,0 --67.20,-14.40,10.96,0.00,1.00,129.60,-28.80,0 -115.20,14.40,5.06,0.00,1.00,134.40,-24.00,0 --57.60,-14.40,10.94,0.00,1.00,139.20,-24.00,0 -124.80,14.40,5.08,0.00,1.00,144.00,-24.00,0 --48.00,-14.40,10.92,0.00,1.00,148.80,-24.00,0 -134.40,9.60,5.11,0.00,1.00,153.60,-19.20,0 --38.40,-9.60,10.89,0.00,1.00,158.40,-19.20,0 -144.00,9.60,5.13,0.00,1.00,158.40,-14.40,0 --28.80,-9.60,10.87,0.00,1.00,163.20,-14.40,0 -153.60,4.80,5.15,0.00,1.00,168.00,-14.40,0 --19.20,-4.80,10.85,0.00,1.00,168.00,-9.60,0 -163.20,4.80,5.17,0.00,1.00,172.80,-9.60,0 --9.60,-4.80,10.83,0.00,1.00,172.80,-4.80,0 -172.80,0.00,5.19,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,5.21,0.00,1.00,-177.60,0.00,0 -4.80,0.00,10.79,0.00,1.00,-177.60,4.80,0 --168.00,-4.80,5.23,0.00,1.00,-172.80,4.80,0 -14.40,4.80,10.77,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,5.26,0.00,1.00,-168.00,9.60,0 -24.00,4.80,10.74,0.00,1.00,-168.00,14.40,0 --148.80,-9.60,5.28,0.00,1.00,-163.20,14.40,0 -33.60,9.60,10.72,0.00,1.00,-158.40,14.40,0 --139.20,-9.60,5.30,0.00,1.00,-158.40,19.20,0 -43.20,9.60,10.70,0.00,1.00,-153.60,19.20,0 --129.60,-14.40,5.32,0.00,1.00,-148.80,24.00,0 -52.80,14.40,10.68,0.00,1.00,-144.00,24.00,0 --120.00,-14.40,5.34,0.00,1.00,-139.20,24.00,0 -62.40,14.40,10.66,0.00,1.00,-134.40,24.00,0 --110.40,-14.40,5.36,0.00,1.00,-129.60,28.80,0 -72.00,14.40,10.64,0.00,1.00,-120.00,28.80,0 --100.80,-14.40,5.38,0.00,1.00,-110.40,28.80,0 -81.60,14.40,10.62,0.00,1.00,-100.80,28.80,0 --91.20,-14.40,5.40,0.00,1.00,-91.20,28.80,0 -96.00,14.40,10.60,0.00,1.00,-81.60,28.80,0 --81.60,-14.40,5.43,0.00,1.00,-72.00,28.80,0 -105.60,14.40,10.57,0.00,1.00,-62.40,28.80,0 --72.00,-14.40,5.45,0.00,1.00,-57.60,28.80,0 -115.20,14.40,10.55,0.00,1.00,-48.00,24.00,0 --62.40,-14.40,5.47,0.00,1.00,-43.20,24.00,0 -124.80,14.40,10.53,0.00,1.00,-38.40,24.00,0 --52.80,-14.40,5.49,0.00,1.00,-33.60,24.00,0 -134.40,9.60,10.51,0.00,1.00,-28.80,19.20,0 --43.20,-9.60,5.51,0.00,1.00,-24.00,19.20,0 -144.00,9.60,10.49,0.00,1.00,-19.20,19.20,0 --33.60,-9.60,5.53,0.00,1.00,-19.20,14.40,0 -153.60,9.60,10.47,0.00,1.00,-14.40,14.40,0 --24.00,-4.80,5.55,0.00,1.00,-14.40,9.60,0 -163.20,4.80,10.45,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,5.58,0.00,1.00,-4.80,4.80,0 -172.80,4.80,10.42,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,5.60,0.00,1.00,-0.00,0.00,0 -0.00,0.00,10.40,0.00,1.00,0.00,0.00,0 --177.60,-0.00,5.62,0.00,1.00,4.80,-4.80,0 -9.60,0.00,10.38,0.00,1.00,4.80,-4.80,0 --168.00,-4.80,5.64,0.00,1.00,9.60,-9.60,0 -19.20,4.80,10.36,0.00,1.00,9.60,-9.60,0 --158.40,-4.80,5.66,0.00,1.00,14.40,-14.40,0 -28.80,4.80,10.34,0.00,1.00,19.20,-14.40,0 --148.80,-4.80,5.68,0.00,1.00,19.20,-19.20,0 -38.40,4.80,10.32,0.00,1.00,24.00,-19.20,0 --139.20,-9.60,5.70,0.00,1.00,28.80,-24.00,0 -48.00,9.60,10.30,0.00,1.00,33.60,-24.00,0 --129.60,-9.60,5.72,0.00,1.00,38.40,-24.00,0 -57.60,9.60,10.28,0.00,1.00,43.20,-28.80,0 --120.00,-9.60,5.75,0.00,1.00,48.00,-28.80,0 -67.20,9.60,10.25,0.00,1.00,52.80,-28.80,0 --110.40,-9.60,5.77,0.00,1.00,57.60,-33.60,0 -76.80,9.60,10.23,0.00,1.00,67.20,-33.60,0 --100.80,-9.60,5.79,0.00,1.00,76.80,-33.60,0 -86.40,9.60,10.21,0.00,1.00,81.60,-33.60,0 --86.40,-9.60,5.81,0.00,1.00,91.20,-33.60,0 -96.00,9.60,10.19,0.00,1.00,100.80,-33.60,0 --76.80,-9.60,5.83,0.00,1.00,110.40,-33.60,0 -105.60,9.60,10.17,0.00,1.00,115.20,-33.60,0 --67.20,-9.60,5.85,0.00,1.00,124.80,-33.60,0 -115.20,9.60,10.15,0.00,1.00,129.60,-28.80,0 --57.60,-9.60,5.87,0.00,1.00,134.40,-28.80,0 -124.80,9.60,10.13,0.00,1.00,139.20,-28.80,0 --48.00,-9.60,5.90,0.00,1.00,144.00,-24.00,0 -134.40,9.60,10.10,0.00,1.00,148.80,-24.00,0 --38.40,-9.60,5.92,0.00,1.00,153.60,-19.20,0 -144.00,4.80,10.08,0.00,1.00,158.40,-19.20,0 --28.80,-4.80,5.94,0.00,1.00,163.20,-14.40,0 -153.60,4.80,10.06,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,5.96,0.00,1.00,168.00,-9.60,0 -163.20,4.80,10.04,0.00,1.00,172.80,-9.60,0 --9.60,-0.00,5.98,0.00,1.00,172.80,-4.80,0 -172.80,0.00,10.02,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.00,0.00,1.00,-177.60,0.00,0 -4.80,0.00,6.02,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,9.98,0.00,1.00,-172.80,4.80,0 -14.40,4.80,6.05,0.00,1.00,-172.80,9.60,0 --158.40,-4.80,9.95,0.00,1.00,-168.00,9.60,0 -24.00,4.80,6.07,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,9.93,0.00,1.00,-163.20,14.40,0 -33.60,4.80,6.09,0.00,1.00,-158.40,19.20,0 --139.20,-9.60,9.91,0.00,1.00,-153.60,19.20,0 -43.20,9.60,6.11,0.00,1.00,-148.80,24.00,0 --129.60,-9.60,9.89,0.00,1.00,-144.00,24.00,0 -52.80,9.60,6.13,0.00,1.00,-139.20,28.80,0 --120.00,-9.60,9.87,0.00,1.00,-134.40,28.80,0 -62.40,9.60,6.15,0.00,1.00,-129.60,28.80,0 --110.40,-9.60,9.85,0.00,1.00,-124.80,33.60,0 -72.00,9.60,6.17,0.00,1.00,-115.20,33.60,0 --100.80,-9.60,9.83,0.00,1.00,-110.40,33.60,0 -81.60,9.60,6.19,0.00,1.00,-100.80,33.60,0 --91.20,-9.60,9.81,0.00,1.00,-91.20,33.60,0 -96.00,9.60,6.22,0.00,1.00,-81.60,33.60,0 --81.60,-9.60,9.78,0.00,1.00,-76.80,33.60,0 -105.60,9.60,6.24,0.00,1.00,-67.20,33.60,0 --72.00,-9.60,9.76,0.00,1.00,-57.60,33.60,0 -115.20,9.60,6.26,0.00,1.00,-52.80,28.80,0 --62.40,-9.60,9.74,0.00,1.00,-48.00,28.80,0 -124.80,9.60,6.28,0.00,1.00,-43.20,28.80,0 --52.80,-9.60,9.72,0.00,1.00,-38.40,24.00,0 -134.40,9.60,6.30,0.00,1.00,-33.60,24.00,0 --43.20,-9.60,9.70,0.00,1.00,-28.80,24.00,0 -144.00,4.80,6.32,0.00,1.00,-24.00,19.20,0 --33.60,-4.80,9.68,0.00,1.00,-19.20,19.20,0 -153.60,4.80,6.34,0.00,1.00,-19.20,14.40,0 --24.00,-4.80,9.66,0.00,1.00,-14.40,14.40,0 -163.20,4.80,6.37,0.00,1.00,-9.60,9.60,0 --14.40,-4.80,9.63,0.00,1.00,-9.60,9.60,0 -172.80,0.00,6.39,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,9.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,6.41,0.00,1.00,0.00,0.00,0 --177.60,-0.00,9.59,0.00,1.00,4.80,-4.80,0 -9.60,0.00,6.43,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,9.57,0.00,1.00,9.60,-9.60,0 -19.20,0.00,6.45,0.00,1.00,14.40,-9.60,0 --158.40,-4.80,9.55,0.00,1.00,14.40,-14.40,0 -28.80,4.80,6.47,0.00,1.00,19.20,-19.20,0 --148.80,-4.80,9.53,0.00,1.00,24.00,-19.20,0 -38.40,4.80,6.49,0.00,1.00,24.00,-24.00,0 --139.20,-4.80,9.51,0.00,1.00,28.80,-24.00,0 -48.00,4.80,6.52,0.00,1.00,33.60,-28.80,0 --129.60,-4.80,9.48,0.00,1.00,38.40,-28.80,0 -57.60,4.80,6.54,0.00,1.00,43.20,-33.60,0 --120.00,-4.80,9.46,0.00,1.00,48.00,-33.60,0 -67.20,4.80,6.56,0.00,1.00,57.60,-33.60,0 --110.40,-4.80,9.44,0.00,1.00,62.40,-38.40,0 -76.80,4.80,6.58,0.00,1.00,67.20,-38.40,0 --100.80,-4.80,9.42,0.00,1.00,76.80,-38.40,0 -86.40,4.80,6.60,0.00,1.00,86.40,-38.40,0 --86.40,-4.80,9.40,0.00,1.00,91.20,-38.40,0 -96.00,4.80,6.62,0.00,1.00,100.80,-38.40,0 --76.80,-4.80,9.38,0.00,1.00,105.60,-38.40,0 -105.60,4.80,6.64,0.00,1.00,115.20,-38.40,0 --67.20,-4.80,9.36,0.00,1.00,120.00,-33.60,0 -115.20,4.80,6.66,0.00,1.00,124.80,-33.60,0 --57.60,-4.80,9.34,0.00,1.00,134.40,-33.60,0 -124.80,4.80,6.69,0.00,1.00,139.20,-28.80,0 --48.00,-4.80,9.31,0.00,1.00,144.00,-28.80,0 -134.40,4.80,6.71,0.00,1.00,148.80,-24.00,0 --38.40,-4.80,9.29,0.00,1.00,153.60,-24.00,0 -144.00,4.80,6.73,0.00,1.00,153.60,-19.20,0 --28.80,-4.80,9.27,0.00,1.00,158.40,-19.20,0 -153.60,4.80,6.75,0.00,1.00,163.20,-14.40,0 --19.20,-4.80,9.25,0.00,1.00,168.00,-14.40,0 -163.20,0.00,6.77,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,9.23,0.00,1.00,172.80,-9.60,0 -172.80,0.00,6.79,0.00,1.00,177.60,-4.80,0 --0.00,-0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,6.81,0.00,1.00,-177.60,0.00,0 -4.80,0.00,9.19,0.00,1.00,-177.60,4.80,0 --168.00,-0.00,6.84,0.00,1.00,-172.80,9.60,0 -14.40,0.00,9.16,0.00,1.00,-168.00,9.60,0 --158.40,-4.80,6.86,0.00,1.00,-168.00,14.40,0 -24.00,4.80,9.14,0.00,1.00,-163.20,14.40,0 --148.80,-4.80,6.88,0.00,1.00,-158.40,19.20,0 -33.60,4.80,9.12,0.00,1.00,-153.60,19.20,0 --139.20,-4.80,6.90,0.00,1.00,-153.60,24.00,0 -43.20,4.80,9.10,0.00,1.00,-148.80,24.00,0 --129.60,-4.80,6.92,0.00,1.00,-144.00,28.80,0 -52.80,4.80,9.08,0.00,1.00,-139.20,28.80,0 --120.00,-4.80,6.94,0.00,1.00,-134.40,33.60,0 -62.40,4.80,9.06,0.00,1.00,-124.80,33.60,0 --110.40,-4.80,6.96,0.00,1.00,-120.00,33.60,0 -72.00,4.80,9.04,0.00,1.00,-115.20,38.40,0 --100.80,-4.80,6.99,0.00,1.00,-105.60,38.40,0 -81.60,4.80,9.01,0.00,1.00,-100.80,38.40,0 --91.20,-4.80,7.01,0.00,1.00,-91.20,38.40,0 -96.00,4.80,8.99,0.00,1.00,-86.40,38.40,0 --81.60,-4.80,7.03,0.00,1.00,-76.80,38.40,0 -105.60,4.80,8.97,0.00,1.00,-67.20,38.40,0 --72.00,-4.80,7.05,0.00,1.00,-62.40,38.40,0 -115.20,4.80,8.95,0.00,1.00,-57.60,33.60,0 --62.40,-4.80,7.07,0.00,1.00,-48.00,33.60,0 -124.80,4.80,8.93,0.00,1.00,-43.20,33.60,0 --52.80,-4.80,7.09,0.00,1.00,-38.40,28.80,0 -134.40,4.80,8.91,0.00,1.00,-33.60,28.80,0 --43.20,-4.80,7.11,0.00,1.00,-28.80,24.00,0 -144.00,4.80,8.89,0.00,1.00,-24.00,24.00,0 --33.60,-4.80,7.13,0.00,1.00,-24.00,19.20,0 -153.60,4.80,8.87,0.00,1.00,-19.20,19.20,0 --24.00,-4.80,7.16,0.00,1.00,-14.40,14.40,0 -163.20,0.00,8.84,0.00,1.00,-14.40,9.60,0 --14.40,-0.00,7.18,0.00,1.00,-9.60,9.60,0 -172.80,0.00,8.82,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,7.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.80,0.00,1.00,0.00,0.00,0 --177.60,-0.00,7.22,0.00,1.00,4.80,-4.80,0 -9.60,0.00,8.78,0.00,1.00,4.80,-4.80,0 --168.00,-0.00,7.24,0.00,1.00,9.60,-9.60,0 -19.20,0.00,8.76,0.00,1.00,14.40,-14.40,0 --158.40,-0.00,7.26,0.00,1.00,19.20,-14.40,0 -28.80,0.00,8.74,0.00,1.00,19.20,-19.20,0 --148.80,-0.00,7.28,0.00,1.00,24.00,-24.00,0 -38.40,0.00,8.72,0.00,1.00,28.80,-24.00,0 --139.20,-0.00,7.31,0.00,1.00,33.60,-28.80,0 -48.00,0.00,8.69,0.00,1.00,38.40,-28.80,0 --129.60,-0.00,7.33,0.00,1.00,43.20,-33.60,0 -57.60,0.00,8.67,0.00,1.00,48.00,-33.60,0 --120.00,-0.00,7.35,0.00,1.00,52.80,-38.40,0 -67.20,0.00,8.65,0.00,1.00,57.60,-38.40,0 --110.40,-0.00,7.37,0.00,1.00,62.40,-38.40,0 -76.80,0.00,8.63,0.00,1.00,72.00,-43.20,0 --100.80,-0.00,7.39,0.00,1.00,76.80,-43.20,0 -86.40,0.00,8.61,0.00,1.00,86.40,-43.20,0 --86.40,-0.00,7.41,0.00,1.00,91.20,-43.20,0 -96.00,0.00,8.59,0.00,1.00,100.80,-43.20,0 --76.80,-0.00,7.43,0.00,1.00,105.60,-43.20,0 -105.60,0.00,8.57,0.00,1.00,110.40,-43.20,0 --67.20,-0.00,7.46,0.00,1.00,120.00,-38.40,0 -115.20,0.00,8.54,0.00,1.00,124.80,-38.40,0 --57.60,-0.00,7.48,0.00,1.00,129.60,-38.40,0 -124.80,0.00,8.52,0.00,1.00,134.40,-33.60,0 --48.00,-0.00,7.50,0.00,1.00,139.20,-33.60,0 -134.40,0.00,8.50,0.00,1.00,144.00,-28.80,0 --38.40,-0.00,7.52,0.00,1.00,148.80,-28.80,0 -144.00,0.00,8.48,0.00,1.00,153.60,-24.00,0 --28.80,-0.00,7.54,0.00,1.00,158.40,-19.20,0 -153.60,0.00,8.46,0.00,1.00,163.20,-19.20,0 --19.20,-0.00,7.56,0.00,1.00,163.20,-14.40,0 -163.20,0.00,8.44,0.00,1.00,168.00,-9.60,0 --9.60,-0.00,7.58,0.00,1.00,172.80,-9.60,0 -172.80,0.00,8.42,0.00,1.00,172.80,-4.80,0 --0.00,-0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,8.40,0.00,1.00,-177.60,0.00,0 -4.80,0.00,7.63,0.00,1.00,-172.80,4.80,0 --168.00,-0.00,8.37,0.00,1.00,-172.80,9.60,0 -14.40,0.00,7.65,0.00,1.00,-168.00,9.60,0 --158.40,-0.00,8.35,0.00,1.00,-163.20,14.40,0 -24.00,0.00,7.67,0.00,1.00,-163.20,19.20,0 --148.80,-0.00,8.33,0.00,1.00,-158.40,19.20,0 -33.60,0.00,7.69,0.00,1.00,-153.60,24.00,0 --139.20,-0.00,8.31,0.00,1.00,-148.80,28.80,0 -43.20,0.00,7.71,0.00,1.00,-144.00,28.80,0 --129.60,-0.00,8.29,0.00,1.00,-139.20,33.60,0 -52.80,0.00,7.73,0.00,1.00,-134.40,33.60,0 --120.00,-0.00,8.27,0.00,1.00,-129.60,38.40,0 -62.40,0.00,7.75,0.00,1.00,-124.80,38.40,0 --110.40,-0.00,8.25,0.00,1.00,-120.00,38.40,0 -72.00,0.00,7.78,0.00,1.00,-110.40,43.20,0 --100.80,-0.00,8.22,0.00,1.00,-105.60,43.20,0 -81.60,0.00,7.80,0.00,1.00,-100.80,43.20,0 --91.20,-0.00,8.20,0.00,1.00,-91.20,43.20,0 -96.00,0.00,7.82,0.00,1.00,-86.40,43.20,0 --81.60,-0.00,8.18,0.00,1.00,-76.80,43.20,0 -105.60,0.00,7.84,0.00,1.00,-72.00,43.20,0 --72.00,-0.00,8.16,0.00,1.00,-62.40,38.40,0 -115.20,0.00,7.86,0.00,1.00,-57.60,38.40,0 --62.40,-0.00,8.14,0.00,1.00,-52.80,38.40,0 -124.80,0.00,7.88,0.00,1.00,-48.00,33.60,0 --52.80,-0.00,8.12,0.00,1.00,-43.20,33.60,0 -134.40,0.00,7.90,0.00,1.00,-38.40,28.80,0 --43.20,-0.00,8.10,0.00,1.00,-33.60,28.80,0 -144.00,0.00,7.93,0.00,1.00,-28.80,24.00,0 --33.60,-0.00,8.07,0.00,1.00,-24.00,24.00,0 -153.60,0.00,7.95,0.00,1.00,-19.20,19.20,0 --24.00,-0.00,8.05,0.00,1.00,-19.20,14.40,0 -163.20,0.00,7.97,0.00,1.00,-14.40,14.40,0 --14.40,-0.00,8.03,0.00,1.00,-9.60,9.60,0 -172.80,0.00,7.99,0.00,1.00,-4.80,4.80,0 --4.80,-0.00,8.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,8.01,0.00,1.00,0.00,0.00,0 --177.60,0.00,7.99,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,8.03,0.00,1.00,4.80,-4.80,0 --168.00,0.00,7.97,0.00,1.00,9.60,-9.60,0 -19.20,-0.00,8.05,0.00,1.00,14.40,-14.40,0 --158.40,0.00,7.95,0.00,1.00,19.20,-19.20,0 -28.80,-0.00,8.07,0.00,1.00,24.00,-19.20,0 --148.80,0.00,7.93,0.00,1.00,24.00,-24.00,0 -38.40,-0.00,8.10,0.00,1.00,28.80,-28.80,0 --139.20,0.00,7.90,0.00,1.00,33.60,-28.80,0 -48.00,-0.00,8.12,0.00,1.00,38.40,-33.60,0 --129.60,0.00,7.88,0.00,1.00,43.20,-38.40,0 -57.60,-4.80,8.14,0.00,1.00,48.00,-38.40,0 --120.00,4.80,7.86,0.00,1.00,52.80,-43.20,0 -67.20,-4.80,8.16,0.00,1.00,62.40,-43.20,0 --110.40,4.80,7.84,0.00,1.00,67.20,-43.20,0 -76.80,-4.80,8.18,0.00,1.00,72.00,-48.00,0 --100.80,4.80,7.82,0.00,1.00,76.80,-48.00,0 -86.40,-4.80,8.20,0.00,1.00,86.40,-48.00,0 --86.40,4.80,7.80,0.00,1.00,91.20,-48.00,0 -96.00,-4.80,8.22,0.00,1.00,96.00,-48.00,0 --76.80,4.80,7.78,0.00,1.00,105.60,-48.00,0 -105.60,-4.80,8.25,0.00,1.00,110.40,-48.00,0 --67.20,4.80,7.75,0.00,1.00,115.20,-43.20,0 -115.20,-4.80,8.27,0.00,1.00,120.00,-43.20,0 --57.60,4.80,7.73,0.00,1.00,129.60,-38.40,0 -124.80,-4.80,8.29,0.00,1.00,134.40,-38.40,0 --48.00,0.00,7.71,0.00,1.00,139.20,-33.60,0 -134.40,-0.00,8.31,0.00,1.00,144.00,-33.60,0 --38.40,0.00,7.69,0.00,1.00,148.80,-28.80,0 -144.00,-0.00,8.33,0.00,1.00,153.60,-24.00,0 --28.80,0.00,7.67,0.00,1.00,153.60,-24.00,0 -153.60,-0.00,8.35,0.00,1.00,158.40,-19.20,0 --19.20,0.00,7.65,0.00,1.00,163.20,-14.40,0 -163.20,-0.00,8.37,0.00,1.00,168.00,-14.40,0 --9.60,0.00,7.63,0.00,1.00,172.80,-9.60,0 -172.80,-0.00,8.40,0.00,1.00,172.80,-4.80,0 --0.00,0.00,7.60,0.00,1.00,177.60,-0.00,0 --177.60,0.00,8.42,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,7.58,0.00,1.00,-172.80,4.80,0 --168.00,0.00,8.44,0.00,1.00,-172.80,9.60,0 -14.40,-0.00,7.56,0.00,1.00,-168.00,14.40,0 --158.40,0.00,8.46,0.00,1.00,-163.20,14.40,0 -24.00,-0.00,7.54,0.00,1.00,-158.40,19.20,0 --148.80,0.00,8.48,0.00,1.00,-153.60,24.00,0 -33.60,-0.00,7.52,0.00,1.00,-153.60,24.00,0 --139.20,0.00,8.50,0.00,1.00,-148.80,28.80,0 -43.20,-0.00,7.50,0.00,1.00,-144.00,33.60,0 --129.60,0.00,8.52,0.00,1.00,-139.20,33.60,0 -52.80,-4.80,7.48,0.00,1.00,-134.40,38.40,0 --120.00,4.80,8.54,0.00,1.00,-129.60,38.40,0 -62.40,-4.80,7.46,0.00,1.00,-120.00,43.20,0 --110.40,4.80,8.57,0.00,1.00,-115.20,43.20,0 -72.00,-4.80,7.43,0.00,1.00,-110.40,48.00,0 --100.80,4.80,8.59,0.00,1.00,-105.60,48.00,0 -81.60,-4.80,7.41,0.00,1.00,-96.00,48.00,0 --91.20,4.80,8.61,0.00,1.00,-91.20,48.00,0 -96.00,-4.80,7.39,0.00,1.00,-86.40,48.00,0 --81.60,4.80,8.63,0.00,1.00,-76.80,48.00,0 -105.60,-4.80,7.37,0.00,1.00,-72.00,48.00,0 --72.00,4.80,8.65,0.00,1.00,-67.20,43.20,0 -115.20,-4.80,7.35,0.00,1.00,-62.40,43.20,0 --62.40,4.80,8.67,0.00,1.00,-52.80,43.20,0 -124.80,-4.80,7.33,0.00,1.00,-48.00,38.40,0 --52.80,0.00,8.69,0.00,1.00,-43.20,38.40,0 -134.40,-0.00,7.31,0.00,1.00,-38.40,33.60,0 --43.20,0.00,8.72,0.00,1.00,-33.60,28.80,0 -144.00,-0.00,7.28,0.00,1.00,-28.80,28.80,0 --33.60,0.00,8.74,0.00,1.00,-24.00,24.00,0 -153.60,-0.00,7.26,0.00,1.00,-24.00,19.20,0 --24.00,0.00,8.76,0.00,1.00,-19.20,19.20,0 -163.20,-0.00,7.24,0.00,1.00,-14.40,14.40,0 --14.40,0.00,8.78,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,7.22,0.00,1.00,-4.80,4.80,0 --4.80,0.00,8.80,0.00,1.00,-4.80,4.80,0 -0.00,0.00,7.20,0.00,1.00,0.00,0.00,0 --177.60,0.00,8.82,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,7.18,0.00,1.00,9.60,-9.60,0 --168.00,0.00,8.84,0.00,1.00,9.60,-9.60,0 -19.20,-4.80,7.16,0.00,1.00,14.40,-14.40,0 --158.40,4.80,8.87,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,7.13,0.00,1.00,24.00,-24.00,0 --148.80,4.80,8.89,0.00,1.00,28.80,-24.00,0 -38.40,-4.80,7.11,0.00,1.00,33.60,-28.80,0 --139.20,4.80,8.91,0.00,1.00,38.40,-33.60,0 -48.00,-4.80,7.09,0.00,1.00,43.20,-38.40,0 --129.60,4.80,8.93,0.00,1.00,48.00,-38.40,0 -57.60,-4.80,7.07,0.00,1.00,52.80,-43.20,0 --120.00,4.80,8.95,0.00,1.00,57.60,-43.20,0 -67.20,-4.80,7.05,0.00,1.00,62.40,-48.00,0 --110.40,9.60,8.97,0.00,1.00,67.20,-48.00,0 -76.80,-9.60,7.03,0.00,1.00,72.00,-52.80,0 --100.80,9.60,8.99,0.00,1.00,81.60,-52.80,0 -86.40,-9.60,7.01,0.00,1.00,86.40,-52.80,0 --86.40,9.60,9.01,0.00,1.00,91.20,-52.80,0 -96.00,-9.60,6.99,0.00,1.00,96.00,-52.80,0 --76.80,9.60,9.04,0.00,1.00,105.60,-52.80,0 -105.60,-9.60,6.96,0.00,1.00,110.40,-48.00,0 --67.20,9.60,9.06,0.00,1.00,115.20,-48.00,0 -115.20,-4.80,6.94,0.00,1.00,120.00,-48.00,0 --57.60,4.80,9.08,0.00,1.00,124.80,-43.20,0 -124.80,-4.80,6.92,0.00,1.00,129.60,-43.20,0 --48.00,4.80,9.10,0.00,1.00,134.40,-38.40,0 -134.40,-4.80,6.90,0.00,1.00,139.20,-33.60,0 --38.40,4.80,9.12,0.00,1.00,144.00,-33.60,0 -144.00,-4.80,6.88,0.00,1.00,148.80,-28.80,0 --28.80,4.80,9.14,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,6.86,0.00,1.00,158.40,-19.20,0 --19.20,4.80,9.16,0.00,1.00,163.20,-19.20,0 -163.20,-0.00,6.84,0.00,1.00,168.00,-14.40,0 --9.60,0.00,9.19,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,6.81,0.00,1.00,172.80,-4.80,0 --0.00,0.00,9.21,0.00,1.00,177.60,-0.00,0 --177.60,0.00,6.79,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,9.23,0.00,1.00,-172.80,4.80,0 --168.00,0.00,6.77,0.00,1.00,-168.00,9.60,0 -14.40,-0.00,9.25,0.00,1.00,-168.00,14.40,0 --158.40,4.80,6.75,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,9.27,0.00,1.00,-158.40,19.20,0 --148.80,4.80,6.73,0.00,1.00,-153.60,24.00,0 -33.60,-4.80,9.29,0.00,1.00,-148.80,28.80,0 --139.20,4.80,6.71,0.00,1.00,-144.00,33.60,0 -43.20,-4.80,9.31,0.00,1.00,-139.20,33.60,0 --129.60,4.80,6.69,0.00,1.00,-134.40,38.40,0 -52.80,-4.80,9.34,0.00,1.00,-129.60,43.20,0 --120.00,4.80,6.66,0.00,1.00,-124.80,43.20,0 -62.40,-4.80,9.36,0.00,1.00,-120.00,48.00,0 --110.40,9.60,6.64,0.00,1.00,-115.20,48.00,0 -72.00,-9.60,9.38,0.00,1.00,-110.40,48.00,0 --100.80,9.60,6.62,0.00,1.00,-105.60,52.80,0 -81.60,-9.60,9.40,0.00,1.00,-96.00,52.80,0 --91.20,9.60,6.60,0.00,1.00,-91.20,52.80,0 -96.00,-9.60,9.42,0.00,1.00,-86.40,52.80,0 --81.60,9.60,6.58,0.00,1.00,-81.60,52.80,0 -105.60,-9.60,9.44,0.00,1.00,-72.00,52.80,0 --72.00,9.60,6.56,0.00,1.00,-67.20,48.00,0 -115.20,-4.80,9.46,0.00,1.00,-62.40,48.00,0 --62.40,4.80,6.54,0.00,1.00,-57.60,43.20,0 -124.80,-4.80,9.48,0.00,1.00,-52.80,43.20,0 --52.80,4.80,6.52,0.00,1.00,-48.00,38.40,0 -134.40,-4.80,9.51,0.00,1.00,-43.20,38.40,0 --43.20,4.80,6.49,0.00,1.00,-38.40,33.60,0 -144.00,-4.80,9.53,0.00,1.00,-33.60,28.80,0 --33.60,4.80,6.47,0.00,1.00,-28.80,24.00,0 -153.60,-4.80,9.55,0.00,1.00,-24.00,24.00,0 --24.00,4.80,6.45,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,9.57,0.00,1.00,-14.40,14.40,0 --14.40,0.00,6.43,0.00,1.00,-9.60,9.60,0 -172.80,-0.00,9.59,0.00,1.00,-9.60,9.60,0 --4.80,0.00,6.41,0.00,1.00,-4.80,4.80,0 -0.00,0.00,9.61,0.00,1.00,0.00,0.00,0 --177.60,0.00,6.39,0.00,1.00,4.80,-4.80,0 -9.60,-0.00,9.63,0.00,1.00,9.60,-9.60,0 --168.00,4.80,6.37,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,9.66,0.00,1.00,14.40,-14.40,0 --158.40,4.80,6.34,0.00,1.00,19.20,-19.20,0 -28.80,-4.80,9.68,0.00,1.00,24.00,-24.00,0 --148.80,4.80,6.32,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,9.70,0.00,1.00,33.60,-33.60,0 --139.20,9.60,6.30,0.00,1.00,38.40,-33.60,0 -48.00,-9.60,9.72,0.00,1.00,43.20,-38.40,0 --129.60,9.60,6.28,0.00,1.00,48.00,-43.20,0 -57.60,-9.60,9.74,0.00,1.00,52.80,-43.20,0 --120.00,9.60,6.26,0.00,1.00,57.60,-48.00,0 -67.20,-9.60,9.76,0.00,1.00,62.40,-52.80,0 --110.40,9.60,6.24,0.00,1.00,67.20,-52.80,0 -76.80,-14.40,9.78,0.00,1.00,76.80,-57.60,0 --100.80,14.40,6.22,0.00,1.00,81.60,-57.60,0 -86.40,-14.40,9.81,0.00,1.00,86.40,-57.60,0 --86.40,14.40,6.19,0.00,1.00,91.20,-57.60,0 -96.00,-14.40,9.83,0.00,1.00,96.00,-57.60,0 --76.80,14.40,6.17,0.00,1.00,100.80,-57.60,0 -105.60,-14.40,9.85,0.00,1.00,110.40,-52.80,0 --67.20,9.60,6.15,0.00,1.00,115.20,-52.80,0 -115.20,-9.60,9.87,0.00,1.00,120.00,-48.00,0 --57.60,9.60,6.13,0.00,1.00,124.80,-48.00,0 -124.80,-9.60,9.89,0.00,1.00,129.60,-43.20,0 --48.00,9.60,6.11,0.00,1.00,134.40,-38.40,0 -134.40,-9.60,9.91,0.00,1.00,139.20,-38.40,0 --38.40,9.60,6.09,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,9.93,0.00,1.00,148.80,-28.80,0 --28.80,4.80,6.07,0.00,1.00,153.60,-24.00,0 -153.60,-4.80,9.95,0.00,1.00,158.40,-24.00,0 --19.20,4.80,6.05,0.00,1.00,163.20,-19.20,0 -163.20,-4.80,9.98,0.00,1.00,168.00,-14.40,0 --9.60,4.80,6.02,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,10.00,0.00,1.00,172.80,-4.80,0 --0.00,0.00,6.00,0.00,1.00,177.60,-0.00,0 --177.60,0.00,10.02,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,5.98,0.00,1.00,-172.80,4.80,0 --168.00,4.80,10.04,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,5.96,0.00,1.00,-168.00,14.40,0 --158.40,4.80,10.06,0.00,1.00,-163.20,19.20,0 -24.00,-4.80,5.94,0.00,1.00,-158.40,24.00,0 --148.80,4.80,10.08,0.00,1.00,-153.60,24.00,0 -33.60,-9.60,5.92,0.00,1.00,-148.80,28.80,0 --139.20,9.60,10.10,0.00,1.00,-144.00,33.60,0 -43.20,-9.60,5.90,0.00,1.00,-139.20,38.40,0 --129.60,9.60,10.13,0.00,1.00,-134.40,38.40,0 -52.80,-9.60,5.87,0.00,1.00,-129.60,43.20,0 --120.00,9.60,10.15,0.00,1.00,-124.80,48.00,0 -62.40,-9.60,5.85,0.00,1.00,-120.00,48.00,0 --110.40,9.60,10.17,0.00,1.00,-115.20,52.80,0 -72.00,-14.40,5.83,0.00,1.00,-110.40,52.80,0 --100.80,14.40,10.19,0.00,1.00,-100.80,57.60,0 -81.60,-14.40,5.81,0.00,1.00,-96.00,57.60,0 --91.20,14.40,10.21,0.00,1.00,-91.20,57.60,0 -96.00,-14.40,5.79,0.00,1.00,-86.40,57.60,0 --81.60,14.40,10.23,0.00,1.00,-81.60,57.60,0 -105.60,-14.40,5.77,0.00,1.00,-76.80,57.60,0 --72.00,9.60,10.25,0.00,1.00,-67.20,52.80,0 -115.20,-9.60,5.75,0.00,1.00,-62.40,52.80,0 --62.40,9.60,10.28,0.00,1.00,-57.60,48.00,0 -124.80,-9.60,5.72,0.00,1.00,-52.80,43.20,0 --52.80,9.60,10.30,0.00,1.00,-48.00,43.20,0 -134.40,-9.60,5.70,0.00,1.00,-43.20,38.40,0 --43.20,9.60,10.32,0.00,1.00,-38.40,33.60,0 -144.00,-9.60,5.68,0.00,1.00,-33.60,33.60,0 --33.60,4.80,10.34,0.00,1.00,-28.80,28.80,0 -153.60,-4.80,5.66,0.00,1.00,-24.00,24.00,0 --24.00,4.80,10.36,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,5.64,0.00,1.00,-14.40,14.40,0 --14.40,4.80,10.38,0.00,1.00,-14.40,14.40,0 -172.80,-0.00,5.62,0.00,1.00,-9.60,9.60,0 --4.80,0.00,10.40,0.00,1.00,-4.80,4.80,0 -0.00,0.00,5.60,0.00,1.00,0.00,0.00,0 --177.60,0.00,10.42,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,5.58,0.00,1.00,9.60,-9.60,0 --168.00,4.80,10.45,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,5.55,0.00,1.00,19.20,-19.20,0 --158.40,4.80,10.47,0.00,1.00,19.20,-19.20,0 -28.80,-9.60,5.53,0.00,1.00,24.00,-24.00,0 --148.80,9.60,10.49,0.00,1.00,28.80,-28.80,0 -38.40,-9.60,5.51,0.00,1.00,33.60,-33.60,0 --139.20,9.60,10.51,0.00,1.00,38.40,-38.40,0 -48.00,-14.40,5.49,0.00,1.00,43.20,-43.20,0 --129.60,14.40,10.53,0.00,1.00,48.00,-43.20,0 -57.60,-14.40,5.47,0.00,1.00,52.80,-48.00,0 --120.00,14.40,10.55,0.00,1.00,57.60,-52.80,0 -67.20,-14.40,5.45,0.00,1.00,62.40,-52.80,0 --110.40,14.40,10.57,0.00,1.00,72.00,-57.60,0 -76.80,-19.20,5.43,0.00,1.00,76.80,-57.60,0 --100.80,19.20,10.60,0.00,1.00,81.60,-62.40,0 -86.40,-19.20,5.40,0.00,1.00,86.40,-62.40,0 --86.40,19.20,10.62,0.00,1.00,91.20,-62.40,0 -96.00,-19.20,5.38,0.00,1.00,96.00,-62.40,0 --76.80,19.20,10.64,0.00,1.00,100.80,-62.40,0 -105.60,-14.40,5.36,0.00,1.00,105.60,-57.60,0 --67.20,14.40,10.66,0.00,1.00,110.40,-57.60,0 -115.20,-14.40,5.34,0.00,1.00,120.00,-52.80,0 --57.60,14.40,10.68,0.00,1.00,124.80,-48.00,0 -124.80,-14.40,5.32,0.00,1.00,129.60,-48.00,0 --48.00,14.40,10.70,0.00,1.00,134.40,-43.20,0 -134.40,-14.40,5.30,0.00,1.00,139.20,-38.40,0 --38.40,9.60,10.72,0.00,1.00,144.00,-33.60,0 -144.00,-9.60,5.28,0.00,1.00,148.80,-33.60,0 --28.80,9.60,10.74,0.00,1.00,153.60,-28.80,0 -153.60,-9.60,5.26,0.00,1.00,158.40,-24.00,0 --19.20,4.80,10.77,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,5.23,0.00,1.00,163.20,-14.40,0 --9.60,4.80,10.79,0.00,1.00,168.00,-9.60,0 -172.80,-0.00,5.21,0.00,1.00,172.80,-4.80,0 --0.00,0.00,10.81,0.00,1.00,177.60,-0.00,0 --177.60,0.00,5.19,0.00,1.00,-177.60,0.00,0 -4.80,-0.00,10.83,0.00,1.00,-172.80,4.80,0 --168.00,4.80,5.17,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,10.85,0.00,1.00,-163.20,14.40,0 --158.40,4.80,5.15,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,10.87,0.00,1.00,-158.40,24.00,0 --148.80,9.60,5.13,0.00,1.00,-153.60,28.80,0 -33.60,-9.60,10.89,0.00,1.00,-148.80,33.60,0 --139.20,9.60,5.11,0.00,1.00,-144.00,33.60,0 -43.20,-14.40,10.92,0.00,1.00,-139.20,38.40,0 --129.60,14.40,5.08,0.00,1.00,-134.40,43.20,0 -52.80,-14.40,10.94,0.00,1.00,-129.60,48.00,0 --120.00,14.40,5.06,0.00,1.00,-124.80,48.00,0 -62.40,-14.40,10.96,0.00,1.00,-120.00,52.80,0 --110.40,14.40,5.04,0.00,1.00,-110.40,57.60,0 -72.00,-14.40,10.98,0.00,1.00,-105.60,57.60,0 --100.80,19.20,5.02,0.00,1.00,-100.80,62.40,0 -81.60,-19.20,11.00,0.00,1.00,-96.00,62.40,0 --91.20,19.20,5.00,0.00,1.00,-91.20,62.40,0 -96.00,-19.20,11.02,0.00,1.00,-86.40,62.40,0 --81.60,19.20,4.98,0.00,1.00,-81.60,62.40,0 -105.60,-19.20,11.04,0.00,1.00,-76.80,57.60,0 --72.00,14.40,4.96,0.00,1.00,-72.00,57.60,0 -115.20,-14.40,11.07,0.00,1.00,-62.40,52.80,0 --62.40,14.40,4.93,0.00,1.00,-57.60,52.80,0 -124.80,-14.40,11.09,0.00,1.00,-52.80,48.00,0 --52.80,14.40,4.91,0.00,1.00,-48.00,43.20,0 -134.40,-14.40,11.11,0.00,1.00,-43.20,43.20,0 --43.20,9.60,4.89,0.00,1.00,-38.40,38.40,0 -144.00,-9.60,11.13,0.00,1.00,-33.60,33.60,0 --33.60,9.60,4.87,0.00,1.00,-28.80,28.80,0 -153.60,-9.60,11.15,0.00,1.00,-24.00,24.00,0 --24.00,4.80,4.85,0.00,1.00,-19.20,19.20,0 -163.20,-4.80,11.17,0.00,1.00,-19.20,19.20,0 --14.40,4.80,4.83,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,11.19,0.00,1.00,-9.60,9.60,0 --4.80,0.00,4.81,0.00,1.00,-4.80,4.80,0 -0.00,0.00,11.21,0.00,1.00,0.00,0.00,0 --177.60,0.00,4.79,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,11.24,0.00,1.00,9.60,-9.60,0 --168.00,4.80,4.76,0.00,1.00,14.40,-14.40,0 -19.20,-4.80,11.26,0.00,1.00,19.20,-19.20,0 --158.40,9.60,4.74,0.00,1.00,24.00,-24.00,0 -28.80,-9.60,11.28,0.00,1.00,28.80,-24.00,0 --148.80,14.40,4.72,0.00,1.00,33.60,-28.80,0 -38.40,-14.40,11.30,0.00,1.00,38.40,-33.60,0 --139.20,14.40,4.70,0.00,1.00,43.20,-38.40,0 -48.00,-14.40,11.32,0.00,1.00,48.00,-43.20,0 --129.60,19.20,4.68,0.00,1.00,52.80,-48.00,0 -57.60,-19.20,11.34,0.00,1.00,57.60,-52.80,0 --120.00,19.20,4.66,0.00,1.00,62.40,-52.80,0 -67.20,-19.20,11.36,0.00,1.00,67.20,-57.60,0 --110.40,19.20,4.64,0.00,1.00,72.00,-62.40,0 -76.80,-19.20,11.39,0.00,1.00,76.80,-62.40,0 --100.80,24.00,4.61,0.00,1.00,81.60,-67.20,0 -86.40,-24.00,11.41,0.00,1.00,86.40,-67.20,0 --86.40,24.00,4.59,0.00,1.00,91.20,-67.20,0 -96.00,-24.00,11.43,0.00,1.00,96.00,-67.20,0 --76.80,24.00,4.57,0.00,1.00,100.80,-67.20,0 -105.60,-19.20,11.45,0.00,1.00,105.60,-62.40,0 --67.20,19.20,4.55,0.00,1.00,110.40,-57.60,0 -115.20,-19.20,11.47,0.00,1.00,115.20,-57.60,0 --57.60,19.20,4.53,0.00,1.00,120.00,-52.80,0 -124.80,-19.20,11.49,0.00,1.00,124.80,-48.00,0 --48.00,19.20,4.51,0.00,1.00,129.60,-43.20,0 -134.40,-14.40,11.51,0.00,1.00,134.40,-43.20,0 --38.40,14.40,4.49,0.00,1.00,139.20,-38.40,0 -144.00,-14.40,11.54,0.00,1.00,144.00,-33.60,0 --28.80,9.60,4.46,0.00,1.00,148.80,-28.80,0 -153.60,-9.60,11.56,0.00,1.00,153.60,-24.00,0 --19.20,9.60,4.44,0.00,1.00,158.40,-19.20,0 -163.20,-4.80,11.58,0.00,1.00,163.20,-14.40,0 --9.60,4.80,4.42,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,11.60,0.00,1.00,172.80,-4.80,0 --0.00,0.00,4.40,0.00,1.00,177.60,-0.00,0 --177.60,0.00,11.62,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,4.38,0.00,1.00,-172.80,4.80,0 --168.00,4.80,11.64,0.00,1.00,-168.00,9.60,0 -14.40,-4.80,4.36,0.00,1.00,-163.20,14.40,0 --158.40,9.60,11.66,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,4.34,0.00,1.00,-153.60,24.00,0 --148.80,9.60,11.68,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,4.32,0.00,1.00,-144.00,33.60,0 --139.20,14.40,11.71,0.00,1.00,-139.20,38.40,0 -43.20,-14.40,4.29,0.00,1.00,-134.40,43.20,0 --129.60,19.20,11.73,0.00,1.00,-129.60,43.20,0 -52.80,-19.20,4.27,0.00,1.00,-124.80,48.00,0 --120.00,19.20,11.75,0.00,1.00,-120.00,52.80,0 -62.40,-19.20,4.25,0.00,1.00,-115.20,57.60,0 --110.40,19.20,11.77,0.00,1.00,-110.40,57.60,0 -72.00,-19.20,4.23,0.00,1.00,-105.60,62.40,0 --100.80,24.00,11.79,0.00,1.00,-100.80,67.20,0 -81.60,-24.00,4.21,0.00,1.00,-96.00,67.20,0 --91.20,24.00,11.81,0.00,1.00,-91.20,67.20,0 -96.00,-24.00,4.19,0.00,1.00,-86.40,67.20,0 --81.60,24.00,11.83,0.00,1.00,-81.60,67.20,0 -105.60,-19.20,4.17,0.00,1.00,-76.80,62.40,0 --72.00,19.20,11.86,0.00,1.00,-72.00,62.40,0 -115.20,-19.20,4.14,0.00,1.00,-67.20,57.60,0 --62.40,19.20,11.88,0.00,1.00,-62.40,52.80,0 -124.80,-19.20,4.12,0.00,1.00,-57.60,52.80,0 --52.80,19.20,11.90,0.00,1.00,-52.80,48.00,0 -134.40,-14.40,4.10,0.00,1.00,-48.00,43.20,0 --43.20,14.40,11.92,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,4.08,0.00,1.00,-38.40,33.60,0 --33.60,14.40,11.94,0.00,1.00,-33.60,28.80,0 -153.60,-9.60,4.06,0.00,1.00,-28.80,24.00,0 --24.00,9.60,11.96,0.00,1.00,-24.00,24.00,0 -163.20,-4.80,4.04,0.00,1.00,-19.20,19.20,0 --14.40,4.80,11.98,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,4.02,0.00,1.00,-9.60,9.60,0 --4.80,0.00,12.01,0.00,1.00,-4.80,4.80,0 -0.00,0.00,3.99,0.00,1.00,0.00,0.00,0 --177.60,0.00,12.03,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,3.97,0.00,1.00,9.60,-9.60,0 --168.00,4.80,12.05,0.00,1.00,14.40,-14.40,0 -19.20,-9.60,3.95,0.00,1.00,19.20,-19.20,0 --158.40,9.60,12.07,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,3.93,0.00,1.00,28.80,-28.80,0 --148.80,14.40,12.09,0.00,1.00,33.60,-33.60,0 -33.60,-14.40,3.91,0.00,1.00,38.40,-38.40,0 --139.20,19.20,12.11,0.00,1.00,43.20,-38.40,0 -43.20,-19.20,3.89,0.00,1.00,48.00,-43.20,0 --129.60,19.20,12.13,0.00,1.00,52.80,-48.00,0 -52.80,-24.00,3.87,0.00,1.00,57.60,-52.80,0 --120.00,24.00,12.15,0.00,1.00,62.40,-57.60,0 -62.40,-24.00,3.85,0.00,1.00,67.20,-62.40,0 --110.40,24.00,12.18,0.00,1.00,72.00,-62.40,0 -76.80,-24.00,3.82,0.00,1.00,76.80,-67.20,0 --100.80,28.80,12.20,0.00,1.00,81.60,-72.00,0 -86.40,-28.80,3.80,0.00,1.00,86.40,-72.00,0 --86.40,28.80,12.22,0.00,1.00,91.20,-72.00,0 -96.00,-28.80,3.78,0.00,1.00,96.00,-72.00,0 --76.80,28.80,12.24,0.00,1.00,100.80,-67.20,0 -105.60,-24.00,3.76,0.00,1.00,105.60,-67.20,0 --67.20,24.00,12.26,0.00,1.00,110.40,-62.40,0 -120.00,-24.00,3.74,0.00,1.00,115.20,-57.60,0 --57.60,24.00,12.28,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,3.72,0.00,1.00,124.80,-52.80,0 --48.00,19.20,12.30,0.00,1.00,129.60,-48.00,0 -139.20,-19.20,3.70,0.00,1.00,134.40,-43.20,0 --38.40,19.20,12.33,0.00,1.00,139.20,-38.40,0 -148.80,-14.40,3.67,0.00,1.00,144.00,-33.60,0 --28.80,14.40,12.35,0.00,1.00,148.80,-28.80,0 -158.40,-9.60,3.65,0.00,1.00,153.60,-24.00,0 --19.20,9.60,12.37,0.00,1.00,158.40,-19.20,0 -163.20,-9.60,3.63,0.00,1.00,163.20,-14.40,0 --9.60,4.80,12.39,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,3.61,0.00,1.00,172.80,-4.80,0 --0.00,0.00,12.41,0.00,1.00,177.60,-0.00,0 --177.60,0.00,3.59,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,12.43,0.00,1.00,-172.80,4.80,0 --168.00,4.80,3.57,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,12.45,0.00,1.00,-163.20,14.40,0 --158.40,9.60,3.55,0.00,1.00,-158.40,19.20,0 -24.00,-9.60,12.48,0.00,1.00,-153.60,24.00,0 --153.60,14.40,3.52,0.00,1.00,-148.80,28.80,0 -33.60,-14.40,12.50,0.00,1.00,-144.00,33.60,0 --144.00,19.20,3.50,0.00,1.00,-139.20,38.40,0 -43.20,-19.20,12.52,0.00,1.00,-134.40,43.20,0 --134.40,19.20,3.48,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,12.54,0.00,1.00,-124.80,52.80,0 --124.80,24.00,3.46,0.00,1.00,-120.00,57.60,0 -62.40,-24.00,12.56,0.00,1.00,-115.20,57.60,0 --110.40,24.00,3.44,0.00,1.00,-110.40,62.40,0 -72.00,-24.00,12.58,0.00,1.00,-105.60,67.20,0 --100.80,28.80,3.42,0.00,1.00,-100.80,67.20,0 -81.60,-28.80,12.60,0.00,1.00,-96.00,72.00,0 --91.20,28.80,3.40,0.00,1.00,-91.20,72.00,0 -96.00,-28.80,12.62,0.00,1.00,-86.40,72.00,0 --81.60,28.80,3.38,0.00,1.00,-81.60,72.00,0 -105.60,-24.00,12.65,0.00,1.00,-76.80,67.20,0 --72.00,24.00,3.35,0.00,1.00,-72.00,62.40,0 -115.20,-24.00,12.67,0.00,1.00,-67.20,62.40,0 --57.60,24.00,3.33,0.00,1.00,-62.40,57.60,0 -124.80,-24.00,12.69,0.00,1.00,-57.60,52.80,0 --48.00,19.20,3.31,0.00,1.00,-52.80,48.00,0 -134.40,-19.20,12.71,0.00,1.00,-48.00,43.20,0 --38.40,19.20,3.29,0.00,1.00,-43.20,38.40,0 -144.00,-14.40,12.73,0.00,1.00,-38.40,38.40,0 --28.80,14.40,3.27,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,12.75,0.00,1.00,-28.80,28.80,0 --24.00,9.60,3.25,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,12.77,0.00,1.00,-19.20,19.20,0 --14.40,4.80,3.23,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,12.80,0.00,1.00,-9.60,9.60,0 --4.80,0.00,3.20,0.00,1.00,-4.80,4.80,0 -0.00,0.00,12.82,0.00,1.00,0.00,0.00,0 --177.60,4.80,3.18,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,12.84,0.00,1.00,9.60,-9.60,0 --168.00,9.60,3.16,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,12.86,0.00,1.00,19.20,-19.20,0 --158.40,14.40,3.14,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,12.88,0.00,1.00,28.80,-28.80,0 --148.80,19.20,3.12,0.00,1.00,33.60,-33.60,0 -33.60,-19.20,12.90,0.00,1.00,38.40,-38.40,0 --139.20,19.20,3.10,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,12.92,0.00,1.00,48.00,-48.00,0 --129.60,24.00,3.08,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,12.95,0.00,1.00,57.60,-57.60,0 --120.00,28.80,3.05,0.00,1.00,62.40,-57.60,0 -62.40,-28.80,12.97,0.00,1.00,67.20,-62.40,0 --110.40,28.80,3.03,0.00,1.00,72.00,-67.20,0 -76.80,-28.80,12.99,0.00,1.00,76.80,-72.00,0 --100.80,33.60,3.01,0.00,1.00,81.60,-72.00,0 -86.40,-33.60,13.01,0.00,1.00,86.40,-76.80,0 --86.40,33.60,2.99,0.00,1.00,91.20,-76.80,0 -96.00,-33.60,13.03,0.00,1.00,96.00,-76.80,0 --76.80,28.80,2.97,0.00,1.00,100.80,-72.00,0 -110.40,-28.80,13.05,0.00,1.00,105.60,-72.00,0 --67.20,28.80,2.95,0.00,1.00,110.40,-67.20,0 -120.00,-28.80,13.07,0.00,1.00,115.20,-62.40,0 --57.60,28.80,2.93,0.00,1.00,120.00,-57.60,0 -129.60,-24.00,13.09,0.00,1.00,124.80,-52.80,0 --48.00,24.00,2.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,13.12,0.00,1.00,134.40,-43.20,0 --38.40,19.20,2.88,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,13.14,0.00,1.00,144.00,-33.60,0 --28.80,14.40,2.86,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,13.16,0.00,1.00,153.60,-24.00,0 --19.20,9.60,2.84,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,13.18,0.00,1.00,163.20,-14.40,0 --9.60,4.80,2.82,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,13.20,0.00,1.00,172.80,-4.80,0 --0.00,0.00,2.80,0.00,1.00,177.60,-0.00,0 --177.60,0.00,13.22,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,2.78,0.00,1.00,-172.80,4.80,0 --168.00,4.80,13.24,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,2.76,0.00,1.00,-163.20,14.40,0 --163.20,9.60,13.27,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,2.73,0.00,1.00,-153.60,24.00,0 --153.60,14.40,13.29,0.00,1.00,-148.80,28.80,0 -33.60,-19.20,2.71,0.00,1.00,-144.00,33.60,0 --144.00,19.20,13.31,0.00,1.00,-139.20,38.40,0 -43.20,-24.00,2.69,0.00,1.00,-134.40,43.20,0 --134.40,24.00,13.33,0.00,1.00,-129.60,48.00,0 -52.80,-24.00,2.67,0.00,1.00,-124.80,52.80,0 --124.80,28.80,13.35,0.00,1.00,-120.00,57.60,0 -62.40,-28.80,2.65,0.00,1.00,-115.20,62.40,0 --115.20,28.80,13.37,0.00,1.00,-110.40,67.20,0 -72.00,-28.80,2.63,0.00,1.00,-105.60,72.00,0 --100.80,28.80,13.39,0.00,1.00,-100.80,72.00,0 -81.60,-33.60,2.61,0.00,1.00,-96.00,76.80,0 --91.20,33.60,13.42,0.00,1.00,-91.20,76.80,0 -96.00,-33.60,2.58,0.00,1.00,-86.40,76.80,0 --81.60,33.60,13.44,0.00,1.00,-81.60,72.00,0 -105.60,-28.80,2.56,0.00,1.00,-76.80,72.00,0 --67.20,28.80,13.46,0.00,1.00,-72.00,67.20,0 -115.20,-28.80,2.54,0.00,1.00,-67.20,62.40,0 --57.60,28.80,13.48,0.00,1.00,-62.40,57.60,0 -124.80,-28.80,2.52,0.00,1.00,-57.60,57.60,0 --48.00,24.00,13.50,0.00,1.00,-52.80,52.80,0 -134.40,-24.00,2.50,0.00,1.00,-48.00,48.00,0 --38.40,19.20,13.52,0.00,1.00,-43.20,43.20,0 -144.00,-19.20,2.48,0.00,1.00,-38.40,38.40,0 --28.80,19.20,13.54,0.00,1.00,-33.60,33.60,0 -153.60,-14.40,2.46,0.00,1.00,-28.80,28.80,0 --19.20,14.40,13.56,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,2.44,0.00,1.00,-19.20,19.20,0 --14.40,9.60,13.59,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,2.41,0.00,1.00,-9.60,9.60,0 --4.80,4.80,13.61,0.00,1.00,-4.80,4.80,0 -0.00,0.00,2.39,0.00,1.00,0.00,0.00,0 --177.60,4.80,13.63,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,2.37,0.00,1.00,9.60,-9.60,0 --168.00,9.60,13.65,0.00,1.00,14.40,-14.40,0 -14.40,-9.60,2.35,0.00,1.00,19.20,-19.20,0 --158.40,14.40,13.67,0.00,1.00,24.00,-24.00,0 -24.00,-14.40,2.33,0.00,1.00,28.80,-28.80,0 --153.60,19.20,13.69,0.00,1.00,33.60,-33.60,0 -33.60,-24.00,2.31,0.00,1.00,38.40,-38.40,0 --144.00,24.00,13.71,0.00,1.00,43.20,-43.20,0 -43.20,-24.00,2.29,0.00,1.00,48.00,-48.00,0 --134.40,28.80,13.74,0.00,1.00,52.80,-52.80,0 -52.80,-28.80,2.26,0.00,1.00,57.60,-57.60,0 --124.80,33.60,13.76,0.00,1.00,62.40,-62.40,0 -62.40,-33.60,2.24,0.00,1.00,67.20,-67.20,0 --110.40,33.60,13.78,0.00,1.00,72.00,-72.00,0 -72.00,-33.60,2.22,0.00,1.00,76.80,-72.00,0 --100.80,38.40,13.80,0.00,1.00,81.60,-76.80,0 -86.40,-38.40,2.20,0.00,1.00,86.40,-81.60,0 --86.40,38.40,13.82,0.00,1.00,91.20,-81.60,0 -96.00,-38.40,2.18,0.00,1.00,96.00,-81.60,0 --76.80,33.60,13.84,0.00,1.00,100.80,-76.80,0 -110.40,-33.60,2.16,0.00,1.00,105.60,-72.00,0 --67.20,33.60,13.86,0.00,1.00,110.40,-67.20,0 -120.00,-33.60,2.14,0.00,1.00,115.20,-62.40,0 --52.80,28.80,13.89,0.00,1.00,120.00,-57.60,0 -129.60,-28.80,2.11,0.00,1.00,124.80,-52.80,0 --43.20,28.80,13.91,0.00,1.00,129.60,-48.00,0 -139.20,-24.00,2.09,0.00,1.00,134.40,-43.20,0 --33.60,24.00,13.93,0.00,1.00,139.20,-38.40,0 -148.80,-19.20,2.07,0.00,1.00,144.00,-33.60,0 --24.00,19.20,13.95,0.00,1.00,148.80,-28.80,0 -158.40,-14.40,2.05,0.00,1.00,153.60,-24.00,0 --19.20,14.40,13.97,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,2.03,0.00,1.00,163.20,-14.40,0 --9.60,4.80,13.99,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,2.01,0.00,1.00,172.80,-4.80,0 --0.00,0.00,14.01,0.00,1.00,177.60,-0.00,0 --177.60,0.00,1.99,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,14.03,0.00,1.00,-172.80,4.80,0 --168.00,4.80,1.97,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,14.06,0.00,1.00,-163.20,14.40,0 --163.20,14.40,1.94,0.00,1.00,-158.40,19.20,0 -24.00,-14.40,14.08,0.00,1.00,-153.60,24.00,0 --153.60,19.20,1.92,0.00,1.00,-148.80,28.80,0 -28.80,-19.20,14.10,0.00,1.00,-144.00,33.60,0 --144.00,24.00,1.90,0.00,1.00,-139.20,38.40,0 -38.40,-24.00,14.12,0.00,1.00,-134.40,43.20,0 --134.40,28.80,1.88,0.00,1.00,-129.60,48.00,0 -48.00,-28.80,14.14,0.00,1.00,-124.80,52.80,0 --124.80,28.80,1.86,0.00,1.00,-120.00,57.60,0 -57.60,-33.60,14.16,0.00,1.00,-115.20,62.40,0 --115.20,33.60,1.84,0.00,1.00,-110.40,67.20,0 -72.00,-33.60,14.18,0.00,1.00,-105.60,72.00,0 --105.60,33.60,1.82,0.00,1.00,-100.80,76.80,0 -81.60,-38.40,14.21,0.00,1.00,-96.00,81.60,0 --91.20,38.40,1.79,0.00,1.00,-91.20,81.60,0 -96.00,-38.40,14.23,0.00,1.00,-86.40,81.60,0 --81.60,38.40,1.77,0.00,1.00,-81.60,76.80,0 -105.60,-33.60,14.25,0.00,1.00,-76.80,72.00,0 --67.20,33.60,1.75,0.00,1.00,-72.00,72.00,0 -120.00,-33.60,14.27,0.00,1.00,-67.20,67.20,0 --57.60,33.60,1.73,0.00,1.00,-62.40,62.40,0 -129.60,-28.80,14.29,0.00,1.00,-57.60,57.60,0 --48.00,28.80,1.71,0.00,1.00,-52.80,52.80,0 -139.20,-24.00,14.31,0.00,1.00,-48.00,48.00,0 --38.40,24.00,1.69,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,14.33,0.00,1.00,-38.40,38.40,0 --28.80,19.20,1.67,0.00,1.00,-33.60,33.60,0 -158.40,-14.40,14.36,0.00,1.00,-28.80,28.80,0 --19.20,14.40,1.64,0.00,1.00,-24.00,24.00,0 -163.20,-9.60,14.38,0.00,1.00,-19.20,19.20,0 --9.60,9.60,1.62,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,14.40,0.00,1.00,-9.60,9.60,0 --4.80,4.80,1.60,0.00,1.00,-4.80,4.80,0 -0.00,0.00,14.42,0.00,1.00,0.00,0.00,0 --177.60,4.80,1.58,0.00,1.00,4.80,-4.80,0 -9.60,-4.80,14.44,0.00,1.00,9.60,-9.60,0 --168.00,9.60,1.56,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,14.46,0.00,1.00,19.20,-19.20,0 --163.20,14.40,1.54,0.00,1.00,24.00,-24.00,0 -24.00,-19.20,14.48,0.00,1.00,28.80,-28.80,0 --153.60,19.20,1.52,0.00,1.00,33.60,-33.60,0 -28.80,-24.00,14.50,0.00,1.00,38.40,-38.40,0 --144.00,28.80,1.50,0.00,1.00,43.20,-43.20,0 -38.40,-28.80,14.53,0.00,1.00,48.00,-48.00,0 --134.40,33.60,1.47,0.00,1.00,52.80,-52.80,0 -48.00,-33.60,14.55,0.00,1.00,57.60,-57.60,0 --124.80,33.60,1.45,0.00,1.00,62.40,-62.40,0 -62.40,-38.40,14.57,0.00,1.00,67.20,-67.20,0 --115.20,38.40,1.43,0.00,1.00,72.00,-72.00,0 -72.00,-38.40,14.59,0.00,1.00,76.80,-76.80,0 --100.80,43.20,1.41,0.00,1.00,81.60,-81.60,0 -86.40,-43.20,14.61,0.00,1.00,86.40,-86.40,0 --86.40,43.20,1.39,0.00,1.00,91.20,-86.40,0 -96.00,-43.20,14.63,0.00,1.00,96.00,-81.60,0 --76.80,38.40,1.37,0.00,1.00,100.80,-76.80,0 -110.40,-38.40,14.65,0.00,1.00,105.60,-72.00,0 --62.40,38.40,1.35,0.00,1.00,110.40,-67.20,0 -120.00,-38.40,14.68,0.00,1.00,115.20,-62.40,0 --52.80,33.60,1.32,0.00,1.00,120.00,-57.60,0 -134.40,-33.60,14.70,0.00,1.00,124.80,-52.80,0 --43.20,28.80,1.30,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,14.72,0.00,1.00,134.40,-43.20,0 --33.60,24.00,1.28,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,14.74,0.00,1.00,144.00,-33.60,0 --24.00,19.20,1.26,0.00,1.00,148.80,-28.80,0 -158.40,-19.20,14.76,0.00,1.00,153.60,-24.00,0 --14.40,14.40,1.24,0.00,1.00,158.40,-19.20,0 -168.00,-9.60,14.78,0.00,1.00,163.20,-14.40,0 --9.60,9.60,1.22,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,14.80,0.00,1.00,172.80,-4.80,0 --0.00,0.00,1.20,0.00,1.00,177.60,-0.00,0 --177.60,0.00,14.83,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,1.17,0.00,1.00,-172.80,4.80,0 --172.80,9.60,14.85,0.00,1.00,-168.00,9.60,0 -14.40,-9.60,1.15,0.00,1.00,-163.20,14.40,0 --163.20,14.40,14.87,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,1.13,0.00,1.00,-153.60,24.00,0 --153.60,19.20,14.89,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,1.11,0.00,1.00,-144.00,33.60,0 --148.80,24.00,14.91,0.00,1.00,-139.20,38.40,0 -38.40,-28.80,1.09,0.00,1.00,-134.40,43.20,0 --139.20,28.80,14.93,0.00,1.00,-129.60,48.00,0 -48.00,-33.60,1.07,0.00,1.00,-124.80,52.80,0 --129.60,33.60,14.95,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,1.05,0.00,1.00,-115.20,62.40,0 --115.20,38.40,14.97,0.00,1.00,-110.40,67.20,0 -67.20,-38.40,1.03,0.00,1.00,-105.60,72.00,0 --105.60,38.40,15.00,0.00,1.00,-100.80,76.80,0 -81.60,-43.20,1.00,0.00,1.00,-96.00,81.60,0 --91.20,43.20,15.02,0.00,1.00,-91.20,86.40,0 -96.00,-43.20,0.98,0.00,1.00,-86.40,86.40,0 --76.80,43.20,15.04,0.00,1.00,-81.60,81.60,0 -105.60,-38.40,0.96,0.00,1.00,-76.80,76.80,0 --67.20,38.40,15.06,0.00,1.00,-72.00,72.00,0 -120.00,-38.40,0.94,0.00,1.00,-67.20,67.20,0 --52.80,33.60,15.08,0.00,1.00,-62.40,62.40,0 -129.60,-33.60,0.92,0.00,1.00,-57.60,57.60,0 --43.20,33.60,15.10,0.00,1.00,-52.80,52.80,0 -139.20,-28.80,0.90,0.00,1.00,-48.00,48.00,0 --33.60,28.80,15.12,0.00,1.00,-43.20,43.20,0 -148.80,-24.00,0.88,0.00,1.00,-38.40,38.40,0 --28.80,19.20,15.15,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,0.85,0.00,1.00,-28.80,28.80,0 --19.20,14.40,15.17,0.00,1.00,-24.00,24.00,0 -163.20,-14.40,0.83,0.00,1.00,-19.20,19.20,0 --9.60,9.60,15.19,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,0.81,0.00,1.00,-9.60,9.60,0 --4.80,4.80,15.21,0.00,1.00,-4.80,4.80,0 -0.00,0.00,0.79,0.00,1.00,0.00,0.00,0 --177.60,4.80,15.23,0.00,1.00,4.80,-4.80,0 -4.80,-4.80,0.77,0.00,1.00,9.60,-9.60,0 --168.00,9.60,15.25,0.00,1.00,14.40,-14.40,0 -14.40,-14.40,0.75,0.00,1.00,19.20,-19.20,0 --163.20,19.20,15.27,0.00,1.00,24.00,-24.00,0 -19.20,-19.20,0.73,0.00,1.00,28.80,-28.80,0 --153.60,24.00,15.30,0.00,1.00,33.60,-33.60,0 -28.80,-28.80,0.70,0.00,1.00,38.40,-38.40,0 --148.80,28.80,15.32,0.00,1.00,43.20,-43.20,0 -38.40,-33.60,0.68,0.00,1.00,48.00,-48.00,0 --139.20,33.60,15.34,0.00,1.00,52.80,-52.80,0 -48.00,-38.40,0.66,0.00,1.00,57.60,-57.60,0 --124.80,38.40,15.36,0.00,1.00,62.40,-62.40,0 -57.60,-43.20,0.64,0.00,1.00,67.20,-67.20,0 --115.20,43.20,15.38,0.00,1.00,72.00,-72.00,0 -72.00,-43.20,0.62,0.00,1.00,76.80,-76.80,0 --100.80,43.20,15.40,0.00,1.00,81.60,-81.60,0 -86.40,-48.00,0.60,0.00,1.00,86.40,-86.40,0 --86.40,48.00,15.42,0.00,1.00,91.20,-86.40,0 -100.80,-48.00,0.58,0.00,1.00,96.00,-81.60,0 --76.80,43.20,15.44,0.00,1.00,100.80,-76.80,0 -110.40,-43.20,0.56,0.00,1.00,105.60,-72.00,0 --62.40,43.20,15.47,0.00,1.00,110.40,-67.20,0 -124.80,-38.40,0.53,0.00,1.00,115.20,-62.40,0 --48.00,38.40,15.49,0.00,1.00,120.00,-57.60,0 -134.40,-38.40,0.51,0.00,1.00,124.80,-52.80,0 --38.40,33.60,15.51,0.00,1.00,129.60,-48.00,0 -144.00,-28.80,0.49,0.00,1.00,134.40,-43.20,0 --28.80,28.80,15.53,0.00,1.00,139.20,-38.40,0 -153.60,-24.00,0.47,0.00,1.00,144.00,-33.60,0 --24.00,24.00,15.55,0.00,1.00,148.80,-28.80,0 -163.20,-19.20,0.45,0.00,1.00,153.60,-24.00,0 --14.40,14.40,15.57,0.00,1.00,158.40,-19.20,0 -168.00,-14.40,0.43,0.00,1.00,163.20,-14.40,0 --9.60,9.60,15.59,0.00,1.00,168.00,-9.60,0 -172.80,-4.80,0.41,0.00,1.00,172.80,-4.80,0 --0.00,0.00,15.62,0.00,1.00,177.60,-0.00,0 --177.60,0.00,0.38,0.00,1.00,-177.60,0.00,0 -4.80,-4.80,15.64,0.00,1.00,-172.80,4.80,0 --172.80,9.60,0.36,0.00,1.00,-168.00,9.60,0 -9.60,-14.40,15.66,0.00,1.00,-163.20,14.40,0 --163.20,14.40,0.34,0.00,1.00,-158.40,19.20,0 -19.20,-19.20,15.68,0.00,1.00,-153.60,24.00,0 --158.40,24.00,0.32,0.00,1.00,-148.80,28.80,0 -28.80,-24.00,15.70,0.00,1.00,-144.00,33.60,0 --148.80,28.80,0.30,0.00,1.00,-139.20,38.40,0 -33.60,-28.80,15.72,0.00,1.00,-134.40,43.20,0 --139.20,33.60,0.28,0.00,1.00,-129.60,48.00,0 -43.20,-38.40,15.74,0.00,1.00,-124.80,52.80,0 --129.60,38.40,0.26,0.00,1.00,-120.00,57.60,0 -57.60,-38.40,15.77,0.00,1.00,-115.20,62.40,0 --120.00,43.20,0.23,0.00,1.00,-110.40,67.20,0 -67.20,-43.20,15.79,0.00,1.00,-105.60,72.00,0 --105.60,43.20,0.21,0.00,1.00,-100.80,76.80,0 -81.60,-48.00,15.81,0.00,1.00,-96.00,81.60,0 --91.20,48.00,0.19,0.00,1.00,-91.20,86.40,0 -96.00,-48.00,15.83,0.00,1.00,-86.40,86.40,0 --76.80,43.20,0.17,0.00,1.00,-81.60,81.60,0 -110.40,-43.20,15.85,0.00,1.00,-76.80,76.80,0 --67.20,43.20,0.15,0.00,1.00,-72.00,72.00,0 -120.00,-43.20,15.87,0.00,1.00,-67.20,67.20,0 --52.80,38.40,0.13,0.00,1.00,-62.40,62.40,0 -134.40,-38.40,15.89,0.00,1.00,-57.60,57.60,0 --43.20,33.60,0.11,0.00,1.00,-52.80,52.80,0 -144.00,-33.60,15.91,0.00,1.00,-48.00,48.00,0 --33.60,28.80,0.09,0.00,1.00,-43.20,43.20,0 -153.60,-28.80,15.94,0.00,1.00,-38.40,38.40,0 --24.00,24.00,0.06,0.00,1.00,-33.60,33.60,0 -158.40,-19.20,15.96,0.00,1.00,-28.80,28.80,0 --19.20,19.20,0.04,0.00,1.00,-24.00,24.00,0 -168.00,-14.40,15.98,0.00,1.00,-19.20,19.20,0 --9.60,9.60,0.02,0.00,1.00,-14.40,14.40,0 -172.80,-4.80,16.00,0.00,1.00,-9.60,9.60,0 --4.80,4.80,0.00,0.00,1.00,-4.80,4.80,0 diff --git a/scripts/testv/stvOMASA_4ISM_2MASA2TC32c_ISM4.csv b/scripts/testv/stvOMASA_4ISM_2MASA2TC32c_ISM4.csv deleted file mode 100644 index 8a14c3413ddd2dd47415bf6de3e19631f65f8f6c..0000000000000000000000000000000000000000 --- a/scripts/testv/stvOMASA_4ISM_2MASA2TC32c_ISM4.csv +++ /dev/null @@ -1,1500 +0,0 @@ --0.00,0.00,0.00,0.00,1.00,0.00,4.80,0 --0.00,4.80,0.06,0.00,1.00,4.80,9.60,0 --0.00,9.60,0.13,0.00,1.00,9.60,14.40,0 --0.00,14.40,0.19,0.00,1.00,14.40,19.20,0 --0.00,19.20,0.26,0.00,1.00,19.20,24.00,0 --0.00,24.00,0.32,0.00,1.00,24.00,28.80,0 --0.00,28.80,0.39,0.00,1.00,28.80,33.60,0 --0.00,33.60,0.45,0.00,1.00,33.60,38.40,0 --0.00,38.40,0.51,0.00,1.00,38.40,43.20,0 --0.00,43.20,0.58,0.00,1.00,43.20,48.00,0 --0.00,48.00,0.64,0.00,1.00,48.00,52.80,0 --0.00,52.80,0.71,0.00,1.00,52.80,57.60,0 --0.00,57.60,0.77,0.00,1.00,57.60,62.40,0 --0.00,62.40,0.84,0.00,1.00,62.40,67.20,0 --0.00,67.20,0.90,0.00,1.00,67.20,72.00,0 --0.00,72.00,0.96,0.00,1.00,72.00,76.80,0 --0.00,76.80,1.03,0.00,1.00,76.80,81.60,0 --0.00,81.60,1.09,0.00,1.00,81.60,86.40,0 --0.00,86.40,1.16,0.00,1.00,86.40,86.40,0 --177.60,89.20,1.22,0.00,1.00,91.20,81.60,0 --177.60,86.40,1.29,0.00,1.00,96.00,76.80,0 --177.60,81.60,1.35,0.00,1.00,100.80,72.00,0 --177.60,76.80,1.41,0.00,1.00,105.60,67.20,0 --177.60,72.00,1.48,0.00,1.00,110.40,62.40,0 --177.60,67.20,1.54,0.00,1.00,115.20,57.60,0 -177.60,62.40,1.61,0.00,1.00,120.00,52.80,0 -177.60,57.60,1.67,0.00,1.00,124.80,48.00,0 -177.60,52.80,1.73,0.00,1.00,129.60,43.20,0 -177.60,48.00,1.80,0.00,1.00,134.40,38.40,0 -177.60,43.20,1.86,0.00,1.00,139.20,33.60,0 -177.60,38.40,1.93,0.00,1.00,144.00,28.80,0 -177.60,33.60,1.99,0.00,1.00,148.80,24.00,0 -177.60,28.80,2.06,0.00,1.00,153.60,19.20,0 -177.60,24.00,2.12,0.00,1.00,158.40,14.40,0 -177.60,19.20,2.18,0.00,1.00,163.20,9.60,0 -177.60,14.40,2.25,0.00,1.00,168.00,4.80,0 -177.60,9.60,2.31,0.00,1.00,172.80,0.00,0 -177.60,4.80,2.38,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,2.44,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,2.51,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,2.57,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,2.63,0.00,1.00,-163.20,-19.20,0 --177.60,-19.20,2.70,0.00,1.00,-158.40,-24.00,0 --177.60,-24.00,2.76,0.00,1.00,-153.60,-28.80,0 --177.60,-28.80,2.83,0.00,1.00,-148.80,-33.60,0 --177.60,-33.60,2.89,0.00,1.00,-144.00,-38.40,0 --177.60,-38.40,2.96,0.00,1.00,-139.20,-43.20,0 --177.60,-48.00,3.02,0.00,1.00,-134.40,-48.00,0 --177.60,-48.00,3.08,0.00,1.00,-129.60,-52.80,0 --177.60,-52.80,3.15,0.00,1.00,-124.80,-57.60,0 --177.60,-57.60,3.21,0.00,1.00,-120.00,-62.40,0 -177.60,-62.40,3.28,0.00,1.00,-115.20,-67.20,0 -177.60,-67.20,3.34,0.00,1.00,-110.40,-72.00,0 -177.60,-76.80,3.41,0.00,1.00,-105.60,-76.80,0 -177.60,-76.80,3.47,0.00,1.00,-100.80,-81.60,0 -177.60,-86.40,3.53,0.00,1.00,-96.00,-86.40,0 -177.60,-89.20,3.60,0.00,1.00,-91.20,-86.40,0 -0.00,-86.40,3.66,0.00,1.00,-86.40,-81.60,0 -0.00,-81.60,3.73,0.00,1.00,-81.60,-76.80,0 -0.00,-76.80,3.79,0.00,1.00,-76.80,-72.00,0 -0.00,-72.00,3.86,0.00,1.00,-72.00,-67.20,0 -0.00,-67.20,3.92,0.00,1.00,-67.20,-62.40,0 -0.00,-62.40,3.98,0.00,1.00,-62.40,-57.60,0 -0.00,-57.60,4.05,0.00,1.00,-57.60,-52.80,0 -0.00,-52.80,4.11,0.00,1.00,-52.80,-48.00,0 -0.00,-48.00,4.18,0.00,1.00,-48.00,-43.20,0 -0.00,-43.20,4.24,0.00,1.00,-43.20,-38.40,0 -0.00,-38.40,4.31,0.00,1.00,-38.40,-33.60,0 -0.00,-33.60,4.37,0.00,1.00,-33.60,-28.80,0 -0.00,-28.80,4.43,0.00,1.00,-28.80,-24.00,0 -0.00,-24.00,4.50,0.00,1.00,-24.00,-19.20,0 -0.00,-19.20,4.56,0.00,1.00,-19.20,-14.40,0 -0.00,-14.40,4.63,0.00,1.00,-14.40,-9.60,0 -0.00,-9.60,4.69,0.00,1.00,-9.60,-4.80,0 -0.00,-4.80,4.76,0.00,1.00,-4.80,0.00,0 -0.00,0.00,4.82,0.00,1.00,0.00,4.80,0 -0.00,4.80,4.88,0.00,1.00,4.80,9.60,0 -0.00,9.60,4.95,0.00,1.00,9.60,14.40,0 -0.00,14.40,5.01,0.00,1.00,14.40,19.20,0 -0.00,19.20,5.08,0.00,1.00,19.20,24.00,0 -0.00,24.00,5.14,0.00,1.00,24.00,28.80,0 -4.80,28.80,5.20,0.00,1.00,28.80,33.60,0 -4.80,33.60,5.27,0.00,1.00,33.60,38.40,0 -4.80,38.40,5.33,0.00,1.00,38.40,43.20,0 -4.80,43.20,5.40,0.00,1.00,43.20,48.00,0 -4.80,48.00,5.46,0.00,1.00,48.00,52.80,0 -4.80,52.80,5.53,0.00,1.00,52.80,57.60,0 -9.60,57.60,5.59,0.00,1.00,57.60,62.40,0 -9.60,62.40,5.65,0.00,1.00,62.40,67.20,0 -9.60,67.20,5.72,0.00,1.00,67.20,72.00,0 -14.40,72.00,5.78,0.00,1.00,72.00,76.80,0 -19.20,76.80,5.85,0.00,1.00,76.80,81.60,0 -28.80,81.60,5.91,0.00,1.00,81.60,86.40,0 -52.80,86.40,5.98,0.00,1.00,86.40,86.40,0 -105.60,86.40,6.04,0.00,1.00,91.20,81.60,0 -139.20,81.60,6.10,0.00,1.00,96.00,76.80,0 -158.40,76.80,6.17,0.00,1.00,100.80,72.00,0 -163.20,72.00,6.23,0.00,1.00,105.60,67.20,0 -168.00,67.20,6.30,0.00,1.00,110.40,62.40,0 -168.00,62.40,6.36,0.00,1.00,115.20,57.60,0 -172.80,57.60,6.43,0.00,1.00,120.00,52.80,0 -172.80,52.80,6.49,0.00,1.00,124.80,48.00,0 -172.80,48.00,6.55,0.00,1.00,129.60,43.20,0 -172.80,43.20,6.62,0.00,1.00,134.40,38.40,0 -177.60,38.40,6.68,0.00,1.00,139.20,33.60,0 -177.60,33.60,6.75,0.00,1.00,144.00,28.80,0 -177.60,28.80,6.81,0.00,1.00,148.80,24.00,0 -177.60,24.00,6.88,0.00,1.00,153.60,19.20,0 -177.60,19.20,6.94,0.00,1.00,158.40,14.40,0 -177.60,14.40,7.00,0.00,1.00,163.20,9.60,0 -177.60,9.60,7.07,0.00,1.00,168.00,4.80,0 -177.60,4.80,7.13,0.00,1.00,172.80,0.00,0 -177.60,0.00,7.20,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,7.26,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,7.33,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,7.39,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,7.45,0.00,1.00,-163.20,-19.20,0 --177.60,-19.20,7.52,0.00,1.00,-158.40,-24.00,0 --177.60,-24.00,7.58,0.00,1.00,-153.60,-28.80,0 --177.60,-28.80,7.65,0.00,1.00,-148.80,-33.60,0 --177.60,-33.60,7.71,0.00,1.00,-144.00,-38.40,0 --177.60,-38.40,7.78,0.00,1.00,-139.20,-43.20,0 --172.80,-43.20,7.84,0.00,1.00,-134.40,-48.00,0 --172.80,-48.00,7.90,0.00,1.00,-129.60,-52.80,0 --172.80,-52.80,7.97,0.00,1.00,-124.80,-57.60,0 --172.80,-57.60,8.03,0.00,1.00,-120.00,-62.40,0 --168.00,-62.40,8.10,0.00,1.00,-115.20,-67.20,0 --168.00,-67.20,8.16,0.00,1.00,-110.40,-72.00,0 --163.20,-72.00,8.22,0.00,1.00,-105.60,-76.80,0 --158.40,-76.80,8.29,0.00,1.00,-100.80,-81.60,0 --139.20,-81.60,8.35,0.00,1.00,-96.00,-86.40,0 --105.60,-86.40,8.42,0.00,1.00,-91.20,-86.40,0 --52.80,-86.40,8.48,0.00,1.00,-86.40,-81.60,0 --28.80,-81.60,8.55,0.00,1.00,-81.60,-76.80,0 --19.20,-76.80,8.61,0.00,1.00,-76.80,-72.00,0 --14.40,-72.00,8.67,0.00,1.00,-72.00,-67.20,0 --9.60,-67.20,8.74,0.00,1.00,-67.20,-62.40,0 --9.60,-62.40,8.80,0.00,1.00,-62.40,-57.60,0 --9.60,-57.60,8.87,0.00,1.00,-57.60,-52.80,0 --4.80,-52.80,8.93,0.00,1.00,-52.80,-48.00,0 --4.80,-48.00,9.00,0.00,1.00,-48.00,-43.20,0 --4.80,-43.20,9.06,0.00,1.00,-43.20,-38.40,0 --4.80,-38.40,9.12,0.00,1.00,-38.40,-33.60,0 --4.80,-33.60,9.19,0.00,1.00,-33.60,-28.80,0 --4.80,-28.80,9.25,0.00,1.00,-28.80,-24.00,0 --0.00,-24.00,9.32,0.00,1.00,-24.00,-19.20,0 --0.00,-19.20,9.38,0.00,1.00,-19.20,-14.40,0 --0.00,-14.40,9.45,0.00,1.00,-14.40,-9.60,0 --0.00,-9.60,9.51,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,9.57,0.00,1.00,-4.80,0.00,0 -0.00,0.00,9.64,0.00,1.00,0.00,4.80,0 -0.00,4.80,9.70,0.00,1.00,4.80,9.60,0 -0.00,9.60,9.77,0.00,1.00,9.60,14.40,0 -4.80,14.40,9.83,0.00,1.00,14.40,19.20,0 -4.80,19.20,9.90,0.00,1.00,19.20,24.00,0 -4.80,24.00,9.96,0.00,1.00,24.00,28.80,0 -4.80,28.80,10.02,0.00,1.00,28.80,33.60,0 -4.80,33.60,10.09,0.00,1.00,33.60,38.40,0 -9.60,38.40,10.15,0.00,1.00,38.40,43.20,0 -9.60,43.20,10.22,0.00,1.00,43.20,48.00,0 -9.60,48.00,10.28,0.00,1.00,48.00,52.80,0 -14.40,52.80,10.35,0.00,1.00,52.80,57.60,0 -14.40,57.60,10.41,0.00,1.00,57.60,62.40,0 -19.20,62.40,10.47,0.00,1.00,62.40,67.20,0 -24.00,67.20,10.54,0.00,1.00,67.20,72.00,0 -28.80,72.00,10.60,0.00,1.00,72.00,72.00,0 -33.60,72.00,10.67,0.00,1.00,76.80,76.80,0 -48.00,76.80,10.73,0.00,1.00,81.60,81.60,0 -67.20,81.60,10.80,0.00,1.00,86.40,81.60,0 -96.00,81.60,10.86,0.00,1.00,91.20,81.60,0 -120.00,76.80,10.92,0.00,1.00,96.00,76.80,0 -139.20,76.80,10.99,0.00,1.00,100.80,72.00,0 -148.80,72.00,11.05,0.00,1.00,105.60,67.20,0 -153.60,67.20,11.12,0.00,1.00,110.40,62.40,0 -158.40,62.40,11.18,0.00,1.00,115.20,57.60,0 -163.20,57.60,11.24,0.00,1.00,120.00,52.80,0 -168.00,52.80,11.31,0.00,1.00,124.80,48.00,0 -168.00,48.00,11.37,0.00,1.00,129.60,43.20,0 -168.00,43.20,11.44,0.00,1.00,134.40,38.40,0 -172.80,38.40,11.50,0.00,1.00,139.20,33.60,0 -172.80,33.60,11.57,0.00,1.00,144.00,28.80,0 -172.80,28.80,11.63,0.00,1.00,148.80,24.00,0 -177.60,24.00,11.69,0.00,1.00,153.60,19.20,0 -177.60,19.20,11.76,0.00,1.00,158.40,14.40,0 -177.60,14.40,11.82,0.00,1.00,163.20,9.60,0 -177.60,9.60,11.89,0.00,1.00,168.00,4.80,0 -177.60,4.80,11.95,0.00,1.00,172.80,0.00,0 -177.60,0.00,12.02,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,12.08,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,12.14,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,12.21,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,12.27,0.00,1.00,-163.20,-19.20,0 --177.60,-19.20,12.34,0.00,1.00,-158.40,-24.00,0 --177.60,-24.00,12.40,0.00,1.00,-153.60,-28.80,0 --172.80,-28.80,12.47,0.00,1.00,-148.80,-33.60,0 --172.80,-33.60,12.53,0.00,1.00,-144.00,-38.40,0 --172.80,-38.40,12.59,0.00,1.00,-139.20,-43.20,0 --168.00,-43.20,12.66,0.00,1.00,-134.40,-48.00,0 --168.00,-48.00,12.72,0.00,1.00,-129.60,-52.80,0 --168.00,-52.80,12.79,0.00,1.00,-124.80,-57.60,0 --163.20,-57.60,12.85,0.00,1.00,-120.00,-62.40,0 --158.40,-62.40,12.92,0.00,1.00,-115.20,-67.20,0 --153.60,-67.20,12.98,0.00,1.00,-110.40,-72.00,0 --148.80,-72.00,13.04,0.00,1.00,-105.60,-76.80,0 --139.20,-76.80,13.11,0.00,1.00,-100.80,-81.60,0 --120.00,-76.80,13.17,0.00,1.00,-96.00,-81.60,0 --96.00,-81.60,13.24,0.00,1.00,-91.20,-81.60,0 --67.20,-81.60,13.30,0.00,1.00,-86.40,-76.80,0 --48.00,-76.80,13.37,0.00,1.00,-81.60,-72.00,0 --33.60,-72.00,13.43,0.00,1.00,-76.80,-72.00,0 --28.80,-72.00,13.49,0.00,1.00,-72.00,-67.20,0 --24.00,-67.20,13.56,0.00,1.00,-67.20,-62.40,0 --19.20,-62.40,13.62,0.00,1.00,-62.40,-57.60,0 --14.40,-57.60,13.69,0.00,1.00,-57.60,-52.80,0 --14.40,-52.80,13.75,0.00,1.00,-52.80,-48.00,0 --9.60,-48.00,13.82,0.00,1.00,-48.00,-43.20,0 --9.60,-43.20,13.88,0.00,1.00,-43.20,-38.40,0 --9.60,-38.40,13.94,0.00,1.00,-38.40,-33.60,0 --4.80,-33.60,14.01,0.00,1.00,-33.60,-28.80,0 --4.80,-28.80,14.07,0.00,1.00,-28.80,-24.00,0 --4.80,-24.00,14.14,0.00,1.00,-24.00,-19.20,0 --4.80,-19.20,14.20,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,14.27,0.00,1.00,-14.40,-9.60,0 --0.00,-9.60,14.33,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,14.39,0.00,1.00,-4.80,0.00,0 -0.00,0.00,14.46,0.00,1.00,0.00,4.80,0 -0.00,4.80,14.52,0.00,1.00,4.80,9.60,0 -4.80,9.60,14.59,0.00,1.00,9.60,14.40,0 -4.80,14.40,14.65,0.00,1.00,14.40,19.20,0 -4.80,19.20,14.71,0.00,1.00,19.20,24.00,0 -4.80,24.00,14.78,0.00,1.00,24.00,28.80,0 -9.60,28.80,14.84,0.00,1.00,28.80,33.60,0 -9.60,33.60,14.91,0.00,1.00,33.60,38.40,0 -9.60,38.40,14.97,0.00,1.00,38.40,43.20,0 -14.40,43.20,15.04,0.00,1.00,43.20,48.00,0 -14.40,48.00,15.10,0.00,1.00,48.00,52.80,0 -19.20,52.80,15.16,0.00,1.00,52.80,57.60,0 -19.20,52.80,15.23,0.00,1.00,57.60,57.60,0 -24.00,57.60,15.29,0.00,1.00,62.40,62.40,0 -28.80,62.40,15.36,0.00,1.00,67.20,67.20,0 -38.40,67.20,15.42,0.00,1.00,72.00,72.00,0 -48.00,72.00,15.49,0.00,1.00,76.80,72.00,0 -57.60,72.00,15.55,0.00,1.00,81.60,76.80,0 -76.80,76.80,15.61,0.00,1.00,86.40,76.80,0 -96.00,76.80,15.68,0.00,1.00,91.20,76.80,0 -115.20,76.80,15.74,0.00,1.00,96.00,72.00,0 -129.60,72.00,15.81,0.00,1.00,100.80,72.00,0 -139.20,67.20,15.87,0.00,1.00,105.60,67.20,0 -144.00,67.20,15.94,0.00,1.00,110.40,62.40,0 -153.60,62.40,16.00,0.00,1.00,115.20,57.60,0 -158.40,57.60,16.00,0.00,1.00,120.00,52.80,0 -158.40,52.80,15.94,0.00,1.00,124.80,48.00,0 -163.20,48.00,15.87,0.00,1.00,129.60,43.20,0 -168.00,43.20,15.81,0.00,1.00,134.40,38.40,0 -168.00,38.40,15.74,0.00,1.00,139.20,33.60,0 -168.00,33.60,15.68,0.00,1.00,144.00,28.80,0 -172.80,28.80,15.61,0.00,1.00,148.80,24.00,0 -172.80,24.00,15.55,0.00,1.00,153.60,19.20,0 -172.80,19.20,15.49,0.00,1.00,158.40,14.40,0 -177.60,14.40,15.42,0.00,1.00,163.20,9.60,0 -177.60,9.60,15.36,0.00,1.00,168.00,4.80,0 -177.60,4.80,15.29,0.00,1.00,172.80,0.00,0 -177.60,0.00,15.23,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,15.16,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,15.10,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,15.04,0.00,1.00,-168.00,-14.40,0 --177.60,-14.40,14.97,0.00,1.00,-163.20,-19.20,0 --172.80,-19.20,14.91,0.00,1.00,-158.40,-24.00,0 --172.80,-24.00,14.84,0.00,1.00,-153.60,-28.80,0 --172.80,-28.80,14.78,0.00,1.00,-148.80,-33.60,0 --168.00,-33.60,14.71,0.00,1.00,-144.00,-38.40,0 --168.00,-38.40,14.65,0.00,1.00,-139.20,-43.20,0 --168.00,-43.20,14.59,0.00,1.00,-134.40,-48.00,0 --163.20,-48.00,14.52,0.00,1.00,-129.60,-52.80,0 --158.40,-52.80,14.46,0.00,1.00,-124.80,-57.60,0 --158.40,-57.60,14.39,0.00,1.00,-120.00,-62.40,0 --153.60,-62.40,14.33,0.00,1.00,-115.20,-67.20,0 --144.00,-67.20,14.27,0.00,1.00,-110.40,-72.00,0 --139.20,-67.20,14.20,0.00,1.00,-105.60,-72.00,0 --129.60,-72.00,14.14,0.00,1.00,-100.80,-76.80,0 --115.20,-76.80,14.07,0.00,1.00,-96.00,-76.80,0 --96.00,-76.80,14.01,0.00,1.00,-91.20,-76.80,0 --76.80,-76.80,13.94,0.00,1.00,-86.40,-72.00,0 --57.60,-72.00,13.88,0.00,1.00,-81.60,-72.00,0 --48.00,-72.00,13.82,0.00,1.00,-76.80,-67.20,0 --38.40,-67.20,13.75,0.00,1.00,-72.00,-62.40,0 --28.80,-62.40,13.69,0.00,1.00,-67.20,-57.60,0 --24.00,-57.60,13.62,0.00,1.00,-62.40,-57.60,0 --19.20,-52.80,13.56,0.00,1.00,-57.60,-52.80,0 --19.20,-52.80,13.49,0.00,1.00,-52.80,-48.00,0 --14.40,-48.00,13.43,0.00,1.00,-48.00,-43.20,0 --14.40,-43.20,13.37,0.00,1.00,-43.20,-38.40,0 --9.60,-38.40,13.30,0.00,1.00,-38.40,-33.60,0 --9.60,-33.60,13.24,0.00,1.00,-33.60,-28.80,0 --9.60,-28.80,13.17,0.00,1.00,-28.80,-24.00,0 --4.80,-24.00,13.11,0.00,1.00,-24.00,-19.20,0 --4.80,-19.20,13.04,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,12.98,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,12.92,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,12.85,0.00,1.00,-4.80,0.00,0 -0.00,0.00,12.79,0.00,1.00,0.00,4.80,0 -0.00,4.80,12.72,0.00,1.00,4.80,9.60,0 -4.80,9.60,12.66,0.00,1.00,9.60,14.40,0 -4.80,14.40,12.59,0.00,1.00,14.40,19.20,0 -4.80,19.20,12.53,0.00,1.00,19.20,24.00,0 -9.60,24.00,12.47,0.00,1.00,24.00,28.80,0 -9.60,28.80,12.40,0.00,1.00,28.80,33.60,0 -14.40,33.60,12.34,0.00,1.00,33.60,38.40,0 -14.40,33.60,12.27,0.00,1.00,38.40,38.40,0 -19.20,38.40,12.21,0.00,1.00,43.20,43.20,0 -19.20,43.20,12.14,0.00,1.00,48.00,48.00,0 -24.00,48.00,12.08,0.00,1.00,52.80,52.80,0 -28.80,52.80,12.02,0.00,1.00,57.60,57.60,0 -33.60,57.60,11.95,0.00,1.00,62.40,62.40,0 -38.40,62.40,11.89,0.00,1.00,67.20,62.40,0 -43.20,62.40,11.82,0.00,1.00,72.00,67.20,0 -52.80,67.20,11.76,0.00,1.00,76.80,72.00,0 -67.20,67.20,11.69,0.00,1.00,81.60,72.00,0 -76.80,72.00,11.63,0.00,1.00,86.40,72.00,0 -96.00,72.00,11.57,0.00,1.00,91.20,72.00,0 -105.60,72.00,11.50,0.00,1.00,96.00,67.20,0 -120.00,67.20,11.44,0.00,1.00,100.80,67.20,0 -129.60,67.20,11.37,0.00,1.00,105.60,62.40,0 -139.20,62.40,11.31,0.00,1.00,110.40,57.60,0 -144.00,57.60,11.24,0.00,1.00,115.20,57.60,0 -148.80,52.80,11.18,0.00,1.00,120.00,52.80,0 -153.60,52.80,11.12,0.00,1.00,124.80,48.00,0 -158.40,48.00,11.05,0.00,1.00,129.60,43.20,0 -163.20,43.20,10.99,0.00,1.00,134.40,38.40,0 -163.20,38.40,10.92,0.00,1.00,139.20,33.60,0 -168.00,33.60,10.86,0.00,1.00,144.00,28.80,0 -168.00,28.80,10.80,0.00,1.00,148.80,24.00,0 -172.80,24.00,10.73,0.00,1.00,153.60,19.20,0 -172.80,19.20,10.67,0.00,1.00,158.40,14.40,0 -172.80,14.40,10.60,0.00,1.00,163.20,9.60,0 -177.60,9.60,10.54,0.00,1.00,168.00,4.80,0 -177.60,4.80,10.47,0.00,1.00,172.80,0.00,0 -177.60,0.00,10.41,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.35,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,10.28,0.00,1.00,-172.80,-9.60,0 --177.60,-9.60,10.22,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,10.15,0.00,1.00,-163.20,-19.20,0 --172.80,-19.20,10.09,0.00,1.00,-158.40,-24.00,0 --172.80,-24.00,10.02,0.00,1.00,-153.60,-28.80,0 --168.00,-28.80,9.96,0.00,1.00,-148.80,-33.60,0 --168.00,-33.60,9.90,0.00,1.00,-144.00,-38.40,0 --163.20,-38.40,9.83,0.00,1.00,-139.20,-43.20,0 --163.20,-43.20,9.77,0.00,1.00,-134.40,-48.00,0 --158.40,-48.00,9.70,0.00,1.00,-129.60,-52.80,0 --153.60,-52.80,9.64,0.00,1.00,-124.80,-57.60,0 --148.80,-52.80,9.57,0.00,1.00,-120.00,-57.60,0 --144.00,-57.60,9.51,0.00,1.00,-115.20,-62.40,0 --139.20,-62.40,9.45,0.00,1.00,-110.40,-67.20,0 --129.60,-67.20,9.38,0.00,1.00,-105.60,-67.20,0 --120.00,-67.20,9.32,0.00,1.00,-100.80,-72.00,0 --105.60,-72.00,9.25,0.00,1.00,-96.00,-72.00,0 --96.00,-72.00,9.19,0.00,1.00,-91.20,-72.00,0 --76.80,-72.00,9.12,0.00,1.00,-86.40,-72.00,0 --67.20,-67.20,9.06,0.00,1.00,-81.60,-67.20,0 --52.80,-67.20,9.00,0.00,1.00,-76.80,-62.40,0 --43.20,-62.40,8.93,0.00,1.00,-72.00,-62.40,0 --38.40,-62.40,8.87,0.00,1.00,-67.20,-57.60,0 --33.60,-57.60,8.80,0.00,1.00,-62.40,-52.80,0 --28.80,-52.80,8.74,0.00,1.00,-57.60,-48.00,0 --24.00,-48.00,8.67,0.00,1.00,-52.80,-43.20,0 --19.20,-43.20,8.61,0.00,1.00,-48.00,-38.40,0 --19.20,-38.40,8.55,0.00,1.00,-43.20,-38.40,0 --14.40,-33.60,8.48,0.00,1.00,-38.40,-33.60,0 --14.40,-33.60,8.42,0.00,1.00,-33.60,-28.80,0 --9.60,-28.80,8.35,0.00,1.00,-28.80,-24.00,0 --9.60,-24.00,8.29,0.00,1.00,-24.00,-19.20,0 --4.80,-19.20,8.22,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,8.16,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,8.10,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,8.03,0.00,1.00,-4.80,0.00,0 -0.00,0.00,7.97,0.00,1.00,0.00,4.80,0 -0.00,4.80,7.90,0.00,1.00,4.80,9.60,0 -4.80,9.60,7.84,0.00,1.00,9.60,14.40,0 -4.80,14.40,7.78,0.00,1.00,14.40,19.20,0 -9.60,19.20,7.71,0.00,1.00,19.20,24.00,0 -9.60,24.00,7.65,0.00,1.00,24.00,24.00,0 -14.40,24.00,7.58,0.00,1.00,28.80,28.80,0 -14.40,28.80,7.52,0.00,1.00,33.60,33.60,0 -19.20,33.60,7.45,0.00,1.00,33.60,38.40,0 -19.20,38.40,7.39,0.00,1.00,38.40,43.20,0 -24.00,43.20,7.33,0.00,1.00,43.20,48.00,0 -28.80,48.00,7.26,0.00,1.00,48.00,52.80,0 -33.60,52.80,7.20,0.00,1.00,57.60,52.80,0 -38.40,52.80,7.13,0.00,1.00,62.40,57.60,0 -43.20,57.60,7.07,0.00,1.00,67.20,62.40,0 -52.80,62.40,7.00,0.00,1.00,72.00,62.40,0 -62.40,62.40,6.94,0.00,1.00,76.80,67.20,0 -72.00,62.40,6.88,0.00,1.00,81.60,67.20,0 -81.60,67.20,6.81,0.00,1.00,86.40,67.20,0 -91.20,67.20,6.75,0.00,1.00,91.20,67.20,0 -105.60,67.20,6.68,0.00,1.00,96.00,67.20,0 -115.20,62.40,6.62,0.00,1.00,100.80,62.40,0 -124.80,62.40,6.55,0.00,1.00,105.60,57.60,0 -134.40,57.60,6.49,0.00,1.00,110.40,57.60,0 -139.20,57.60,6.43,0.00,1.00,115.20,52.80,0 -144.00,52.80,6.36,0.00,1.00,120.00,48.00,0 -148.80,48.00,6.30,0.00,1.00,129.60,43.20,0 -153.60,43.20,6.23,0.00,1.00,134.40,43.20,0 -158.40,38.40,6.17,0.00,1.00,139.20,38.40,0 -158.40,38.40,6.10,0.00,1.00,144.00,33.60,0 -163.20,33.60,6.04,0.00,1.00,148.80,28.80,0 -168.00,28.80,5.98,0.00,1.00,148.80,24.00,0 -168.00,24.00,5.91,0.00,1.00,153.60,19.20,0 -172.80,19.20,5.85,0.00,1.00,158.40,14.40,0 -172.80,14.40,5.78,0.00,1.00,163.20,9.60,0 -172.80,9.60,5.72,0.00,1.00,168.00,4.80,0 -177.60,4.80,5.65,0.00,1.00,172.80,0.00,0 -177.60,0.00,5.59,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,5.53,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,5.46,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,5.40,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,5.33,0.00,1.00,-163.20,-19.20,0 --172.80,-19.20,5.27,0.00,1.00,-158.40,-24.00,0 --168.00,-24.00,5.20,0.00,1.00,-153.60,-28.80,0 --168.00,-28.80,5.14,0.00,1.00,-148.80,-33.60,0 --163.20,-33.60,5.08,0.00,1.00,-148.80,-38.40,0 --158.40,-38.40,5.01,0.00,1.00,-144.00,-43.20,0 --158.40,-38.40,4.95,0.00,1.00,-139.20,-43.20,0 --153.60,-43.20,4.88,0.00,1.00,-134.40,-48.00,0 --148.80,-48.00,4.82,0.00,1.00,-129.60,-52.80,0 --144.00,-52.80,4.76,0.00,1.00,-120.00,-57.60,0 --139.20,-57.60,4.69,0.00,1.00,-115.20,-57.60,0 --134.40,-57.60,4.63,0.00,1.00,-110.40,-62.40,0 --124.80,-62.40,4.56,0.00,1.00,-105.60,-67.20,0 --115.20,-62.40,4.50,0.00,1.00,-100.80,-67.20,0 --105.60,-67.20,4.43,0.00,1.00,-96.00,-67.20,0 --91.20,-67.20,4.37,0.00,1.00,-91.20,-67.20,0 --81.60,-67.20,4.31,0.00,1.00,-86.40,-67.20,0 --72.00,-62.40,4.24,0.00,1.00,-81.60,-62.40,0 --62.40,-62.40,4.18,0.00,1.00,-76.80,-62.40,0 --52.80,-62.40,4.11,0.00,1.00,-72.00,-57.60,0 --43.20,-57.60,4.05,0.00,1.00,-67.20,-52.80,0 --38.40,-52.80,3.98,0.00,1.00,-62.40,-52.80,0 --33.60,-52.80,3.92,0.00,1.00,-57.60,-48.00,0 --28.80,-48.00,3.86,0.00,1.00,-48.00,-43.20,0 --24.00,-43.20,3.79,0.00,1.00,-43.20,-38.40,0 --19.20,-38.40,3.73,0.00,1.00,-38.40,-33.60,0 --19.20,-33.60,3.66,0.00,1.00,-33.60,-28.80,0 --14.40,-28.80,3.60,0.00,1.00,-33.60,-24.00,0 --14.40,-24.00,3.53,0.00,1.00,-28.80,-24.00,0 --9.60,-24.00,3.47,0.00,1.00,-24.00,-19.20,0 --9.60,-19.20,3.41,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,3.34,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,3.28,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,3.21,0.00,1.00,-4.80,0.00,0 -0.00,0.00,3.15,0.00,1.00,0.00,4.80,0 -0.00,4.80,3.08,0.00,1.00,4.80,9.60,0 -4.80,9.60,3.02,0.00,1.00,9.60,14.40,0 -4.80,14.40,2.96,0.00,1.00,14.40,19.20,0 -9.60,14.40,2.89,0.00,1.00,19.20,19.20,0 -14.40,19.20,2.83,0.00,1.00,19.20,24.00,0 -14.40,24.00,2.76,0.00,1.00,24.00,28.80,0 -19.20,28.80,2.70,0.00,1.00,28.80,33.60,0 -19.20,33.60,2.63,0.00,1.00,33.60,38.40,0 -24.00,38.40,2.57,0.00,1.00,38.40,43.20,0 -28.80,38.40,2.51,0.00,1.00,43.20,43.20,0 -33.60,43.20,2.44,0.00,1.00,48.00,48.00,0 -38.40,48.00,2.38,0.00,1.00,52.80,52.80,0 -43.20,52.80,2.31,0.00,1.00,57.60,52.80,0 -48.00,52.80,2.25,0.00,1.00,62.40,57.60,0 -57.60,57.60,2.18,0.00,1.00,72.00,57.60,0 -62.40,57.60,2.12,0.00,1.00,76.80,62.40,0 -72.00,62.40,2.06,0.00,1.00,81.60,62.40,0 -81.60,62.40,1.99,0.00,1.00,86.40,62.40,0 -91.20,62.40,1.93,0.00,1.00,91.20,62.40,0 -100.80,62.40,1.86,0.00,1.00,96.00,62.40,0 -110.40,57.60,1.80,0.00,1.00,100.80,57.60,0 -120.00,57.60,1.73,0.00,1.00,105.60,57.60,0 -129.60,57.60,1.67,0.00,1.00,115.20,52.80,0 -134.40,52.80,1.61,0.00,1.00,120.00,48.00,0 -139.20,48.00,1.54,0.00,1.00,124.80,48.00,0 -144.00,48.00,1.48,0.00,1.00,129.60,43.20,0 -148.80,43.20,1.41,0.00,1.00,134.40,38.40,0 -153.60,38.40,1.35,0.00,1.00,139.20,33.60,0 -158.40,33.60,1.29,0.00,1.00,144.00,33.60,0 -158.40,28.80,1.22,0.00,1.00,148.80,28.80,0 -163.20,28.80,1.16,0.00,1.00,153.60,24.00,0 -168.00,24.00,1.09,0.00,1.00,158.40,19.20,0 -168.00,19.20,1.03,0.00,1.00,163.20,14.40,0 -172.80,14.40,0.96,0.00,1.00,163.20,9.60,0 -172.80,9.60,0.90,0.00,1.00,168.00,4.80,0 -177.60,4.80,0.84,0.00,1.00,172.80,0.00,0 -177.60,0.00,0.77,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,0.71,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,0.64,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,0.58,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,0.51,0.00,1.00,-163.20,-19.20,0 --168.00,-19.20,0.45,0.00,1.00,-163.20,-24.00,0 --168.00,-24.00,0.39,0.00,1.00,-158.40,-28.80,0 --163.20,-28.80,0.32,0.00,1.00,-153.60,-33.60,0 --158.40,-28.80,0.26,0.00,1.00,-148.80,-33.60,0 --158.40,-33.60,0.19,0.00,1.00,-144.00,-38.40,0 --153.60,-38.40,0.13,0.00,1.00,-139.20,-43.20,0 --148.80,-43.20,0.06,0.00,1.00,-134.40,-48.00,0 --144.00,-48.00,0.00,0.00,1.00,-129.60,-48.00,0 --139.20,-48.00,0.00,0.00,1.00,-124.80,-52.80,0 --134.40,-52.80,0.16,0.00,1.00,-120.00,-57.60,0 --129.60,-57.60,0.32,0.00,1.00,-115.20,-57.60,0 --120.00,-57.60,0.48,0.00,1.00,-105.60,-62.40,0 --110.40,-57.60,0.65,0.00,1.00,-100.80,-62.40,0 --100.80,-62.40,0.81,0.00,1.00,-96.00,-62.40,0 --91.20,-62.40,0.97,0.00,1.00,-91.20,-62.40,0 --81.60,-62.40,1.13,0.00,1.00,-86.40,-62.40,0 --72.00,-62.40,1.29,0.00,1.00,-81.60,-57.60,0 --62.40,-57.60,1.45,0.00,1.00,-76.80,-57.60,0 --57.60,-57.60,1.62,0.00,1.00,-72.00,-52.80,0 --48.00,-52.80,1.78,0.00,1.00,-62.40,-52.80,0 --43.20,-52.80,1.94,0.00,1.00,-57.60,-48.00,0 --38.40,-48.00,2.10,0.00,1.00,-52.80,-43.20,0 --33.60,-43.20,2.26,0.00,1.00,-48.00,-43.20,0 --28.80,-38.40,2.42,0.00,1.00,-43.20,-38.40,0 --24.00,-38.40,2.59,0.00,1.00,-38.40,-33.60,0 --19.20,-33.60,2.75,0.00,1.00,-33.60,-28.80,0 --19.20,-28.80,2.91,0.00,1.00,-28.80,-24.00,0 --14.40,-24.00,3.07,0.00,1.00,-24.00,-19.20,0 --14.40,-19.20,3.23,0.00,1.00,-19.20,-19.20,0 --9.60,-14.40,3.39,0.00,1.00,-19.20,-14.40,0 --4.80,-14.40,3.56,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,3.72,0.00,1.00,-9.60,-4.80,0 --0.00,-4.80,3.88,0.00,1.00,-4.80,0.00,0 -0.00,0.00,4.04,0.00,1.00,0.00,4.80,0 -4.80,4.80,4.20,0.00,1.00,4.80,9.60,0 -4.80,9.60,4.36,0.00,1.00,9.60,14.40,0 -9.60,9.60,4.53,0.00,1.00,14.40,14.40,0 -9.60,14.40,4.69,0.00,1.00,14.40,19.20,0 -14.40,19.20,4.85,0.00,1.00,19.20,24.00,0 -19.20,24.00,5.01,0.00,1.00,24.00,28.80,0 -19.20,28.80,5.17,0.00,1.00,28.80,33.60,0 -24.00,28.80,5.33,0.00,1.00,33.60,33.60,0 -28.80,33.60,5.49,0.00,1.00,38.40,38.40,0 -33.60,38.40,5.66,0.00,1.00,43.20,43.20,0 -38.40,43.20,5.82,0.00,1.00,48.00,43.20,0 -43.20,43.20,5.98,0.00,1.00,52.80,48.00,0 -48.00,48.00,6.14,0.00,1.00,57.60,52.80,0 -52.80,48.00,6.30,0.00,1.00,62.40,52.80,0 -57.60,52.80,6.46,0.00,1.00,67.20,57.60,0 -67.20,52.80,6.63,0.00,1.00,72.00,57.60,0 -76.80,57.60,6.79,0.00,1.00,81.60,57.60,0 -81.60,57.60,6.95,0.00,1.00,86.40,57.60,0 -91.20,57.60,7.11,0.00,1.00,91.20,57.60,0 -100.80,57.60,7.27,0.00,1.00,96.00,57.60,0 -110.40,52.80,7.43,0.00,1.00,100.80,52.80,0 -115.20,52.80,7.60,0.00,1.00,110.40,52.80,0 -124.80,52.80,7.76,0.00,1.00,115.20,48.00,0 -129.60,48.00,7.92,0.00,1.00,120.00,48.00,0 -134.40,48.00,8.08,0.00,1.00,124.80,43.20,0 -139.20,43.20,8.24,0.00,1.00,129.60,38.40,0 -144.00,38.40,8.40,0.00,1.00,134.40,38.40,0 -148.80,38.40,8.57,0.00,1.00,139.20,33.60,0 -153.60,33.60,8.73,0.00,1.00,144.00,28.80,0 -158.40,28.80,8.89,0.00,1.00,148.80,24.00,0 -163.20,24.00,9.05,0.00,1.00,153.60,24.00,0 -163.20,24.00,9.21,0.00,1.00,158.40,19.20,0 -168.00,19.20,9.37,0.00,1.00,163.20,14.40,0 -172.80,14.40,9.54,0.00,1.00,168.00,9.60,0 -172.80,9.60,9.70,0.00,1.00,168.00,4.80,0 -177.60,4.80,9.86,0.00,1.00,172.80,0.00,0 -177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.18,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,10.34,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,10.51,0.00,1.00,-168.00,-14.40,0 --172.80,-14.40,10.67,0.00,1.00,-168.00,-19.20,0 --168.00,-19.20,10.83,0.00,1.00,-163.20,-24.00,0 --163.20,-24.00,10.99,0.00,1.00,-158.40,-24.00,0 --163.20,-24.00,11.15,0.00,1.00,-153.60,-28.80,0 --158.40,-28.80,11.31,0.00,1.00,-148.80,-33.60,0 --153.60,-33.60,11.47,0.00,1.00,-144.00,-38.40,0 --148.80,-38.40,11.64,0.00,1.00,-139.20,-38.40,0 --144.00,-38.40,11.80,0.00,1.00,-134.40,-43.20,0 --139.20,-43.20,11.96,0.00,1.00,-129.60,-48.00,0 --134.40,-48.00,12.12,0.00,1.00,-124.80,-48.00,0 --129.60,-48.00,12.28,0.00,1.00,-120.00,-52.80,0 --124.80,-52.80,12.44,0.00,1.00,-115.20,-52.80,0 --115.20,-52.80,12.61,0.00,1.00,-110.40,-57.60,0 --110.40,-52.80,12.77,0.00,1.00,-100.80,-57.60,0 --100.80,-57.60,12.93,0.00,1.00,-96.00,-57.60,0 --91.20,-57.60,13.09,0.00,1.00,-91.20,-57.60,0 --81.60,-57.60,13.25,0.00,1.00,-86.40,-57.60,0 --76.80,-57.60,13.41,0.00,1.00,-81.60,-57.60,0 --67.20,-52.80,13.58,0.00,1.00,-72.00,-52.80,0 --57.60,-52.80,13.74,0.00,1.00,-67.20,-52.80,0 --52.80,-48.00,13.90,0.00,1.00,-62.40,-48.00,0 --48.00,-48.00,14.06,0.00,1.00,-57.60,-43.20,0 --43.20,-43.20,14.22,0.00,1.00,-52.80,-43.20,0 --38.40,-43.20,14.38,0.00,1.00,-48.00,-38.40,0 --33.60,-38.40,14.55,0.00,1.00,-43.20,-33.60,0 --28.80,-33.60,14.71,0.00,1.00,-38.40,-33.60,0 --24.00,-28.80,14.87,0.00,1.00,-33.60,-28.80,0 --19.20,-28.80,15.03,0.00,1.00,-28.80,-24.00,0 --19.20,-24.00,15.19,0.00,1.00,-24.00,-19.20,0 --14.40,-19.20,15.35,0.00,1.00,-19.20,-14.40,0 --9.60,-14.40,15.52,0.00,1.00,-14.40,-14.40,0 --9.60,-9.60,15.68,0.00,1.00,-14.40,-9.60,0 --4.80,-9.60,15.84,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,16.00,0.00,1.00,-4.80,0.00,0 -0.00,0.00,16.00,0.00,1.00,0.00,4.80,0 -4.80,4.80,15.84,0.00,1.00,4.80,9.60,0 -4.80,9.60,15.68,0.00,1.00,9.60,9.60,0 -9.60,9.60,15.52,0.00,1.00,9.60,14.40,0 -14.40,14.40,15.35,0.00,1.00,14.40,19.20,0 -14.40,19.20,15.19,0.00,1.00,19.20,24.00,0 -19.20,24.00,15.03,0.00,1.00,24.00,24.00,0 -24.00,24.00,14.87,0.00,1.00,28.80,28.80,0 -24.00,28.80,14.71,0.00,1.00,33.60,33.60,0 -28.80,33.60,14.55,0.00,1.00,38.40,38.40,0 -33.60,33.60,14.38,0.00,1.00,43.20,38.40,0 -38.40,38.40,14.22,0.00,1.00,48.00,43.20,0 -43.20,43.20,14.06,0.00,1.00,52.80,43.20,0 -48.00,43.20,13.90,0.00,1.00,57.60,48.00,0 -57.60,48.00,13.74,0.00,1.00,62.40,48.00,0 -62.40,48.00,13.58,0.00,1.00,67.20,52.80,0 -67.20,48.00,13.41,0.00,1.00,72.00,52.80,0 -76.80,52.80,13.25,0.00,1.00,81.60,52.80,0 -86.40,52.80,13.09,0.00,1.00,86.40,52.80,0 -91.20,52.80,12.93,0.00,1.00,91.20,52.80,0 -100.80,52.80,12.77,0.00,1.00,96.00,52.80,0 -105.60,48.00,12.61,0.00,1.00,105.60,48.00,0 -115.20,48.00,12.44,0.00,1.00,110.40,48.00,0 -120.00,48.00,12.28,0.00,1.00,115.20,48.00,0 -124.80,43.20,12.12,0.00,1.00,120.00,43.20,0 -134.40,43.20,11.96,0.00,1.00,124.80,43.20,0 -139.20,38.40,11.80,0.00,1.00,129.60,38.40,0 -144.00,38.40,11.64,0.00,1.00,134.40,33.60,0 -148.80,33.60,11.47,0.00,1.00,139.20,33.60,0 -153.60,28.80,11.31,0.00,1.00,144.00,28.80,0 -153.60,28.80,11.15,0.00,1.00,148.80,24.00,0 -158.40,24.00,10.99,0.00,1.00,153.60,19.20,0 -163.20,19.20,10.83,0.00,1.00,158.40,19.20,0 -168.00,14.40,10.67,0.00,1.00,163.20,14.40,0 -168.00,14.40,10.51,0.00,1.00,168.00,9.60,0 -172.80,9.60,10.34,0.00,1.00,172.80,4.80,0 -177.60,4.80,10.18,0.00,1.00,172.80,0.00,0 -177.60,0.00,10.02,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,9.86,0.00,1.00,-177.60,-4.80,0 --177.60,-4.80,9.70,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,9.54,0.00,1.00,-172.80,-14.40,0 --168.00,-14.40,9.37,0.00,1.00,-168.00,-19.20,0 --168.00,-14.40,9.21,0.00,1.00,-163.20,-19.20,0 --163.20,-19.20,9.05,0.00,1.00,-158.40,-24.00,0 --158.40,-24.00,8.89,0.00,1.00,-153.60,-28.80,0 --153.60,-28.80,8.73,0.00,1.00,-148.80,-33.60,0 --153.60,-28.80,8.57,0.00,1.00,-144.00,-33.60,0 --148.80,-33.60,8.40,0.00,1.00,-139.20,-38.40,0 --144.00,-38.40,8.24,0.00,1.00,-134.40,-43.20,0 --139.20,-38.40,8.08,0.00,1.00,-129.60,-43.20,0 --134.40,-43.20,7.92,0.00,1.00,-124.80,-48.00,0 --124.80,-43.20,7.76,0.00,1.00,-120.00,-48.00,0 --120.00,-48.00,7.60,0.00,1.00,-115.20,-48.00,0 --115.20,-48.00,7.43,0.00,1.00,-110.40,-52.80,0 --105.60,-48.00,7.27,0.00,1.00,-105.60,-52.80,0 --100.80,-52.80,7.11,0.00,1.00,-96.00,-52.80,0 --91.20,-52.80,6.95,0.00,1.00,-91.20,-52.80,0 --86.40,-52.80,6.79,0.00,1.00,-86.40,-52.80,0 --76.80,-52.80,6.63,0.00,1.00,-81.60,-52.80,0 --67.20,-48.00,6.46,0.00,1.00,-72.00,-48.00,0 --62.40,-48.00,6.30,0.00,1.00,-67.20,-48.00,0 --57.60,-48.00,6.14,0.00,1.00,-62.40,-43.20,0 --48.00,-43.20,5.98,0.00,1.00,-57.60,-43.20,0 --43.20,-43.20,5.82,0.00,1.00,-52.80,-38.40,0 --38.40,-38.40,5.66,0.00,1.00,-48.00,-38.40,0 --33.60,-33.60,5.49,0.00,1.00,-43.20,-33.60,0 --28.80,-33.60,5.33,0.00,1.00,-38.40,-28.80,0 --24.00,-28.80,5.17,0.00,1.00,-33.60,-24.00,0 --24.00,-24.00,5.01,0.00,1.00,-28.80,-24.00,0 --19.20,-24.00,4.85,0.00,1.00,-24.00,-19.20,0 --14.40,-19.20,4.69,0.00,1.00,-19.20,-14.40,0 --14.40,-14.40,4.53,0.00,1.00,-14.40,-9.60,0 --9.60,-9.60,4.36,0.00,1.00,-9.60,-9.60,0 --4.80,-9.60,4.20,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,4.04,0.00,1.00,-4.80,0.00,0 -0.00,0.00,3.88,0.00,1.00,0.00,4.80,0 -4.80,4.80,3.72,0.00,1.00,4.80,4.80,0 -4.80,4.80,3.56,0.00,1.00,4.80,9.60,0 -9.60,9.60,3.39,0.00,1.00,9.60,14.40,0 -14.40,14.40,3.23,0.00,1.00,14.40,19.20,0 -19.20,19.20,3.07,0.00,1.00,19.20,19.20,0 -19.20,19.20,2.91,0.00,1.00,24.00,24.00,0 -24.00,24.00,2.75,0.00,1.00,24.00,28.80,0 -28.80,28.80,2.59,0.00,1.00,28.80,28.80,0 -33.60,28.80,2.42,0.00,1.00,33.60,33.60,0 -38.40,33.60,2.26,0.00,1.00,38.40,38.40,0 -43.20,33.60,2.10,0.00,1.00,43.20,38.40,0 -48.00,38.40,1.94,0.00,1.00,48.00,43.20,0 -52.80,38.40,1.78,0.00,1.00,52.80,43.20,0 -57.60,43.20,1.62,0.00,1.00,62.40,43.20,0 -62.40,43.20,1.45,0.00,1.00,67.20,48.00,0 -72.00,43.20,1.29,0.00,1.00,72.00,48.00,0 -76.80,48.00,1.13,0.00,1.00,76.80,48.00,0 -86.40,48.00,0.97,0.00,1.00,86.40,48.00,0 -91.20,48.00,0.81,0.00,1.00,91.20,48.00,0 -100.80,48.00,0.65,0.00,1.00,96.00,48.00,0 -105.60,48.00,0.48,0.00,1.00,105.60,48.00,0 -110.40,43.20,0.32,0.00,1.00,110.40,43.20,0 -120.00,43.20,0.16,0.00,1.00,115.20,43.20,0 -124.80,43.20,0.00,0.00,1.00,124.80,38.40,0 -129.60,38.40,0.00,0.00,1.00,129.60,38.40,0 -134.40,38.40,0.04,0.00,1.00,134.40,33.60,0 -139.20,33.60,0.08,0.00,1.00,139.20,33.60,0 -144.00,33.60,0.12,0.00,1.00,144.00,28.80,0 -148.80,28.80,0.16,0.00,1.00,148.80,24.00,0 -153.60,24.00,0.20,0.00,1.00,153.60,24.00,0 -158.40,24.00,0.24,0.00,1.00,158.40,19.20,0 -163.20,19.20,0.28,0.00,1.00,158.40,14.40,0 -163.20,14.40,0.32,0.00,1.00,163.20,14.40,0 -168.00,14.40,0.36,0.00,1.00,168.00,9.60,0 -172.80,9.60,0.40,0.00,1.00,172.80,4.80,0 -172.80,4.80,0.44,0.00,1.00,172.80,0.00,0 -177.60,0.00,0.48,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,0.52,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,0.56,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,0.60,0.00,1.00,-172.80,-14.40,0 --168.00,-14.40,0.64,0.00,1.00,-168.00,-14.40,0 --163.20,-14.40,0.68,0.00,1.00,-163.20,-19.20,0 --163.20,-19.20,0.72,0.00,1.00,-158.40,-24.00,0 --158.40,-24.00,0.76,0.00,1.00,-158.40,-24.00,0 --153.60,-24.00,0.80,0.00,1.00,-153.60,-28.80,0 --148.80,-28.80,0.84,0.00,1.00,-148.80,-33.60,0 --144.00,-33.60,0.88,0.00,1.00,-144.00,-33.60,0 --139.20,-33.60,0.92,0.00,1.00,-139.20,-38.40,0 --134.40,-38.40,0.96,0.00,1.00,-134.40,-38.40,0 --129.60,-38.40,1.00,0.00,1.00,-129.60,-43.20,0 --124.80,-43.20,1.04,0.00,1.00,-124.80,-43.20,0 --120.00,-43.20,1.08,0.00,1.00,-115.20,-48.00,0 --110.40,-43.20,1.12,0.00,1.00,-110.40,-48.00,0 --105.60,-48.00,1.16,0.00,1.00,-105.60,-48.00,0 --100.80,-48.00,1.20,0.00,1.00,-96.00,-48.00,0 --91.20,-48.00,1.24,0.00,1.00,-91.20,-48.00,0 --86.40,-48.00,1.28,0.00,1.00,-86.40,-48.00,0 --76.80,-48.00,1.32,0.00,1.00,-76.80,-48.00,0 --72.00,-43.20,1.36,0.00,1.00,-72.00,-43.20,0 --62.40,-43.20,1.40,0.00,1.00,-67.20,-43.20,0 --57.60,-43.20,1.44,0.00,1.00,-62.40,-43.20,0 --52.80,-38.40,1.48,0.00,1.00,-52.80,-38.40,0 --48.00,-38.40,1.52,0.00,1.00,-48.00,-38.40,0 --43.20,-33.60,1.56,0.00,1.00,-43.20,-33.60,0 --38.40,-33.60,1.60,0.00,1.00,-38.40,-28.80,0 --33.60,-28.80,1.64,0.00,1.00,-33.60,-28.80,0 --28.80,-28.80,1.68,0.00,1.00,-28.80,-24.00,0 --24.00,-24.00,1.72,0.00,1.00,-24.00,-19.20,0 --19.20,-19.20,1.76,0.00,1.00,-24.00,-19.20,0 --19.20,-19.20,1.80,0.00,1.00,-19.20,-14.40,0 --14.40,-14.40,1.84,0.00,1.00,-14.40,-9.60,0 --9.60,-9.60,1.88,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,1.92,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,1.96,0.00,1.00,-4.80,0.00,0 -0.00,0.00,2.01,0.00,1.00,0.00,4.80,0 -4.80,4.80,2.05,0.00,1.00,4.80,4.80,0 -4.80,4.80,2.09,0.00,1.00,4.80,9.60,0 -9.60,9.60,2.13,0.00,1.00,9.60,14.40,0 -14.40,14.40,2.17,0.00,1.00,14.40,14.40,0 -19.20,14.40,2.21,0.00,1.00,14.40,19.20,0 -24.00,19.20,2.25,0.00,1.00,19.20,24.00,0 -24.00,24.00,2.29,0.00,1.00,24.00,24.00,0 -28.80,24.00,2.33,0.00,1.00,28.80,28.80,0 -33.60,28.80,2.37,0.00,1.00,33.60,28.80,0 -38.40,28.80,2.41,0.00,1.00,38.40,33.60,0 -43.20,33.60,2.45,0.00,1.00,43.20,33.60,0 -48.00,33.60,2.49,0.00,1.00,48.00,38.40,0 -52.80,38.40,2.53,0.00,1.00,52.80,38.40,0 -62.40,38.40,2.57,0.00,1.00,57.60,38.40,0 -67.20,38.40,2.61,0.00,1.00,62.40,43.20,0 -72.00,38.40,2.65,0.00,1.00,72.00,43.20,0 -76.80,43.20,2.69,0.00,1.00,76.80,43.20,0 -86.40,43.20,2.73,0.00,1.00,86.40,43.20,0 -91.20,43.20,2.77,0.00,1.00,91.20,43.20,0 -96.00,43.20,2.81,0.00,1.00,100.80,43.20,0 -105.60,43.20,2.85,0.00,1.00,105.60,43.20,0 -110.40,38.40,2.89,0.00,1.00,110.40,38.40,0 -115.20,38.40,2.93,0.00,1.00,120.00,38.40,0 -120.00,38.40,2.97,0.00,1.00,124.80,38.40,0 -129.60,33.60,3.01,0.00,1.00,129.60,33.60,0 -134.40,33.60,3.05,0.00,1.00,134.40,33.60,0 -139.20,28.80,3.09,0.00,1.00,139.20,28.80,0 -144.00,28.80,3.13,0.00,1.00,144.00,28.80,0 -148.80,24.00,3.17,0.00,1.00,148.80,24.00,0 -153.60,24.00,3.21,0.00,1.00,153.60,19.20,0 -153.60,19.20,3.25,0.00,1.00,158.40,19.20,0 -158.40,19.20,3.29,0.00,1.00,163.20,14.40,0 -163.20,14.40,3.33,0.00,1.00,163.20,9.60,0 -168.00,9.60,3.37,0.00,1.00,168.00,9.60,0 -172.80,9.60,3.41,0.00,1.00,172.80,4.80,0 -172.80,4.80,3.45,0.00,1.00,172.80,0.00,0 -177.60,0.00,3.49,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,3.53,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,3.57,0.00,1.00,-172.80,-9.60,0 --172.80,-9.60,3.61,0.00,1.00,-172.80,-9.60,0 --168.00,-9.60,3.65,0.00,1.00,-168.00,-14.40,0 --163.20,-14.40,3.69,0.00,1.00,-163.20,-19.20,0 --158.40,-19.20,3.73,0.00,1.00,-163.20,-19.20,0 --153.60,-19.20,3.77,0.00,1.00,-158.40,-24.00,0 --153.60,-24.00,3.81,0.00,1.00,-153.60,-28.80,0 --148.80,-24.00,3.85,0.00,1.00,-148.80,-28.80,0 --144.00,-28.80,3.89,0.00,1.00,-144.00,-33.60,0 --139.20,-28.80,3.93,0.00,1.00,-139.20,-33.60,0 --134.40,-33.60,3.97,0.00,1.00,-134.40,-38.40,0 --129.60,-33.60,4.01,0.00,1.00,-129.60,-38.40,0 --120.00,-38.40,4.05,0.00,1.00,-124.80,-38.40,0 --115.20,-38.40,4.09,0.00,1.00,-120.00,-43.20,0 --110.40,-38.40,4.13,0.00,1.00,-110.40,-43.20,0 --105.60,-43.20,4.17,0.00,1.00,-105.60,-43.20,0 --96.00,-43.20,4.21,0.00,1.00,-100.80,-43.20,0 --91.20,-43.20,4.25,0.00,1.00,-91.20,-43.20,0 --86.40,-43.20,4.29,0.00,1.00,-86.40,-43.20,0 --76.80,-43.20,4.33,0.00,1.00,-76.80,-43.20,0 --72.00,-38.40,4.37,0.00,1.00,-72.00,-38.40,0 --67.20,-38.40,4.41,0.00,1.00,-62.40,-38.40,0 --62.40,-38.40,4.45,0.00,1.00,-57.60,-38.40,0 --52.80,-38.40,4.49,0.00,1.00,-52.80,-33.60,0 --48.00,-33.60,4.53,0.00,1.00,-48.00,-33.60,0 --43.20,-33.60,4.57,0.00,1.00,-43.20,-28.80,0 --38.40,-28.80,4.61,0.00,1.00,-38.40,-28.80,0 --33.60,-28.80,4.65,0.00,1.00,-33.60,-24.00,0 --28.80,-24.00,4.69,0.00,1.00,-28.80,-24.00,0 --24.00,-24.00,4.73,0.00,1.00,-24.00,-19.20,0 --24.00,-19.20,4.77,0.00,1.00,-19.20,-14.40,0 --19.20,-14.40,4.81,0.00,1.00,-14.40,-14.40,0 --14.40,-14.40,4.85,0.00,1.00,-14.40,-9.60,0 --9.60,-9.60,4.89,0.00,1.00,-9.60,-4.80,0 --4.80,-4.80,4.93,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,4.97,0.00,1.00,-4.80,0.00,0 -0.00,0.00,5.01,0.00,1.00,0.00,4.80,0 -4.80,4.80,5.05,0.00,1.00,4.80,4.80,0 -9.60,4.80,5.09,0.00,1.00,4.80,9.60,0 -9.60,9.60,5.13,0.00,1.00,9.60,9.60,0 -14.40,9.60,5.17,0.00,1.00,9.60,14.40,0 -19.20,14.40,5.21,0.00,1.00,14.40,19.20,0 -24.00,19.20,5.25,0.00,1.00,19.20,19.20,0 -28.80,19.20,5.29,0.00,1.00,24.00,24.00,0 -33.60,24.00,5.33,0.00,1.00,24.00,24.00,0 -38.40,24.00,5.37,0.00,1.00,28.80,28.80,0 -43.20,28.80,5.41,0.00,1.00,33.60,28.80,0 -48.00,28.80,5.45,0.00,1.00,38.40,33.60,0 -52.80,28.80,5.49,0.00,1.00,43.20,33.60,0 -57.60,33.60,5.53,0.00,1.00,48.00,33.60,0 -62.40,33.60,5.57,0.00,1.00,52.80,38.40,0 -67.20,33.60,5.61,0.00,1.00,62.40,38.40,0 -72.00,38.40,5.65,0.00,1.00,67.20,38.40,0 -81.60,38.40,5.69,0.00,1.00,76.80,38.40,0 -86.40,38.40,5.73,0.00,1.00,86.40,38.40,0 -91.20,38.40,5.77,0.00,1.00,91.20,38.40,0 -96.00,38.40,5.81,0.00,1.00,100.80,38.40,0 -105.60,38.40,5.85,0.00,1.00,105.60,38.40,0 -110.40,33.60,5.89,0.00,1.00,115.20,33.60,0 -115.20,33.60,5.93,0.00,1.00,120.00,33.60,0 -120.00,33.60,5.97,0.00,1.00,129.60,33.60,0 -124.80,33.60,6.02,0.00,1.00,134.40,28.80,0 -129.60,28.80,6.06,0.00,1.00,139.20,28.80,0 -134.40,28.80,6.10,0.00,1.00,144.00,24.00,0 -139.20,24.00,6.14,0.00,1.00,148.80,24.00,0 -144.00,24.00,6.18,0.00,1.00,153.60,19.20,0 -148.80,19.20,6.22,0.00,1.00,158.40,19.20,0 -153.60,19.20,6.26,0.00,1.00,158.40,14.40,0 -158.40,14.40,6.30,0.00,1.00,163.20,14.40,0 -163.20,14.40,6.34,0.00,1.00,168.00,9.60,0 -168.00,9.60,6.38,0.00,1.00,168.00,9.60,0 -168.00,9.60,6.42,0.00,1.00,172.80,4.80,0 -172.80,4.80,6.46,0.00,1.00,177.60,0.00,0 -177.60,0.00,6.50,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,6.54,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,6.58,0.00,1.00,-177.60,-9.60,0 --168.00,-9.60,6.62,0.00,1.00,-172.80,-9.60,0 --168.00,-9.60,6.66,0.00,1.00,-168.00,-14.40,0 --163.20,-14.40,6.70,0.00,1.00,-168.00,-14.40,0 --158.40,-14.40,6.74,0.00,1.00,-163.20,-19.20,0 --153.60,-19.20,6.78,0.00,1.00,-158.40,-19.20,0 --148.80,-19.20,6.82,0.00,1.00,-158.40,-24.00,0 --144.00,-24.00,6.86,0.00,1.00,-153.60,-24.00,0 --139.20,-24.00,6.90,0.00,1.00,-148.80,-28.80,0 --134.40,-28.80,6.94,0.00,1.00,-144.00,-28.80,0 --129.60,-28.80,6.98,0.00,1.00,-139.20,-33.60,0 --124.80,-33.60,7.02,0.00,1.00,-134.40,-33.60,0 --120.00,-33.60,7.06,0.00,1.00,-129.60,-33.60,0 --115.20,-33.60,7.10,0.00,1.00,-120.00,-38.40,0 --110.40,-33.60,7.14,0.00,1.00,-115.20,-38.40,0 --105.60,-38.40,7.18,0.00,1.00,-105.60,-38.40,0 --96.00,-38.40,7.22,0.00,1.00,-100.80,-38.40,0 --91.20,-38.40,7.26,0.00,1.00,-91.20,-38.40,0 --86.40,-38.40,7.30,0.00,1.00,-86.40,-38.40,0 --81.60,-38.40,7.34,0.00,1.00,-76.80,-38.40,0 --72.00,-38.40,7.38,0.00,1.00,-67.20,-38.40,0 --67.20,-33.60,7.42,0.00,1.00,-62.40,-33.60,0 --62.40,-33.60,7.46,0.00,1.00,-52.80,-33.60,0 --57.60,-33.60,7.50,0.00,1.00,-48.00,-33.60,0 --52.80,-28.80,7.54,0.00,1.00,-43.20,-28.80,0 --48.00,-28.80,7.58,0.00,1.00,-38.40,-28.80,0 --43.20,-28.80,7.62,0.00,1.00,-33.60,-24.00,0 --38.40,-24.00,7.66,0.00,1.00,-28.80,-24.00,0 --33.60,-24.00,7.70,0.00,1.00,-24.00,-19.20,0 --28.80,-19.20,7.74,0.00,1.00,-24.00,-19.20,0 --24.00,-19.20,7.78,0.00,1.00,-19.20,-14.40,0 --19.20,-14.40,7.82,0.00,1.00,-14.40,-9.60,0 --14.40,-9.60,7.86,0.00,1.00,-9.60,-9.60,0 --9.60,-9.60,7.90,0.00,1.00,-9.60,-4.80,0 --9.60,-4.80,7.94,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,7.98,0.00,1.00,-4.80,0.00,0 -0.00,0.00,8.02,0.00,1.00,0.00,4.80,0 -4.80,4.80,8.06,0.00,1.00,4.80,4.80,0 -9.60,4.80,8.10,0.00,1.00,4.80,9.60,0 -14.40,9.60,8.14,0.00,1.00,9.60,9.60,0 -14.40,9.60,8.18,0.00,1.00,9.60,14.40,0 -19.20,14.40,8.22,0.00,1.00,14.40,14.40,0 -24.00,14.40,8.26,0.00,1.00,14.40,19.20,0 -28.80,19.20,8.30,0.00,1.00,19.20,19.20,0 -33.60,19.20,8.34,0.00,1.00,24.00,24.00,0 -38.40,19.20,8.38,0.00,1.00,28.80,24.00,0 -43.20,24.00,8.42,0.00,1.00,28.80,24.00,0 -48.00,24.00,8.46,0.00,1.00,33.60,28.80,0 -52.80,28.80,8.50,0.00,1.00,38.40,28.80,0 -57.60,28.80,8.54,0.00,1.00,48.00,28.80,0 -62.40,28.80,8.58,0.00,1.00,52.80,33.60,0 -67.20,28.80,8.62,0.00,1.00,57.60,33.60,0 -76.80,33.60,8.66,0.00,1.00,67.20,33.60,0 -81.60,33.60,8.70,0.00,1.00,76.80,33.60,0 -86.40,33.60,8.74,0.00,1.00,81.60,33.60,0 -91.20,33.60,8.78,0.00,1.00,91.20,33.60,0 -96.00,33.60,8.82,0.00,1.00,100.80,33.60,0 -100.80,33.60,8.86,0.00,1.00,110.40,33.60,0 -110.40,28.80,8.90,0.00,1.00,115.20,33.60,0 -115.20,28.80,8.94,0.00,1.00,124.80,28.80,0 -120.00,28.80,8.98,0.00,1.00,129.60,28.80,0 -124.80,28.80,9.02,0.00,1.00,139.20,28.80,0 -129.60,24.00,9.06,0.00,1.00,144.00,24.00,0 -134.40,24.00,9.10,0.00,1.00,148.80,24.00,0 -139.20,24.00,9.14,0.00,1.00,153.60,19.20,0 -144.00,19.20,9.18,0.00,1.00,153.60,19.20,0 -148.80,19.20,9.22,0.00,1.00,158.40,14.40,0 -153.60,14.40,9.26,0.00,1.00,163.20,14.40,0 -158.40,14.40,9.30,0.00,1.00,163.20,9.60,0 -163.20,9.60,9.34,0.00,1.00,168.00,9.60,0 -168.00,9.60,9.38,0.00,1.00,172.80,4.80,0 -168.00,4.80,9.42,0.00,1.00,172.80,4.80,0 -172.80,4.80,9.46,0.00,1.00,177.60,0.00,0 -177.60,0.00,9.50,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,9.54,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,9.58,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,9.62,0.00,1.00,-172.80,-9.60,0 --168.00,-9.60,9.66,0.00,1.00,-172.80,-9.60,0 --163.20,-9.60,9.70,0.00,1.00,-168.00,-14.40,0 --158.40,-14.40,9.74,0.00,1.00,-163.20,-14.40,0 --153.60,-14.40,9.78,0.00,1.00,-163.20,-19.20,0 --148.80,-19.20,9.82,0.00,1.00,-158.40,-19.20,0 --144.00,-19.20,9.86,0.00,1.00,-153.60,-24.00,0 --139.20,-24.00,9.90,0.00,1.00,-153.60,-24.00,0 --134.40,-24.00,9.94,0.00,1.00,-148.80,-28.80,0 --129.60,-24.00,9.98,0.00,1.00,-144.00,-28.80,0 --124.80,-28.80,10.03,0.00,1.00,-139.20,-28.80,0 --120.00,-28.80,10.07,0.00,1.00,-129.60,-33.60,0 --115.20,-28.80,10.11,0.00,1.00,-124.80,-33.60,0 --110.40,-28.80,10.15,0.00,1.00,-115.20,-33.60,0 --100.80,-33.60,10.19,0.00,1.00,-110.40,-33.60,0 --96.00,-33.60,10.23,0.00,1.00,-100.80,-33.60,0 --91.20,-33.60,10.27,0.00,1.00,-91.20,-33.60,0 --86.40,-33.60,10.31,0.00,1.00,-81.60,-33.60,0 --81.60,-33.60,10.35,0.00,1.00,-76.80,-33.60,0 --76.80,-33.60,10.39,0.00,1.00,-67.20,-33.60,0 --67.20,-28.80,10.43,0.00,1.00,-57.60,-28.80,0 --62.40,-28.80,10.47,0.00,1.00,-52.80,-28.80,0 --57.60,-28.80,10.51,0.00,1.00,-48.00,-28.80,0 --52.80,-28.80,10.55,0.00,1.00,-38.40,-24.00,0 --48.00,-24.00,10.59,0.00,1.00,-33.60,-24.00,0 --43.20,-24.00,10.63,0.00,1.00,-28.80,-24.00,0 --38.40,-19.20,10.67,0.00,1.00,-28.80,-19.20,0 --33.60,-19.20,10.71,0.00,1.00,-24.00,-19.20,0 --28.80,-19.20,10.75,0.00,1.00,-19.20,-14.40,0 --24.00,-14.40,10.79,0.00,1.00,-14.40,-14.40,0 --19.20,-14.40,10.83,0.00,1.00,-14.40,-9.60,0 --14.40,-9.60,10.87,0.00,1.00,-9.60,-9.60,0 --14.40,-9.60,10.91,0.00,1.00,-9.60,-4.80,0 --9.60,-4.80,10.95,0.00,1.00,-4.80,-4.80,0 --4.80,-4.80,10.99,0.00,1.00,-4.80,0.00,0 -0.00,0.00,11.03,0.00,1.00,0.00,0.00,0 -4.80,0.00,11.07,0.00,1.00,0.00,4.80,0 -9.60,4.80,11.11,0.00,1.00,4.80,4.80,0 -14.40,4.80,11.15,0.00,1.00,4.80,9.60,0 -19.20,9.60,11.19,0.00,1.00,9.60,9.60,0 -19.20,9.60,11.23,0.00,1.00,9.60,14.40,0 -24.00,14.40,11.27,0.00,1.00,14.40,14.40,0 -28.80,14.40,11.31,0.00,1.00,19.20,19.20,0 -33.60,14.40,11.35,0.00,1.00,19.20,19.20,0 -38.40,19.20,11.39,0.00,1.00,24.00,19.20,0 -43.20,19.20,11.43,0.00,1.00,28.80,24.00,0 -48.00,24.00,11.47,0.00,1.00,33.60,24.00,0 -52.80,24.00,11.51,0.00,1.00,38.40,24.00,0 -57.60,24.00,11.55,0.00,1.00,43.20,24.00,0 -62.40,24.00,11.59,0.00,1.00,48.00,28.80,0 -72.00,24.00,11.63,0.00,1.00,52.80,28.80,0 -76.80,28.80,11.67,0.00,1.00,62.40,28.80,0 -81.60,28.80,11.71,0.00,1.00,72.00,28.80,0 -86.40,28.80,11.75,0.00,1.00,81.60,28.80,0 -91.20,28.80,11.79,0.00,1.00,91.20,28.80,0 -96.00,28.80,11.83,0.00,1.00,100.80,28.80,0 -100.80,28.80,11.87,0.00,1.00,110.40,28.80,0 -105.60,28.80,11.91,0.00,1.00,120.00,28.80,0 -110.40,24.00,11.95,0.00,1.00,129.60,24.00,0 -120.00,24.00,11.99,0.00,1.00,134.40,24.00,0 -124.80,24.00,12.03,0.00,1.00,139.20,24.00,0 -129.60,24.00,12.07,0.00,1.00,144.00,24.00,0 -134.40,19.20,12.11,0.00,1.00,148.80,19.20,0 -139.20,19.20,12.15,0.00,1.00,153.60,19.20,0 -144.00,19.20,12.19,0.00,1.00,158.40,14.40,0 -148.80,14.40,12.23,0.00,1.00,163.20,14.40,0 -153.60,14.40,12.27,0.00,1.00,163.20,14.40,0 -158.40,9.60,12.31,0.00,1.00,168.00,9.60,0 -158.40,9.60,12.35,0.00,1.00,168.00,9.60,0 -163.20,9.60,12.39,0.00,1.00,172.80,4.80,0 -168.00,4.80,12.43,0.00,1.00,172.80,4.80,0 -172.80,4.80,12.47,0.00,1.00,177.60,0.00,0 -177.60,0.00,12.51,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,12.55,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,12.59,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,12.63,0.00,1.00,-172.80,-9.60,0 --163.20,-9.60,12.67,0.00,1.00,-172.80,-9.60,0 --158.40,-9.60,12.71,0.00,1.00,-168.00,-14.40,0 --158.40,-9.60,12.75,0.00,1.00,-168.00,-14.40,0 --153.60,-14.40,12.79,0.00,1.00,-163.20,-14.40,0 --148.80,-14.40,12.83,0.00,1.00,-163.20,-19.20,0 --144.00,-19.20,12.87,0.00,1.00,-158.40,-19.20,0 --139.20,-19.20,12.91,0.00,1.00,-153.60,-24.00,0 --134.40,-19.20,12.95,0.00,1.00,-148.80,-24.00,0 --129.60,-24.00,12.99,0.00,1.00,-144.00,-24.00,0 --124.80,-24.00,13.03,0.00,1.00,-139.20,-24.00,0 --120.00,-24.00,13.07,0.00,1.00,-134.40,-28.80,0 --110.40,-24.00,13.11,0.00,1.00,-129.60,-28.80,0 --105.60,-28.80,13.15,0.00,1.00,-120.00,-28.80,0 --100.80,-28.80,13.19,0.00,1.00,-110.40,-28.80,0 --96.00,-28.80,13.23,0.00,1.00,-100.80,-28.80,0 --91.20,-28.80,13.27,0.00,1.00,-91.20,-28.80,0 --86.40,-28.80,13.31,0.00,1.00,-81.60,-28.80,0 --81.60,-28.80,13.35,0.00,1.00,-72.00,-28.80,0 --76.80,-28.80,13.39,0.00,1.00,-62.40,-28.80,0 --72.00,-24.00,13.43,0.00,1.00,-52.80,-24.00,0 --62.40,-24.00,13.47,0.00,1.00,-48.00,-24.00,0 --57.60,-24.00,13.51,0.00,1.00,-43.20,-24.00,0 --52.80,-24.00,13.55,0.00,1.00,-38.40,-24.00,0 --48.00,-24.00,13.59,0.00,1.00,-33.60,-19.20,0 --43.20,-19.20,13.63,0.00,1.00,-28.80,-19.20,0 --38.40,-19.20,13.67,0.00,1.00,-24.00,-19.20,0 --33.60,-14.40,13.71,0.00,1.00,-19.20,-14.40,0 --28.80,-14.40,13.75,0.00,1.00,-19.20,-14.40,0 --24.00,-14.40,13.79,0.00,1.00,-14.40,-9.60,0 --19.20,-9.60,13.83,0.00,1.00,-9.60,-9.60,0 --19.20,-9.60,13.87,0.00,1.00,-9.60,-4.80,0 --14.40,-4.80,13.91,0.00,1.00,-4.80,-4.80,0 --9.60,-4.80,13.95,0.00,1.00,-4.80,-0.00,0 --4.80,-0.00,13.99,0.00,1.00,-0.00,0.00,0 -0.00,0.00,14.04,0.00,1.00,0.00,0.00,0 -4.80,0.00,14.08,0.00,1.00,0.00,4.80,0 -9.60,4.80,14.12,0.00,1.00,4.80,4.80,0 -14.40,4.80,14.16,0.00,1.00,4.80,9.60,0 -19.20,9.60,14.20,0.00,1.00,9.60,9.60,0 -24.00,9.60,14.24,0.00,1.00,9.60,9.60,0 -28.80,9.60,14.28,0.00,1.00,14.40,14.40,0 -33.60,14.40,14.32,0.00,1.00,14.40,14.40,0 -38.40,14.40,14.36,0.00,1.00,19.20,14.40,0 -43.20,14.40,14.40,0.00,1.00,19.20,19.20,0 -48.00,14.40,14.44,0.00,1.00,24.00,19.20,0 -52.80,19.20,14.48,0.00,1.00,28.80,19.20,0 -57.60,19.20,14.52,0.00,1.00,33.60,19.20,0 -62.40,19.20,14.56,0.00,1.00,38.40,24.00,0 -67.20,19.20,14.60,0.00,1.00,43.20,24.00,0 -72.00,24.00,14.64,0.00,1.00,48.00,24.00,0 -76.80,24.00,14.68,0.00,1.00,57.60,24.00,0 -81.60,24.00,14.72,0.00,1.00,67.20,24.00,0 -86.40,24.00,14.76,0.00,1.00,81.60,24.00,0 -91.20,24.00,14.80,0.00,1.00,91.20,24.00,0 -96.00,24.00,14.84,0.00,1.00,105.60,24.00,0 -100.80,24.00,14.88,0.00,1.00,115.20,24.00,0 -105.60,24.00,14.92,0.00,1.00,124.80,24.00,0 -110.40,19.20,14.96,0.00,1.00,134.40,19.20,0 -115.20,19.20,15.00,0.00,1.00,139.20,19.20,0 -120.00,19.20,15.04,0.00,1.00,144.00,19.20,0 -124.80,19.20,15.08,0.00,1.00,148.80,19.20,0 -129.60,19.20,15.12,0.00,1.00,153.60,19.20,0 -134.40,14.40,15.16,0.00,1.00,158.40,14.40,0 -139.20,14.40,15.20,0.00,1.00,163.20,14.40,0 -144.00,14.40,15.24,0.00,1.00,163.20,14.40,0 -148.80,9.60,15.28,0.00,1.00,168.00,9.60,0 -153.60,9.60,15.32,0.00,1.00,168.00,9.60,0 -158.40,9.60,15.36,0.00,1.00,172.80,4.80,0 -163.20,4.80,15.40,0.00,1.00,172.80,4.80,0 -168.00,4.80,15.44,0.00,1.00,177.60,4.80,0 -172.80,4.80,15.48,0.00,1.00,177.60,0.00,0 -177.60,0.00,15.52,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,15.56,0.00,1.00,-177.60,-4.80,0 --172.80,-4.80,15.60,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,15.64,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,15.68,0.00,1.00,-172.80,-9.60,0 --158.40,-9.60,15.72,0.00,1.00,-172.80,-9.60,0 --153.60,-9.60,15.76,0.00,1.00,-168.00,-14.40,0 --148.80,-9.60,15.80,0.00,1.00,-168.00,-14.40,0 --144.00,-14.40,15.84,0.00,1.00,-163.20,-14.40,0 --139.20,-14.40,15.88,0.00,1.00,-163.20,-19.20,0 --134.40,-14.40,15.92,0.00,1.00,-158.40,-19.20,0 --129.60,-19.20,15.96,0.00,1.00,-153.60,-19.20,0 --124.80,-19.20,16.00,0.00,1.00,-148.80,-19.20,0 --120.00,-19.20,16.00,0.00,1.00,-144.00,-19.20,0 --115.20,-19.20,15.96,0.00,1.00,-139.20,-24.00,0 --110.40,-19.20,15.92,0.00,1.00,-134.40,-24.00,0 --105.60,-24.00,15.88,0.00,1.00,-124.80,-24.00,0 --100.80,-24.00,15.84,0.00,1.00,-115.20,-24.00,0 --96.00,-24.00,15.80,0.00,1.00,-105.60,-24.00,0 --91.20,-24.00,15.76,0.00,1.00,-91.20,-24.00,0 --86.40,-24.00,15.72,0.00,1.00,-81.60,-24.00,0 --81.60,-24.00,15.68,0.00,1.00,-67.20,-24.00,0 --76.80,-24.00,15.64,0.00,1.00,-57.60,-24.00,0 --72.00,-24.00,15.60,0.00,1.00,-48.00,-24.00,0 --67.20,-19.20,15.56,0.00,1.00,-43.20,-19.20,0 --62.40,-19.20,15.52,0.00,1.00,-38.40,-19.20,0 --57.60,-19.20,15.48,0.00,1.00,-33.60,-19.20,0 --52.80,-19.20,15.44,0.00,1.00,-28.80,-19.20,0 --48.00,-14.40,15.40,0.00,1.00,-24.00,-14.40,0 --43.20,-14.40,15.36,0.00,1.00,-19.20,-14.40,0 --38.40,-14.40,15.32,0.00,1.00,-19.20,-14.40,0 --33.60,-14.40,15.28,0.00,1.00,-14.40,-9.60,0 --28.80,-9.60,15.24,0.00,1.00,-14.40,-9.60,0 --24.00,-9.60,15.20,0.00,1.00,-9.60,-9.60,0 --19.20,-9.60,15.16,0.00,1.00,-9.60,-4.80,0 --14.40,-4.80,15.12,0.00,1.00,-4.80,-4.80,0 --9.60,-4.80,15.08,0.00,1.00,-4.80,-0.00,0 --4.80,-0.00,15.04,0.00,1.00,-0.00,0.00,0 -0.00,0.00,15.00,0.00,1.00,0.00,0.00,0 -4.80,0.00,14.96,0.00,1.00,0.00,4.80,0 -9.60,4.80,14.92,0.00,1.00,4.80,4.80,0 -14.40,4.80,14.88,0.00,1.00,4.80,4.80,0 -19.20,4.80,14.84,0.00,1.00,4.80,9.60,0 -24.00,9.60,14.80,0.00,1.00,9.60,9.60,0 -28.80,9.60,14.76,0.00,1.00,9.60,9.60,0 -33.60,9.60,14.72,0.00,1.00,9.60,9.60,0 -38.40,9.60,14.68,0.00,1.00,14.40,14.40,0 -43.20,14.40,14.64,0.00,1.00,14.40,14.40,0 -48.00,14.40,14.60,0.00,1.00,19.20,14.40,0 -52.80,14.40,14.56,0.00,1.00,24.00,14.40,0 -57.60,14.40,14.52,0.00,1.00,24.00,19.20,0 -62.40,14.40,14.48,0.00,1.00,28.80,19.20,0 -67.20,14.40,14.44,0.00,1.00,38.40,19.20,0 -72.00,19.20,14.40,0.00,1.00,43.20,19.20,0 -76.80,19.20,14.36,0.00,1.00,52.80,19.20,0 -81.60,19.20,14.32,0.00,1.00,62.40,19.20,0 -86.40,19.20,14.28,0.00,1.00,76.80,19.20,0 -91.20,19.20,14.24,0.00,1.00,96.00,19.20,0 -96.00,19.20,14.20,0.00,1.00,110.40,19.20,0 -100.80,19.20,14.16,0.00,1.00,120.00,19.20,0 -105.60,19.20,14.12,0.00,1.00,134.40,19.20,0 -110.40,19.20,14.08,0.00,1.00,139.20,19.20,0 -115.20,14.40,14.04,0.00,1.00,148.80,14.40,0 -120.00,14.40,13.99,0.00,1.00,153.60,14.40,0 -124.80,14.40,13.95,0.00,1.00,158.40,14.40,0 -129.60,14.40,13.91,0.00,1.00,158.40,14.40,0 -134.40,14.40,13.87,0.00,1.00,163.20,14.40,0 -139.20,9.60,13.83,0.00,1.00,163.20,9.60,0 -144.00,9.60,13.79,0.00,1.00,168.00,9.60,0 -148.80,9.60,13.75,0.00,1.00,168.00,9.60,0 -153.60,9.60,13.71,0.00,1.00,172.80,4.80,0 -158.40,4.80,13.67,0.00,1.00,172.80,4.80,0 -163.20,4.80,13.63,0.00,1.00,172.80,4.80,0 -168.00,4.80,13.59,0.00,1.00,177.60,0.00,0 -172.80,0.00,13.55,0.00,1.00,177.60,0.00,0 -177.60,0.00,13.51,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,13.47,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,13.43,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,13.39,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,13.35,0.00,1.00,-172.80,-4.80,0 --158.40,-4.80,13.31,0.00,1.00,-172.80,-9.60,0 --153.60,-9.60,13.27,0.00,1.00,-172.80,-9.60,0 --148.80,-9.60,13.23,0.00,1.00,-168.00,-9.60,0 --144.00,-9.60,13.19,0.00,1.00,-168.00,-14.40,0 --139.20,-9.60,13.15,0.00,1.00,-163.20,-14.40,0 --134.40,-14.40,13.11,0.00,1.00,-163.20,-14.40,0 --129.60,-14.40,13.07,0.00,1.00,-158.40,-14.40,0 --124.80,-14.40,13.03,0.00,1.00,-158.40,-14.40,0 --120.00,-14.40,12.99,0.00,1.00,-153.60,-19.20,0 --115.20,-14.40,12.95,0.00,1.00,-148.80,-19.20,0 --110.40,-19.20,12.91,0.00,1.00,-139.20,-19.20,0 --105.60,-19.20,12.87,0.00,1.00,-134.40,-19.20,0 --100.80,-19.20,12.83,0.00,1.00,-120.00,-19.20,0 --96.00,-19.20,12.79,0.00,1.00,-110.40,-19.20,0 --91.20,-19.20,12.75,0.00,1.00,-96.00,-19.20,0 --86.40,-19.20,12.71,0.00,1.00,-76.80,-19.20,0 --81.60,-19.20,12.67,0.00,1.00,-62.40,-19.20,0 --76.80,-19.20,12.63,0.00,1.00,-52.80,-19.20,0 --72.00,-19.20,12.59,0.00,1.00,-43.20,-19.20,0 --67.20,-14.40,12.55,0.00,1.00,-38.40,-19.20,0 --62.40,-14.40,12.51,0.00,1.00,-28.80,-14.40,0 --57.60,-14.40,12.47,0.00,1.00,-24.00,-14.40,0 --52.80,-14.40,12.43,0.00,1.00,-24.00,-14.40,0 --48.00,-14.40,12.39,0.00,1.00,-19.20,-14.40,0 --43.20,-14.40,12.35,0.00,1.00,-14.40,-9.60,0 --38.40,-9.60,12.31,0.00,1.00,-14.40,-9.60,0 --33.60,-9.60,12.27,0.00,1.00,-9.60,-9.60,0 --28.80,-9.60,12.23,0.00,1.00,-9.60,-9.60,0 --24.00,-9.60,12.19,0.00,1.00,-9.60,-4.80,0 --19.20,-4.80,12.15,0.00,1.00,-4.80,-4.80,0 --14.40,-4.80,12.11,0.00,1.00,-4.80,-4.80,0 --9.60,-4.80,12.07,0.00,1.00,-4.80,-0.00,0 --4.80,-0.00,12.03,0.00,1.00,-0.00,0.00,0 -0.00,0.00,11.99,0.00,1.00,0.00,0.00,0 -4.80,0.00,11.95,0.00,1.00,0.00,0.00,0 -9.60,0.00,11.91,0.00,1.00,0.00,4.80,0 -14.40,4.80,11.87,0.00,1.00,4.80,4.80,0 -19.20,4.80,11.83,0.00,1.00,4.80,4.80,0 -24.00,4.80,11.79,0.00,1.00,4.80,4.80,0 -28.80,4.80,11.75,0.00,1.00,4.80,9.60,0 -33.60,9.60,11.71,0.00,1.00,9.60,9.60,0 -38.40,9.60,11.67,0.00,1.00,9.60,9.60,0 -43.20,9.60,11.63,0.00,1.00,14.40,9.60,0 -48.00,9.60,11.59,0.00,1.00,14.40,9.60,0 -52.80,9.60,11.55,0.00,1.00,14.40,14.40,0 -57.60,9.60,11.51,0.00,1.00,19.20,14.40,0 -62.40,9.60,11.47,0.00,1.00,24.00,14.40,0 -67.20,14.40,11.43,0.00,1.00,28.80,14.40,0 -72.00,14.40,11.39,0.00,1.00,33.60,14.40,0 -76.80,14.40,11.35,0.00,1.00,43.20,14.40,0 -81.60,14.40,11.31,0.00,1.00,57.60,14.40,0 -86.40,14.40,11.27,0.00,1.00,76.80,14.40,0 -91.20,14.40,11.23,0.00,1.00,96.00,14.40,0 -96.00,14.40,11.19,0.00,1.00,115.20,14.40,0 -100.80,14.40,11.15,0.00,1.00,129.60,14.40,0 -105.60,14.40,11.11,0.00,1.00,139.20,14.40,0 -110.40,14.40,11.07,0.00,1.00,148.80,14.40,0 -115.20,9.60,11.03,0.00,1.00,153.60,14.40,0 -120.00,9.60,10.99,0.00,1.00,158.40,9.60,0 -124.80,9.60,10.95,0.00,1.00,163.20,9.60,0 -129.60,9.60,10.91,0.00,1.00,163.20,9.60,0 -134.40,9.60,10.87,0.00,1.00,168.00,9.60,0 -139.20,9.60,10.83,0.00,1.00,168.00,9.60,0 -144.00,9.60,10.79,0.00,1.00,172.80,9.60,0 -148.80,4.80,10.75,0.00,1.00,172.80,4.80,0 -153.60,4.80,10.71,0.00,1.00,172.80,4.80,0 -158.40,4.80,10.67,0.00,1.00,172.80,4.80,0 -163.20,4.80,10.63,0.00,1.00,177.60,4.80,0 -168.00,4.80,10.59,0.00,1.00,177.60,0.00,0 -172.80,0.00,10.55,0.00,1.00,177.60,0.00,0 -177.60,0.00,10.51,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,10.47,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,10.43,0.00,1.00,-177.60,-4.80,0 --168.00,-4.80,10.39,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,10.35,0.00,1.00,-177.60,-4.80,0 --158.40,-4.80,10.31,0.00,1.00,-172.80,-4.80,0 --153.60,-4.80,10.27,0.00,1.00,-172.80,-9.60,0 --148.80,-4.80,10.23,0.00,1.00,-172.80,-9.60,0 --144.00,-9.60,10.19,0.00,1.00,-172.80,-9.60,0 --139.20,-9.60,10.15,0.00,1.00,-168.00,-9.60,0 --134.40,-9.60,10.11,0.00,1.00,-168.00,-9.60,0 --129.60,-9.60,10.07,0.00,1.00,-163.20,-9.60,0 --124.80,-9.60,10.03,0.00,1.00,-163.20,-14.40,0 --120.00,-9.60,9.98,0.00,1.00,-158.40,-14.40,0 --115.20,-9.60,9.94,0.00,1.00,-153.60,-14.40,0 --110.40,-14.40,9.90,0.00,1.00,-148.80,-14.40,0 --105.60,-14.40,9.86,0.00,1.00,-139.20,-14.40,0 --100.80,-14.40,9.82,0.00,1.00,-129.60,-14.40,0 --96.00,-14.40,9.78,0.00,1.00,-115.20,-14.40,0 --91.20,-14.40,9.74,0.00,1.00,-96.00,-14.40,0 --86.40,-14.40,9.70,0.00,1.00,-76.80,-14.40,0 --81.60,-14.40,9.66,0.00,1.00,-57.60,-14.40,0 --76.80,-14.40,9.62,0.00,1.00,-43.20,-14.40,0 --72.00,-14.40,9.58,0.00,1.00,-33.60,-14.40,0 --67.20,-14.40,9.54,0.00,1.00,-28.80,-14.40,0 --62.40,-9.60,9.50,0.00,1.00,-24.00,-14.40,0 --57.60,-9.60,9.46,0.00,1.00,-19.20,-9.60,0 --52.80,-9.60,9.42,0.00,1.00,-14.40,-9.60,0 --48.00,-9.60,9.38,0.00,1.00,-14.40,-9.60,0 --43.20,-9.60,9.34,0.00,1.00,-14.40,-9.60,0 --38.40,-9.60,9.30,0.00,1.00,-9.60,-9.60,0 --33.60,-9.60,9.26,0.00,1.00,-9.60,-4.80,0 --28.80,-4.80,9.22,0.00,1.00,-4.80,-4.80,0 --24.00,-4.80,9.18,0.00,1.00,-4.80,-4.80,0 --19.20,-4.80,9.14,0.00,1.00,-4.80,-4.80,0 --14.40,-4.80,9.10,0.00,1.00,-4.80,-0.00,0 --9.60,-0.00,9.06,0.00,1.00,-0.00,-0.00,0 --4.80,-0.00,9.02,0.00,1.00,-0.00,0.00,0 -0.00,0.00,8.98,0.00,1.00,0.00,0.00,0 -4.80,0.00,8.94,0.00,1.00,0.00,0.00,0 -9.60,0.00,8.90,0.00,1.00,0.00,0.00,0 -14.40,0.00,8.86,0.00,1.00,0.00,4.80,0 -19.20,4.80,8.82,0.00,1.00,4.80,4.80,0 -24.00,4.80,8.78,0.00,1.00,4.80,4.80,0 -28.80,4.80,8.74,0.00,1.00,4.80,4.80,0 -33.60,4.80,8.70,0.00,1.00,4.80,4.80,0 -38.40,4.80,8.66,0.00,1.00,4.80,4.80,0 -43.20,4.80,8.62,0.00,1.00,9.60,4.80,0 -48.00,4.80,8.58,0.00,1.00,9.60,9.60,0 -52.80,4.80,8.54,0.00,1.00,9.60,9.60,0 -57.60,4.80,8.50,0.00,1.00,14.40,9.60,0 -62.40,9.60,8.46,0.00,1.00,14.40,9.60,0 -67.20,9.60,8.42,0.00,1.00,19.20,9.60,0 -72.00,9.60,8.38,0.00,1.00,24.00,9.60,0 -76.80,9.60,8.34,0.00,1.00,33.60,9.60,0 -81.60,9.60,8.30,0.00,1.00,43.20,9.60,0 -86.40,9.60,8.26,0.00,1.00,67.20,9.60,0 -91.20,9.60,8.22,0.00,1.00,96.00,9.60,0 -96.00,9.60,8.18,0.00,1.00,124.80,9.60,0 -100.80,9.60,8.14,0.00,1.00,144.00,9.60,0 -105.60,9.60,8.10,0.00,1.00,153.60,9.60,0 -110.40,9.60,8.06,0.00,1.00,158.40,9.60,0 -115.20,9.60,8.02,0.00,1.00,163.20,9.60,0 -120.00,9.60,7.98,0.00,1.00,168.00,9.60,0 -124.80,4.80,7.94,0.00,1.00,168.00,9.60,0 -129.60,4.80,7.90,0.00,1.00,168.00,4.80,0 -134.40,4.80,7.86,0.00,1.00,172.80,4.80,0 -139.20,4.80,7.82,0.00,1.00,172.80,4.80,0 -144.00,4.80,7.78,0.00,1.00,172.80,4.80,0 -148.80,4.80,7.74,0.00,1.00,172.80,4.80,0 -153.60,4.80,7.70,0.00,1.00,177.60,4.80,0 -158.40,4.80,7.66,0.00,1.00,177.60,4.80,0 -163.20,4.80,7.62,0.00,1.00,177.60,0.00,0 -168.00,0.00,7.58,0.00,1.00,177.60,0.00,0 -172.80,0.00,7.54,0.00,1.00,177.60,0.00,0 -177.60,0.00,7.50,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,7.46,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,7.42,0.00,1.00,-177.60,-0.00,0 --168.00,-0.00,7.38,0.00,1.00,-177.60,-4.80,0 --163.20,-4.80,7.34,0.00,1.00,-177.60,-4.80,0 --158.40,-4.80,7.30,0.00,1.00,-177.60,-4.80,0 --153.60,-4.80,7.26,0.00,1.00,-177.60,-4.80,0 --148.80,-4.80,7.22,0.00,1.00,-172.80,-4.80,0 --144.00,-4.80,7.18,0.00,1.00,-172.80,-4.80,0 --139.20,-4.80,7.14,0.00,1.00,-172.80,-4.80,0 --134.40,-4.80,7.10,0.00,1.00,-172.80,-9.60,0 --129.60,-4.80,7.06,0.00,1.00,-168.00,-9.60,0 --124.80,-4.80,7.02,0.00,1.00,-168.00,-9.60,0 --120.00,-9.60,6.98,0.00,1.00,-168.00,-9.60,0 --115.20,-9.60,6.94,0.00,1.00,-163.20,-9.60,0 --110.40,-9.60,6.90,0.00,1.00,-158.40,-9.60,0 --105.60,-9.60,6.86,0.00,1.00,-153.60,-9.60,0 --100.80,-9.60,6.82,0.00,1.00,-144.00,-9.60,0 --96.00,-9.60,6.78,0.00,1.00,-124.80,-9.60,0 --91.20,-9.60,6.74,0.00,1.00,-96.00,-9.60,0 --86.40,-9.60,6.70,0.00,1.00,-67.20,-9.60,0 --81.60,-9.60,6.66,0.00,1.00,-43.20,-9.60,0 --76.80,-9.60,6.62,0.00,1.00,-33.60,-9.60,0 --72.00,-9.60,6.58,0.00,1.00,-24.00,-9.60,0 --67.20,-9.60,6.54,0.00,1.00,-19.20,-9.60,0 --62.40,-9.60,6.50,0.00,1.00,-14.40,-9.60,0 --57.60,-4.80,6.46,0.00,1.00,-14.40,-9.60,0 --52.80,-4.80,6.42,0.00,1.00,-9.60,-4.80,0 --48.00,-4.80,6.38,0.00,1.00,-9.60,-4.80,0 --43.20,-4.80,6.34,0.00,1.00,-9.60,-4.80,0 --38.40,-4.80,6.30,0.00,1.00,-4.80,-4.80,0 --33.60,-4.80,6.26,0.00,1.00,-4.80,-4.80,0 --28.80,-4.80,6.22,0.00,1.00,-4.80,-4.80,0 --24.00,-4.80,6.18,0.00,1.00,-4.80,-4.80,0 --19.20,-4.80,6.14,0.00,1.00,-4.80,-0.00,0 --14.40,-0.00,6.10,0.00,1.00,-0.00,-0.00,0 --9.60,-0.00,6.06,0.00,1.00,-0.00,-0.00,0 --4.80,-0.00,6.02,0.00,1.00,-0.00,0.00,0 -0.00,0.00,5.97,0.00,1.00,0.00,0.00,0 -4.80,0.00,5.93,0.00,1.00,0.00,0.00,0 -9.60,0.00,5.89,0.00,1.00,0.00,0.00,0 -14.40,0.00,5.85,0.00,1.00,0.00,0.00,0 -19.20,0.00,5.81,0.00,1.00,0.00,0.00,0 -24.00,0.00,5.77,0.00,1.00,0.00,0.00,0 -28.80,0.00,5.73,0.00,1.00,0.00,4.80,0 -33.60,0.00,5.69,0.00,1.00,0.00,4.80,0 -38.40,0.00,5.65,0.00,1.00,4.80,4.80,0 -43.20,4.80,5.61,0.00,1.00,4.80,4.80,0 -48.00,4.80,5.57,0.00,1.00,4.80,4.80,0 -52.80,4.80,5.53,0.00,1.00,4.80,4.80,0 -57.60,4.80,5.49,0.00,1.00,4.80,4.80,0 -62.40,4.80,5.45,0.00,1.00,4.80,4.80,0 -67.20,4.80,5.41,0.00,1.00,9.60,4.80,0 -72.00,4.80,5.37,0.00,1.00,9.60,4.80,0 -76.80,4.80,5.33,0.00,1.00,14.40,4.80,0 -81.60,4.80,5.29,0.00,1.00,24.00,4.80,0 -86.40,4.80,5.25,0.00,1.00,43.20,4.80,0 -91.20,4.80,5.21,0.00,1.00,110.40,4.80,0 -96.00,4.80,5.17,0.00,1.00,148.80,4.80,0 -100.80,4.80,5.13,0.00,1.00,163.20,4.80,0 -105.60,4.80,5.09,0.00,1.00,168.00,4.80,0 -110.40,4.80,5.05,0.00,1.00,172.80,4.80,0 -115.20,4.80,5.01,0.00,1.00,172.80,4.80,0 -120.00,4.80,4.97,0.00,1.00,172.80,4.80,0 -124.80,4.80,4.93,0.00,1.00,172.80,4.80,0 -129.60,4.80,4.89,0.00,1.00,177.60,4.80,0 -134.40,4.80,4.85,0.00,1.00,177.60,4.80,0 -139.20,0.00,4.81,0.00,1.00,177.60,4.80,0 -144.00,0.00,4.77,0.00,1.00,177.60,4.80,0 -148.80,0.00,4.73,0.00,1.00,177.60,0.00,0 -153.60,0.00,4.69,0.00,1.00,177.60,0.00,0 -158.40,0.00,4.65,0.00,1.00,177.60,0.00,0 -163.20,0.00,4.61,0.00,1.00,177.60,0.00,0 -168.00,0.00,4.57,0.00,1.00,177.60,0.00,0 -172.80,0.00,4.53,0.00,1.00,177.60,0.00,0 -177.60,0.00,4.49,0.00,1.00,177.60,-0.00,0 --177.60,-0.00,4.45,0.00,1.00,-177.60,-0.00,0 --172.80,-0.00,4.41,0.00,1.00,-177.60,-0.00,0 --168.00,-0.00,4.37,0.00,1.00,-177.60,-0.00,0 --163.20,-0.00,4.33,0.00,1.00,-177.60,-0.00,0 --158.40,-0.00,4.29,0.00,1.00,-177.60,-0.00,0 --153.60,-0.00,4.25,0.00,1.00,-177.60,-4.80,0 --148.80,-0.00,4.21,0.00,1.00,-177.60,-4.80,0 --144.00,-0.00,4.17,0.00,1.00,-177.60,-4.80,0 --139.20,-0.00,4.13,0.00,1.00,-177.60,-4.80,0 --134.40,-4.80,4.09,0.00,1.00,-177.60,-4.80,0 --129.60,-4.80,4.05,0.00,1.00,-177.60,-4.80,0 --124.80,-4.80,4.01,0.00,1.00,-172.80,-4.80,0 --120.00,-4.80,3.97,0.00,1.00,-172.80,-4.80,0 --115.20,-4.80,3.93,0.00,1.00,-172.80,-4.80,0 --110.40,-4.80,3.89,0.00,1.00,-172.80,-4.80,0 --105.60,-4.80,3.85,0.00,1.00,-168.00,-4.80,0 --100.80,-4.80,3.81,0.00,1.00,-163.20,-4.80,0 --96.00,-4.80,3.77,0.00,1.00,-148.80,-4.80,0 --91.20,-4.80,3.73,0.00,1.00,-110.40,-4.80,0 --86.40,-4.80,3.69,0.00,1.00,-43.20,-4.80,0 --81.60,-4.80,3.65,0.00,1.00,-24.00,-4.80,0 --76.80,-4.80,3.61,0.00,1.00,-14.40,-4.80,0 --72.00,-4.80,3.57,0.00,1.00,-9.60,-4.80,0 --67.20,-4.80,3.53,0.00,1.00,-9.60,-4.80,0 --62.40,-4.80,3.49,0.00,1.00,-4.80,-4.80,0 --57.60,-4.80,3.45,0.00,1.00,-4.80,-4.80,0 --52.80,-4.80,3.41,0.00,1.00,-4.80,-4.80,0 --48.00,-4.80,3.37,0.00,1.00,-4.80,-4.80,0 --43.20,-4.80,3.33,0.00,1.00,-4.80,-4.80,0 --38.40,-0.00,3.29,0.00,1.00,-4.80,-4.80,0 --33.60,-0.00,3.25,0.00,1.00,-0.00,-0.00,0 --28.80,-0.00,3.21,0.00,1.00,-0.00,-0.00,0 --24.00,-0.00,3.17,0.00,1.00,-0.00,-0.00,0 --19.20,-0.00,3.13,0.00,1.00,-0.00,-0.00,0 --14.40,-0.00,3.09,0.00,1.00,-0.00,-0.00,0 --9.60,-0.00,3.05,0.00,1.00,-0.00,-0.00,0 --4.80,-0.00,3.01,0.00,1.00,-0.00,0.00,0 -0.00,0.00,2.97,0.00,1.00,-0.00,0.00,0 -4.80,-0.00,2.93,0.00,1.00,-0.00,0.00,0 -9.60,-0.00,2.89,0.00,1.00,-0.00,0.00,0 -14.40,-0.00,2.85,0.00,1.00,-0.00,0.00,0 -19.20,-0.00,2.81,0.00,1.00,-0.00,0.00,0 -24.00,-0.00,2.77,0.00,1.00,-0.00,0.00,0 -28.80,-0.00,2.73,0.00,1.00,-0.00,0.00,0 -33.60,-0.00,2.69,0.00,1.00,-0.00,0.00,0 -38.40,-0.00,2.65,0.00,1.00,-0.00,0.00,0 -43.20,-0.00,2.61,0.00,1.00,-0.00,0.00,0 -48.00,-0.00,2.57,0.00,1.00,-0.00,0.00,0 -52.80,-0.00,2.53,0.00,1.00,-0.00,0.00,0 -57.60,-0.00,2.49,0.00,1.00,-0.00,0.00,0 -62.40,-0.00,2.45,0.00,1.00,-0.00,0.00,0 -67.20,-0.00,2.41,0.00,1.00,-4.80,0.00,0 -72.00,-0.00,2.37,0.00,1.00,-4.80,0.00,0 -76.80,-0.00,2.33,0.00,1.00,-4.80,0.00,0 -81.60,-0.00,2.29,0.00,1.00,-9.60,0.00,0 -86.40,-0.00,2.25,0.00,1.00,-19.20,0.00,0 -91.20,-0.00,2.21,0.00,1.00,-134.40,0.00,0 -96.00,-0.00,2.17,0.00,1.00,-168.00,0.00,0 -100.80,-0.00,2.13,0.00,1.00,-172.80,0.00,0 -105.60,-0.00,2.09,0.00,1.00,-177.60,0.00,0 -110.40,-0.00,2.05,0.00,1.00,-177.60,0.00,0 -115.20,-0.00,2.01,0.00,1.00,-177.60,0.00,0 -120.00,-0.00,1.96,0.00,1.00,-177.60,0.00,0 -124.80,-0.00,1.92,0.00,1.00,-177.60,0.00,0 -129.60,-0.00,1.88,0.00,1.00,-177.60,0.00,0 -134.40,-0.00,1.84,0.00,1.00,-177.60,0.00,0 -139.20,-0.00,1.80,0.00,1.00,-177.60,0.00,0 -144.00,-0.00,1.76,0.00,1.00,-177.60,0.00,0 -148.80,-0.00,1.72,0.00,1.00,-177.60,0.00,0 -153.60,-0.00,1.68,0.00,1.00,-177.60,0.00,0 -158.40,-0.00,1.64,0.00,1.00,-177.60,0.00,0 -163.20,-0.00,1.60,0.00,1.00,-177.60,0.00,0 -168.00,-0.00,1.56,0.00,1.00,-177.60,0.00,0 -172.80,-0.00,1.52,0.00,1.00,-177.60,0.00,0 -177.60,-0.00,1.48,0.00,1.00,-177.60,0.00,0 --177.60,0.00,1.44,0.00,1.00,177.60,0.00,0 --172.80,0.00,1.40,0.00,1.00,177.60,0.00,0 --168.00,0.00,1.36,0.00,1.00,177.60,0.00,0 --163.20,0.00,1.32,0.00,1.00,177.60,0.00,0 --158.40,0.00,1.28,0.00,1.00,177.60,0.00,0 --153.60,0.00,1.24,0.00,1.00,177.60,0.00,0 --148.80,0.00,1.20,0.00,1.00,177.60,0.00,0 --144.00,0.00,1.16,0.00,1.00,177.60,0.00,0 --139.20,0.00,1.12,0.00,1.00,177.60,0.00,0 --134.40,0.00,1.08,0.00,1.00,177.60,0.00,0 --129.60,0.00,1.04,0.00,1.00,177.60,0.00,0 --124.80,0.00,1.00,0.00,1.00,177.60,0.00,0 --120.00,0.00,0.96,0.00,1.00,177.60,0.00,0 --115.20,0.00,0.92,0.00,1.00,177.60,0.00,0 --110.40,0.00,0.88,0.00,1.00,177.60,0.00,0 --105.60,0.00,0.84,0.00,1.00,177.60,0.00,0 --100.80,0.00,0.80,0.00,1.00,172.80,0.00,0 --96.00,0.00,0.76,0.00,1.00,168.00,0.00,0 --91.20,0.00,0.72,0.00,1.00,134.40,0.00,0 --86.40,0.00,0.68,0.00,1.00,19.20,0.00,0 --81.60,0.00,0.64,0.00,1.00,9.60,0.00,0 --76.80,0.00,0.60,0.00,1.00,4.80,0.00,0 --72.00,0.00,0.56,0.00,1.00,4.80,0.00,0 --67.20,0.00,0.52,0.00,1.00,4.80,0.00,0 --62.40,0.00,0.48,0.00,1.00,0.00,0.00,0 --57.60,0.00,0.44,0.00,1.00,0.00,0.00,0 --52.80,0.00,0.40,0.00,1.00,0.00,0.00,0 --48.00,0.00,0.36,0.00,1.00,0.00,0.00,0 --43.20,0.00,0.32,0.00,1.00,0.00,0.00,0 --38.40,0.00,0.28,0.00,1.00,0.00,0.00,0 --33.60,0.00,0.24,0.00,1.00,0.00,0.00,0 --28.80,0.00,0.20,0.00,1.00,0.00,0.00,0 --24.00,0.00,0.16,0.00,1.00,0.00,0.00,0 --19.20,0.00,0.12,0.00,1.00,0.00,0.00,0 --14.40,0.00,0.08,0.00,1.00,0.00,0.00,0 --9.60,0.00,0.04,0.00,1.00,0.00,0.00,0 --4.80,0.00,0.00,0.00,1.00,0.00,0.00,0 diff --git a/scripts/tools/Darwin/thirdPartyLegalnotices/licenses_wav-diff.html b/scripts/tools/Darwin/thirdPartyLegalnotices/licenses_wav-diff.html index 0b17bd169b1a4d1eeae710d99bcf6ce134216e86..1bdee68950575ca1db5c3b71da74ad7986efc1a7 100644 --- a/scripts/tools/Darwin/thirdPartyLegalnotices/licenses_wav-diff.html +++ b/scripts/tools/Darwin/thirdPartyLegalnotices/licenses_wav-diff.html @@ -44,9 +44,8 @@

      Overview of licenses:

      All license text:

      @@ -267,6 +266,7 @@

      Used by:

                                       Apache License
                                  Version 2.0, January 2004
      @@ -678,199 +678,6 @@
          WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
          See the License for the specific language governing permissions and
          limitations under the License.
      -
      - -
    • -

      Apache License 2.0

      -

      Used by:

      - -
                                    Apache License
      -                        Version 2.0, January 2004
      -                     http://www.apache.org/licenses/
      -
      -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
      -
      -1. Definitions.
      -
      -   "License" shall mean the terms and conditions for use, reproduction,
      -   and distribution as defined by Sections 1 through 9 of this document.
      -
      -   "Licensor" shall mean the copyright owner or entity authorized by
      -   the copyright owner that is granting the License.
      -
      -   "Legal Entity" shall mean the union of the acting entity and all
      -   other entities that control, are controlled by, or are under common
      -   control with that entity. For the purposes of this definition,
      -   "control" means (i) the power, direct or indirect, to cause the
      -   direction or management of such entity, whether by contract or
      -   otherwise, or (ii) ownership of fifty percent (50%) or more of the
      -   outstanding shares, or (iii) beneficial ownership of such entity.
      -
      -   "You" (or "Your") shall mean an individual or Legal Entity
      -   exercising permissions granted by this License.
      -
      -   "Source" form shall mean the preferred form for making modifications,
      -   including but not limited to software source code, documentation
      -   source, and configuration files.
      -
      -   "Object" form shall mean any form resulting from mechanical
      -   transformation or translation of a Source form, including but
      -   not limited to compiled object code, generated documentation,
      -   and conversions to other media types.
      -
      -   "Work" shall mean the work of authorship, whether in Source or
      -   Object form, made available under the License, as indicated by a
      -   copyright notice that is included in or attached to the work
      -   (an example is provided in the Appendix below).
      -
      -   "Derivative Works" shall mean any work, whether in Source or Object
      -   form, that is based on (or derived from) the Work and for which the
      -   editorial revisions, annotations, elaborations, or other modifications
      -   represent, as a whole, an original work of authorship. For the purposes
      -   of this License, Derivative Works shall not include works that remain
      -   separable from, or merely link (or bind by name) to the interfaces of,
      -   the Work and Derivative Works thereof.
      -
      -   "Contribution" shall mean any work of authorship, including
      -   the original version of the Work and any modifications or additions
      -   to that Work or Derivative Works thereof, that is intentionally
      -   submitted to Licensor for inclusion in the Work by the copyright owner
      -   or by an individual or Legal Entity authorized to submit on behalf of
      -   the copyright owner. For the purposes of this definition, "submitted"
      -   means any form of electronic, verbal, or written communication sent
      -   to the Licensor or its representatives, including but not limited to
      -   communication on electronic mailing lists, source code control systems,
      -   and issue tracking systems that are managed by, or on behalf of, the
      -   Licensor for the purpose of discussing and improving the Work, but
      -   excluding communication that is conspicuously marked or otherwise
      -   designated in writing by the copyright owner as "Not a Contribution."
      -
      -   "Contributor" shall mean Licensor and any individual or Legal Entity
      -   on behalf of whom a Contribution has been received by Licensor and
      -   subsequently incorporated within the Work.
      -
      -2. Grant of Copyright License. Subject to the terms and conditions of
      -   this License, each Contributor hereby grants to You a perpetual,
      -   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      -   copyright license to reproduce, prepare Derivative Works of,
      -   publicly display, publicly perform, sublicense, and distribute the
      -   Work and such Derivative Works in Source or Object form.
      -
      -3. Grant of Patent License. Subject to the terms and conditions of
      -   this License, each Contributor hereby grants to You a perpetual,
      -   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      -   (except as stated in this section) patent license to make, have made,
      -   use, offer to sell, sell, import, and otherwise transfer the Work,
      -   where such license applies only to those patent claims licensable
      -   by such Contributor that are necessarily infringed by their
      -   Contribution(s) alone or by combination of their Contribution(s)
      -   with the Work to which such Contribution(s) was submitted. If You
      -   institute patent litigation against any entity (including a
      -   cross-claim or counterclaim in a lawsuit) alleging that the Work
      -   or a Contribution incorporated within the Work constitutes direct
      -   or contributory patent infringement, then any patent licenses
      -   granted to You under this License for that Work shall terminate
      -   as of the date such litigation is filed.
      -
      -4. Redistribution. You may reproduce and distribute copies of the
      -   Work or Derivative Works thereof in any medium, with or without
      -   modifications, and in Source or Object form, provided that You
      -   meet the following conditions:
      -
      -   (a) You must give any other recipients of the Work or
      -       Derivative Works a copy of this License; and
      -
      -   (b) You must cause any modified files to carry prominent notices
      -       stating that You changed the files; and
      -
      -   (c) You must retain, in the Source form of any Derivative Works
      -       that You distribute, all copyright, patent, trademark, and
      -       attribution notices from the Source form of the Work,
      -       excluding those notices that do not pertain to any part of
      -       the Derivative Works; and
      -
      -   (d) If the Work includes a "NOTICE" text file as part of its
      -       distribution, then any Derivative Works that You distribute must
      -       include a readable copy of the attribution notices contained
      -       within such NOTICE file, excluding those notices that do not
      -       pertain to any part of the Derivative Works, in at least one
      -       of the following places: within a NOTICE text file distributed
      -       as part of the Derivative Works; within the Source form or
      -       documentation, if provided along with the Derivative Works; or,
      -       within a display generated by the Derivative Works, if and
      -       wherever such third-party notices normally appear. The contents
      -       of the NOTICE file are for informational purposes only and
      -       do not modify the License. You may add Your own attribution
      -       notices within Derivative Works that You distribute, alongside
      -       or as an addendum to the NOTICE text from the Work, provided
      -       that such additional attribution notices cannot be construed
      -       as modifying the License.
      -
      -   You may add Your own copyright statement to Your modifications and
      -   may provide additional or different license terms and conditions
      -   for use, reproduction, or distribution of Your modifications, or
      -   for any such Derivative Works as a whole, provided Your use,
      -   reproduction, and distribution of the Work otherwise complies with
      -   the conditions stated in this License.
      -
      -5. Submission of Contributions. Unless You explicitly state otherwise,
      -   any Contribution intentionally submitted for inclusion in the Work
      -   by You to the Licensor shall be under the terms and conditions of
      -   this License, without any additional terms or conditions.
      -   Notwithstanding the above, nothing herein shall supersede or modify
      -   the terms of any separate license agreement you may have executed
      -   with Licensor regarding such Contributions.
      -
      -6. Trademarks. This License does not grant permission to use the trade
      -   names, trademarks, service marks, or product names of the Licensor,
      -   except as required for reasonable and customary use in describing the
      -   origin of the Work and reproducing the content of the NOTICE file.
      -
      -7. Disclaimer of Warranty. Unless required by applicable law or
      -   agreed to in writing, Licensor provides the Work (and each
      -   Contributor provides its Contributions) on an "AS IS" BASIS,
      -   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
      -   implied, including, without limitation, any warranties or conditions
      -   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
      -   PARTICULAR PURPOSE. You are solely responsible for determining the
      -   appropriateness of using or redistributing the Work and assume any
      -   risks associated with Your exercise of permissions under this License.
      -
      -8. Limitation of Liability. In no event and under no legal theory,
      -   whether in tort (including negligence), contract, or otherwise,
      -   unless required by applicable law (such as deliberate and grossly
      -   negligent acts) or agreed to in writing, shall any Contributor be
      -   liable to You for damages, including any direct, indirect, special,
      -   incidental, or consequential damages of any character arising as a
      -   result of this License or out of the use or inability to use the
      -   Work (including but not limited to damages for loss of goodwill,
      -   work stoppage, computer failure or malfunction, or any and all
      -   other commercial damages or losses), even if such Contributor
      -   has been advised of the possibility of such damages.
      -
      -9. Accepting Warranty or Additional Liability. While redistributing
      -   the Work or Derivative Works thereof, You may choose to offer,
      -   and charge a fee for, acceptance of support, warranty, indemnity,
      -   or other liability obligations and/or rights consistent with this
      -   License. However, in accepting such obligations, You may act only
      -   on Your own behalf and on Your sole responsibility, not on behalf
      -   of any other Contributor, and only if You agree to indemnify,
      -   defend, and hold each Contributor harmless for any liability
      -   incurred by, or claims asserted against, such Contributor by reason
      -   of your accepting any such warranty or additional liability.
      -
      -END OF TERMS AND CONDITIONS
       
    • @@ -1088,18 +895,22 @@ limitations under the License.
      • autocfg 1.0.1
      • bitflags 1.3.2
      • -
      • cc 1.2.10
      • -
      • cfg-if 1.0.0
      • -
      • cmake 0.1.52
      • +
      • cc 1.0.71
      • +
      • cmake 0.1.46
      • either 1.13.0
      • hashbrown 0.11.2
      • heck 0.3.3
      • hermit-abi 0.1.19
      • indexmap 1.7.0
      • itertools 0.13.0
      • +
      • itoa 0.4.8
      • lazy_static 1.4.0
      • libc 0.2.104
      • num-traits 0.2.14
      • +
      • proc-macro2 1.0.29
      • +
      • quote 1.0.10
      • +
      • serde 1.0.130
      • +
      • serde_json 1.0.68
      • syn 1.0.80
      • unicode-segmentation 1.8.0
      • unicode-width 0.1.9
      • @@ -1817,27 +1628,6 @@ You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - - -
      • -

        Apache License 2.0

        -

        Used by:

        - -
        Copyright 2015 Nicholas Allegra (comex).
        -
        -Licensed under the Apache License, Version 2.0 (the "License");
        -you may not use this file except in compliance with the License.
        -You may obtain a copy of the License at
        -
        -    http://www.apache.org/licenses/LICENSE-2.0
        -
         Unless required by applicable law or agreed to in writing, software
         distributed under the License is distributed on an "AS IS" BASIS,
         WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        @@ -1910,37 +1700,6 @@ furnished to do so, subject to the following conditions:
         The above copyright notice and this permission notice shall be included in all
         copies or substantial portions of the Software.
         
        -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        -SOFTWARE.
        -
        -
      • -
      • -

        MIT License

        -

        Used by:

        - -
        MIT License
        -
        -Copyright (c) 2017 Marcin Sas-Szymański
        -
        -Permission is hereby granted, free of charge, to any person obtaining a copy
        -of this software and associated documentation files (the "Software"), to deal
        -in the Software without restriction, including without limitation the rights
        -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        -copies of the Software, and to permit persons to whom the Software is
        -furnished to do so, subject to the following conditions:
        -
        -The above copyright notice and this permission notice shall be included in all
        -copies or substantial portions of the Software.
        -
         THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        @@ -2049,53 +1808,6 @@ THE SOFTWARE.
                         
        This project is dual-licensed under the Unlicense and MIT licenses.
         
         You may use this code under the terms of either license.
        -
        -
      • -
      • -

        Unicode License v3

        -

        Used by:

        - -
        UNICODE LICENSE V3
        -
        -COPYRIGHT AND PERMISSION NOTICE
        -
        -Copyright © 1991-2023 Unicode, Inc.
        -
        -NOTICE TO USER: Carefully read the following legal agreement. BY
        -DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR
        -SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE
        -TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT
        -DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.
        -
        -Permission is hereby granted, free of charge, to any person obtaining a
        -copy of data files and any associated documentation (the "Data Files") or
        -software and any associated documentation (the "Software") to deal in the
        -Data Files or Software without restriction, including without limitation
        -the rights to use, copy, modify, merge, publish, distribute, and/or sell
        -copies of the Data Files or Software, and to permit persons to whom the
        -Data Files or Software are furnished to do so, provided that either (a)
        -this copyright and permission notice appear with all copies of the Data
        -Files or Software, or (b) this copyright and permission notice appear in
        -associated Documentation.
        -
        -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
        -KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
        -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
        -THIRD PARTY RIGHTS.
        -
        -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE
        -BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,
        -OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
        -WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
        -ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA
        -FILES OR SOFTWARE.
        -
        -Except as contained in this notice, the name of a copyright holder shall
        -not be used in advertising or otherwise to promote the sale, use or other
        -dealings in these Data Files or Software without prior written
        -authorization of the copyright holder.
         
      diff --git a/scripts/tools/Darwin/wav-diff b/scripts/tools/Darwin/wav-diff index 8cc94205eef6c3df56a89a3a7041b10815ed6635..d46f932f04109c86b7ce94d13102821527bbd8e8 100755 Binary files a/scripts/tools/Darwin/wav-diff and b/scripts/tools/Darwin/wav-diff differ diff --git a/scripts/tools/Linux/thirdPartyLegalnotices/licenses_wav-diff.html b/scripts/tools/Linux/thirdPartyLegalnotices/licenses_wav-diff.html index 0b17bd169b1a4d1eeae710d99bcf6ce134216e86..1bdee68950575ca1db5c3b71da74ad7986efc1a7 100644 --- a/scripts/tools/Linux/thirdPartyLegalnotices/licenses_wav-diff.html +++ b/scripts/tools/Linux/thirdPartyLegalnotices/licenses_wav-diff.html @@ -44,9 +44,8 @@

      Overview of licenses:

      All license text:

      @@ -267,6 +266,7 @@

      Used by:

                                       Apache License
                                  Version 2.0, January 2004
      @@ -678,199 +678,6 @@
          WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
          See the License for the specific language governing permissions and
          limitations under the License.
      -
      -
    • -
    • -

      Apache License 2.0

      -

      Used by:

      - -
                                    Apache License
      -                        Version 2.0, January 2004
      -                     http://www.apache.org/licenses/
      -
      -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
      -
      -1. Definitions.
      -
      -   "License" shall mean the terms and conditions for use, reproduction,
      -   and distribution as defined by Sections 1 through 9 of this document.
      -
      -   "Licensor" shall mean the copyright owner or entity authorized by
      -   the copyright owner that is granting the License.
      -
      -   "Legal Entity" shall mean the union of the acting entity and all
      -   other entities that control, are controlled by, or are under common
      -   control with that entity. For the purposes of this definition,
      -   "control" means (i) the power, direct or indirect, to cause the
      -   direction or management of such entity, whether by contract or
      -   otherwise, or (ii) ownership of fifty percent (50%) or more of the
      -   outstanding shares, or (iii) beneficial ownership of such entity.
      -
      -   "You" (or "Your") shall mean an individual or Legal Entity
      -   exercising permissions granted by this License.
      -
      -   "Source" form shall mean the preferred form for making modifications,
      -   including but not limited to software source code, documentation
      -   source, and configuration files.
      -
      -   "Object" form shall mean any form resulting from mechanical
      -   transformation or translation of a Source form, including but
      -   not limited to compiled object code, generated documentation,
      -   and conversions to other media types.
      -
      -   "Work" shall mean the work of authorship, whether in Source or
      -   Object form, made available under the License, as indicated by a
      -   copyright notice that is included in or attached to the work
      -   (an example is provided in the Appendix below).
      -
      -   "Derivative Works" shall mean any work, whether in Source or Object
      -   form, that is based on (or derived from) the Work and for which the
      -   editorial revisions, annotations, elaborations, or other modifications
      -   represent, as a whole, an original work of authorship. For the purposes
      -   of this License, Derivative Works shall not include works that remain
      -   separable from, or merely link (or bind by name) to the interfaces of,
      -   the Work and Derivative Works thereof.
      -
      -   "Contribution" shall mean any work of authorship, including
      -   the original version of the Work and any modifications or additions
      -   to that Work or Derivative Works thereof, that is intentionally
      -   submitted to Licensor for inclusion in the Work by the copyright owner
      -   or by an individual or Legal Entity authorized to submit on behalf of
      -   the copyright owner. For the purposes of this definition, "submitted"
      -   means any form of electronic, verbal, or written communication sent
      -   to the Licensor or its representatives, including but not limited to
      -   communication on electronic mailing lists, source code control systems,
      -   and issue tracking systems that are managed by, or on behalf of, the
      -   Licensor for the purpose of discussing and improving the Work, but
      -   excluding communication that is conspicuously marked or otherwise
      -   designated in writing by the copyright owner as "Not a Contribution."
      -
      -   "Contributor" shall mean Licensor and any individual or Legal Entity
      -   on behalf of whom a Contribution has been received by Licensor and
      -   subsequently incorporated within the Work.
      -
      -2. Grant of Copyright License. Subject to the terms and conditions of
      -   this License, each Contributor hereby grants to You a perpetual,
      -   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      -   copyright license to reproduce, prepare Derivative Works of,
      -   publicly display, publicly perform, sublicense, and distribute the
      -   Work and such Derivative Works in Source or Object form.
      -
      -3. Grant of Patent License. Subject to the terms and conditions of
      -   this License, each Contributor hereby grants to You a perpetual,
      -   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      -   (except as stated in this section) patent license to make, have made,
      -   use, offer to sell, sell, import, and otherwise transfer the Work,
      -   where such license applies only to those patent claims licensable
      -   by such Contributor that are necessarily infringed by their
      -   Contribution(s) alone or by combination of their Contribution(s)
      -   with the Work to which such Contribution(s) was submitted. If You
      -   institute patent litigation against any entity (including a
      -   cross-claim or counterclaim in a lawsuit) alleging that the Work
      -   or a Contribution incorporated within the Work constitutes direct
      -   or contributory patent infringement, then any patent licenses
      -   granted to You under this License for that Work shall terminate
      -   as of the date such litigation is filed.
      -
      -4. Redistribution. You may reproduce and distribute copies of the
      -   Work or Derivative Works thereof in any medium, with or without
      -   modifications, and in Source or Object form, provided that You
      -   meet the following conditions:
      -
      -   (a) You must give any other recipients of the Work or
      -       Derivative Works a copy of this License; and
      -
      -   (b) You must cause any modified files to carry prominent notices
      -       stating that You changed the files; and
      -
      -   (c) You must retain, in the Source form of any Derivative Works
      -       that You distribute, all copyright, patent, trademark, and
      -       attribution notices from the Source form of the Work,
      -       excluding those notices that do not pertain to any part of
      -       the Derivative Works; and
      -
      -   (d) If the Work includes a "NOTICE" text file as part of its
      -       distribution, then any Derivative Works that You distribute must
      -       include a readable copy of the attribution notices contained
      -       within such NOTICE file, excluding those notices that do not
      -       pertain to any part of the Derivative Works, in at least one
      -       of the following places: within a NOTICE text file distributed
      -       as part of the Derivative Works; within the Source form or
      -       documentation, if provided along with the Derivative Works; or,
      -       within a display generated by the Derivative Works, if and
      -       wherever such third-party notices normally appear. The contents
      -       of the NOTICE file are for informational purposes only and
      -       do not modify the License. You may add Your own attribution
      -       notices within Derivative Works that You distribute, alongside
      -       or as an addendum to the NOTICE text from the Work, provided
      -       that such additional attribution notices cannot be construed
      -       as modifying the License.
      -
      -   You may add Your own copyright statement to Your modifications and
      -   may provide additional or different license terms and conditions
      -   for use, reproduction, or distribution of Your modifications, or
      -   for any such Derivative Works as a whole, provided Your use,
      -   reproduction, and distribution of the Work otherwise complies with
      -   the conditions stated in this License.
      -
      -5. Submission of Contributions. Unless You explicitly state otherwise,
      -   any Contribution intentionally submitted for inclusion in the Work
      -   by You to the Licensor shall be under the terms and conditions of
      -   this License, without any additional terms or conditions.
      -   Notwithstanding the above, nothing herein shall supersede or modify
      -   the terms of any separate license agreement you may have executed
      -   with Licensor regarding such Contributions.
      -
      -6. Trademarks. This License does not grant permission to use the trade
      -   names, trademarks, service marks, or product names of the Licensor,
      -   except as required for reasonable and customary use in describing the
      -   origin of the Work and reproducing the content of the NOTICE file.
      -
      -7. Disclaimer of Warranty. Unless required by applicable law or
      -   agreed to in writing, Licensor provides the Work (and each
      -   Contributor provides its Contributions) on an "AS IS" BASIS,
      -   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
      -   implied, including, without limitation, any warranties or conditions
      -   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
      -   PARTICULAR PURPOSE. You are solely responsible for determining the
      -   appropriateness of using or redistributing the Work and assume any
      -   risks associated with Your exercise of permissions under this License.
      -
      -8. Limitation of Liability. In no event and under no legal theory,
      -   whether in tort (including negligence), contract, or otherwise,
      -   unless required by applicable law (such as deliberate and grossly
      -   negligent acts) or agreed to in writing, shall any Contributor be
      -   liable to You for damages, including any direct, indirect, special,
      -   incidental, or consequential damages of any character arising as a
      -   result of this License or out of the use or inability to use the
      -   Work (including but not limited to damages for loss of goodwill,
      -   work stoppage, computer failure or malfunction, or any and all
      -   other commercial damages or losses), even if such Contributor
      -   has been advised of the possibility of such damages.
      -
      -9. Accepting Warranty or Additional Liability. While redistributing
      -   the Work or Derivative Works thereof, You may choose to offer,
      -   and charge a fee for, acceptance of support, warranty, indemnity,
      -   or other liability obligations and/or rights consistent with this
      -   License. However, in accepting such obligations, You may act only
      -   on Your own behalf and on Your sole responsibility, not on behalf
      -   of any other Contributor, and only if You agree to indemnify,
      -   defend, and hold each Contributor harmless for any liability
      -   incurred by, or claims asserted against, such Contributor by reason
      -   of your accepting any such warranty or additional liability.
      -
      -END OF TERMS AND CONDITIONS
       
    • @@ -1088,18 +895,22 @@ limitations under the License.
      • autocfg 1.0.1
      • bitflags 1.3.2
      • -
      • cc 1.2.10
      • -
      • cfg-if 1.0.0
      • -
      • cmake 0.1.52
      • +
      • cc 1.0.71
      • +
      • cmake 0.1.46
      • either 1.13.0
      • hashbrown 0.11.2
      • heck 0.3.3
      • hermit-abi 0.1.19
      • indexmap 1.7.0
      • itertools 0.13.0
      • +
      • itoa 0.4.8
      • lazy_static 1.4.0
      • libc 0.2.104
      • num-traits 0.2.14
      • +
      • proc-macro2 1.0.29
      • +
      • quote 1.0.10
      • +
      • serde 1.0.130
      • +
      • serde_json 1.0.68
      • syn 1.0.80
      • unicode-segmentation 1.8.0
      • unicode-width 0.1.9
      • @@ -1817,27 +1628,6 @@ You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - - -
      • -

        Apache License 2.0

        -

        Used by:

        - -
        Copyright 2015 Nicholas Allegra (comex).
        -
        -Licensed under the Apache License, Version 2.0 (the "License");
        -you may not use this file except in compliance with the License.
        -You may obtain a copy of the License at
        -
        -    http://www.apache.org/licenses/LICENSE-2.0
        -
         Unless required by applicable law or agreed to in writing, software
         distributed under the License is distributed on an "AS IS" BASIS,
         WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        @@ -1910,37 +1700,6 @@ furnished to do so, subject to the following conditions:
         The above copyright notice and this permission notice shall be included in all
         copies or substantial portions of the Software.
         
        -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        -SOFTWARE.
        -
        -
      • -
      • -

        MIT License

        -

        Used by:

        - -
        MIT License
        -
        -Copyright (c) 2017 Marcin Sas-Szymański
        -
        -Permission is hereby granted, free of charge, to any person obtaining a copy
        -of this software and associated documentation files (the "Software"), to deal
        -in the Software without restriction, including without limitation the rights
        -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        -copies of the Software, and to permit persons to whom the Software is
        -furnished to do so, subject to the following conditions:
        -
        -The above copyright notice and this permission notice shall be included in all
        -copies or substantial portions of the Software.
        -
         THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        @@ -2049,53 +1808,6 @@ THE SOFTWARE.
                         
        This project is dual-licensed under the Unlicense and MIT licenses.
         
         You may use this code under the terms of either license.
        -
        -
      • -
      • -

        Unicode License v3

        -

        Used by:

        - -
        UNICODE LICENSE V3
        -
        -COPYRIGHT AND PERMISSION NOTICE
        -
        -Copyright © 1991-2023 Unicode, Inc.
        -
        -NOTICE TO USER: Carefully read the following legal agreement. BY
        -DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR
        -SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE
        -TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT
        -DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.
        -
        -Permission is hereby granted, free of charge, to any person obtaining a
        -copy of data files and any associated documentation (the "Data Files") or
        -software and any associated documentation (the "Software") to deal in the
        -Data Files or Software without restriction, including without limitation
        -the rights to use, copy, modify, merge, publish, distribute, and/or sell
        -copies of the Data Files or Software, and to permit persons to whom the
        -Data Files or Software are furnished to do so, provided that either (a)
        -this copyright and permission notice appear with all copies of the Data
        -Files or Software, or (b) this copyright and permission notice appear in
        -associated Documentation.
        -
        -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
        -KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
        -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
        -THIRD PARTY RIGHTS.
        -
        -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE
        -BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,
        -OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
        -WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
        -ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA
        -FILES OR SOFTWARE.
        -
        -Except as contained in this notice, the name of a copyright holder shall
        -not be used in advertising or otherwise to promote the sale, use or other
        -dealings in these Data Files or Software without prior written
        -authorization of the copyright holder.
         
      diff --git a/scripts/tools/Linux/wav-diff b/scripts/tools/Linux/wav-diff index ca9113cdb32624d8d1cb32c65346718b68fc0994..7468412714584262de4ab142f34fa91e0d4ee44a 100755 Binary files a/scripts/tools/Linux/wav-diff and b/scripts/tools/Linux/wav-diff differ diff --git a/scripts/tools/Win32/thirdPartyLegalnotices/licenses_wav-diff.html b/scripts/tools/Win32/thirdPartyLegalnotices/licenses_wav-diff.html index 0b17bd169b1a4d1eeae710d99bcf6ce134216e86..1bdee68950575ca1db5c3b71da74ad7986efc1a7 100644 --- a/scripts/tools/Win32/thirdPartyLegalnotices/licenses_wav-diff.html +++ b/scripts/tools/Win32/thirdPartyLegalnotices/licenses_wav-diff.html @@ -44,9 +44,8 @@

      Overview of licenses:

      All license text:

      @@ -267,6 +266,7 @@

      Used by:

                                       Apache License
                                  Version 2.0, January 2004
      @@ -678,199 +678,6 @@
          WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
          See the License for the specific language governing permissions and
          limitations under the License.
      -
      -
    • -
    • -

      Apache License 2.0

      -

      Used by:

      - -
                                    Apache License
      -                        Version 2.0, January 2004
      -                     http://www.apache.org/licenses/
      -
      -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
      -
      -1. Definitions.
      -
      -   "License" shall mean the terms and conditions for use, reproduction,
      -   and distribution as defined by Sections 1 through 9 of this document.
      -
      -   "Licensor" shall mean the copyright owner or entity authorized by
      -   the copyright owner that is granting the License.
      -
      -   "Legal Entity" shall mean the union of the acting entity and all
      -   other entities that control, are controlled by, or are under common
      -   control with that entity. For the purposes of this definition,
      -   "control" means (i) the power, direct or indirect, to cause the
      -   direction or management of such entity, whether by contract or
      -   otherwise, or (ii) ownership of fifty percent (50%) or more of the
      -   outstanding shares, or (iii) beneficial ownership of such entity.
      -
      -   "You" (or "Your") shall mean an individual or Legal Entity
      -   exercising permissions granted by this License.
      -
      -   "Source" form shall mean the preferred form for making modifications,
      -   including but not limited to software source code, documentation
      -   source, and configuration files.
      -
      -   "Object" form shall mean any form resulting from mechanical
      -   transformation or translation of a Source form, including but
      -   not limited to compiled object code, generated documentation,
      -   and conversions to other media types.
      -
      -   "Work" shall mean the work of authorship, whether in Source or
      -   Object form, made available under the License, as indicated by a
      -   copyright notice that is included in or attached to the work
      -   (an example is provided in the Appendix below).
      -
      -   "Derivative Works" shall mean any work, whether in Source or Object
      -   form, that is based on (or derived from) the Work and for which the
      -   editorial revisions, annotations, elaborations, or other modifications
      -   represent, as a whole, an original work of authorship. For the purposes
      -   of this License, Derivative Works shall not include works that remain
      -   separable from, or merely link (or bind by name) to the interfaces of,
      -   the Work and Derivative Works thereof.
      -
      -   "Contribution" shall mean any work of authorship, including
      -   the original version of the Work and any modifications or additions
      -   to that Work or Derivative Works thereof, that is intentionally
      -   submitted to Licensor for inclusion in the Work by the copyright owner
      -   or by an individual or Legal Entity authorized to submit on behalf of
      -   the copyright owner. For the purposes of this definition, "submitted"
      -   means any form of electronic, verbal, or written communication sent
      -   to the Licensor or its representatives, including but not limited to
      -   communication on electronic mailing lists, source code control systems,
      -   and issue tracking systems that are managed by, or on behalf of, the
      -   Licensor for the purpose of discussing and improving the Work, but
      -   excluding communication that is conspicuously marked or otherwise
      -   designated in writing by the copyright owner as "Not a Contribution."
      -
      -   "Contributor" shall mean Licensor and any individual or Legal Entity
      -   on behalf of whom a Contribution has been received by Licensor and
      -   subsequently incorporated within the Work.
      -
      -2. Grant of Copyright License. Subject to the terms and conditions of
      -   this License, each Contributor hereby grants to You a perpetual,
      -   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      -   copyright license to reproduce, prepare Derivative Works of,
      -   publicly display, publicly perform, sublicense, and distribute the
      -   Work and such Derivative Works in Source or Object form.
      -
      -3. Grant of Patent License. Subject to the terms and conditions of
      -   this License, each Contributor hereby grants to You a perpetual,
      -   worldwide, non-exclusive, no-charge, royalty-free, irrevocable
      -   (except as stated in this section) patent license to make, have made,
      -   use, offer to sell, sell, import, and otherwise transfer the Work,
      -   where such license applies only to those patent claims licensable
      -   by such Contributor that are necessarily infringed by their
      -   Contribution(s) alone or by combination of their Contribution(s)
      -   with the Work to which such Contribution(s) was submitted. If You
      -   institute patent litigation against any entity (including a
      -   cross-claim or counterclaim in a lawsuit) alleging that the Work
      -   or a Contribution incorporated within the Work constitutes direct
      -   or contributory patent infringement, then any patent licenses
      -   granted to You under this License for that Work shall terminate
      -   as of the date such litigation is filed.
      -
      -4. Redistribution. You may reproduce and distribute copies of the
      -   Work or Derivative Works thereof in any medium, with or without
      -   modifications, and in Source or Object form, provided that You
      -   meet the following conditions:
      -
      -   (a) You must give any other recipients of the Work or
      -       Derivative Works a copy of this License; and
      -
      -   (b) You must cause any modified files to carry prominent notices
      -       stating that You changed the files; and
      -
      -   (c) You must retain, in the Source form of any Derivative Works
      -       that You distribute, all copyright, patent, trademark, and
      -       attribution notices from the Source form of the Work,
      -       excluding those notices that do not pertain to any part of
      -       the Derivative Works; and
      -
      -   (d) If the Work includes a "NOTICE" text file as part of its
      -       distribution, then any Derivative Works that You distribute must
      -       include a readable copy of the attribution notices contained
      -       within such NOTICE file, excluding those notices that do not
      -       pertain to any part of the Derivative Works, in at least one
      -       of the following places: within a NOTICE text file distributed
      -       as part of the Derivative Works; within the Source form or
      -       documentation, if provided along with the Derivative Works; or,
      -       within a display generated by the Derivative Works, if and
      -       wherever such third-party notices normally appear. The contents
      -       of the NOTICE file are for informational purposes only and
      -       do not modify the License. You may add Your own attribution
      -       notices within Derivative Works that You distribute, alongside
      -       or as an addendum to the NOTICE text from the Work, provided
      -       that such additional attribution notices cannot be construed
      -       as modifying the License.
      -
      -   You may add Your own copyright statement to Your modifications and
      -   may provide additional or different license terms and conditions
      -   for use, reproduction, or distribution of Your modifications, or
      -   for any such Derivative Works as a whole, provided Your use,
      -   reproduction, and distribution of the Work otherwise complies with
      -   the conditions stated in this License.
      -
      -5. Submission of Contributions. Unless You explicitly state otherwise,
      -   any Contribution intentionally submitted for inclusion in the Work
      -   by You to the Licensor shall be under the terms and conditions of
      -   this License, without any additional terms or conditions.
      -   Notwithstanding the above, nothing herein shall supersede or modify
      -   the terms of any separate license agreement you may have executed
      -   with Licensor regarding such Contributions.
      -
      -6. Trademarks. This License does not grant permission to use the trade
      -   names, trademarks, service marks, or product names of the Licensor,
      -   except as required for reasonable and customary use in describing the
      -   origin of the Work and reproducing the content of the NOTICE file.
      -
      -7. Disclaimer of Warranty. Unless required by applicable law or
      -   agreed to in writing, Licensor provides the Work (and each
      -   Contributor provides its Contributions) on an "AS IS" BASIS,
      -   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
      -   implied, including, without limitation, any warranties or conditions
      -   of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
      -   PARTICULAR PURPOSE. You are solely responsible for determining the
      -   appropriateness of using or redistributing the Work and assume any
      -   risks associated with Your exercise of permissions under this License.
      -
      -8. Limitation of Liability. In no event and under no legal theory,
      -   whether in tort (including negligence), contract, or otherwise,
      -   unless required by applicable law (such as deliberate and grossly
      -   negligent acts) or agreed to in writing, shall any Contributor be
      -   liable to You for damages, including any direct, indirect, special,
      -   incidental, or consequential damages of any character arising as a
      -   result of this License or out of the use or inability to use the
      -   Work (including but not limited to damages for loss of goodwill,
      -   work stoppage, computer failure or malfunction, or any and all
      -   other commercial damages or losses), even if such Contributor
      -   has been advised of the possibility of such damages.
      -
      -9. Accepting Warranty or Additional Liability. While redistributing
      -   the Work or Derivative Works thereof, You may choose to offer,
      -   and charge a fee for, acceptance of support, warranty, indemnity,
      -   or other liability obligations and/or rights consistent with this
      -   License. However, in accepting such obligations, You may act only
      -   on Your own behalf and on Your sole responsibility, not on behalf
      -   of any other Contributor, and only if You agree to indemnify,
      -   defend, and hold each Contributor harmless for any liability
      -   incurred by, or claims asserted against, such Contributor by reason
      -   of your accepting any such warranty or additional liability.
      -
      -END OF TERMS AND CONDITIONS
       
    • @@ -1088,18 +895,22 @@ limitations under the License.
      • autocfg 1.0.1
      • bitflags 1.3.2
      • -
      • cc 1.2.10
      • -
      • cfg-if 1.0.0
      • -
      • cmake 0.1.52
      • +
      • cc 1.0.71
      • +
      • cmake 0.1.46
      • either 1.13.0
      • hashbrown 0.11.2
      • heck 0.3.3
      • hermit-abi 0.1.19
      • indexmap 1.7.0
      • itertools 0.13.0
      • +
      • itoa 0.4.8
      • lazy_static 1.4.0
      • libc 0.2.104
      • num-traits 0.2.14
      • +
      • proc-macro2 1.0.29
      • +
      • quote 1.0.10
      • +
      • serde 1.0.130
      • +
      • serde_json 1.0.68
      • syn 1.0.80
      • unicode-segmentation 1.8.0
      • unicode-width 0.1.9
      • @@ -1817,27 +1628,6 @@ You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. - - -
      • -

        Apache License 2.0

        -

        Used by:

        - -
        Copyright 2015 Nicholas Allegra (comex).
        -
        -Licensed under the Apache License, Version 2.0 (the "License");
        -you may not use this file except in compliance with the License.
        -You may obtain a copy of the License at
        -
        -    http://www.apache.org/licenses/LICENSE-2.0
        -
         Unless required by applicable law or agreed to in writing, software
         distributed under the License is distributed on an "AS IS" BASIS,
         WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        @@ -1910,37 +1700,6 @@ furnished to do so, subject to the following conditions:
         The above copyright notice and this permission notice shall be included in all
         copies or substantial portions of the Software.
         
        -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        -SOFTWARE.
        -
        -
      • -
      • -

        MIT License

        -

        Used by:

        - -
        MIT License
        -
        -Copyright (c) 2017 Marcin Sas-Szymański
        -
        -Permission is hereby granted, free of charge, to any person obtaining a copy
        -of this software and associated documentation files (the "Software"), to deal
        -in the Software without restriction, including without limitation the rights
        -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        -copies of the Software, and to permit persons to whom the Software is
        -furnished to do so, subject to the following conditions:
        -
        -The above copyright notice and this permission notice shall be included in all
        -copies or substantial portions of the Software.
        -
         THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        @@ -2049,53 +1808,6 @@ THE SOFTWARE.
                         
        This project is dual-licensed under the Unlicense and MIT licenses.
         
         You may use this code under the terms of either license.
        -
        -
      • -
      • -

        Unicode License v3

        -

        Used by:

        - -
        UNICODE LICENSE V3
        -
        -COPYRIGHT AND PERMISSION NOTICE
        -
        -Copyright © 1991-2023 Unicode, Inc.
        -
        -NOTICE TO USER: Carefully read the following legal agreement. BY
        -DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR
        -SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE
        -TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT
        -DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.
        -
        -Permission is hereby granted, free of charge, to any person obtaining a
        -copy of data files and any associated documentation (the "Data Files") or
        -software and any associated documentation (the "Software") to deal in the
        -Data Files or Software without restriction, including without limitation
        -the rights to use, copy, modify, merge, publish, distribute, and/or sell
        -copies of the Data Files or Software, and to permit persons to whom the
        -Data Files or Software are furnished to do so, provided that either (a)
        -this copyright and permission notice appear with all copies of the Data
        -Files or Software, or (b) this copyright and permission notice appear in
        -associated Documentation.
        -
        -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
        -KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
        -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
        -THIRD PARTY RIGHTS.
        -
        -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE
        -BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES,
        -OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
        -WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
        -ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA
        -FILES OR SOFTWARE.
        -
        -Except as contained in this notice, the name of a copyright holder shall
        -not be used in advertising or otherwise to promote the sale, use or other
        -dealings in these Data Files or Software without prior written
        -authorization of the copyright holder.
         
      diff --git a/scripts/tools/Win32/wav-diff.exe b/scripts/tools/Win32/wav-diff.exe index c06f7bb8261401ed4823457cfa97de6fac8fa7d9..42e99ffde9edab03e32caddb3d8814c7dd92b98e 100644 --- a/scripts/tools/Win32/wav-diff.exe +++ b/scripts/tools/Win32/wav-diff.exe @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fbefe8e53d825cff13c5a88cd286b5f28307e60849123fde73ea7527f54e2765 -size 872448 +oid sha256:59ab5b29e64bb9c3d9bf7bba36c12814aa76f6d6457daf1a717acb533403791d +size 899072 diff --git a/scripts/trajectories/full-circle-4s-Vector3.csv b/scripts/trajectories/full-circle-4s-Vector3.csv index 0abbe48d4290ae653eed13bee988881f7b150b49..38a350523957054744f92fb08c628981a12e0f9a 100644 --- a/scripts/trajectories/full-circle-4s-Vector3.csv +++ b/scripts/trajectories/full-circle-4s-Vector3.csv @@ -1,200 +1,200 @@ -0.0000000000,0.0000000000,0.0000000000,0.9995065331,-0.0314107575,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9980267286,-0.0627905130,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9955619574,-0.0941083059,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9921147227,-0.1253332198,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9876883626,-0.1564344615,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9822872281,-0.1873812973,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9759167433,-0.2181432247,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9685831666,-0.2486898750,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9602937102,-0.2789911032,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9510565400,-0.3090170026,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9408807755,-0.3387379348,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9297764897,-0.3681245744,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9177545905,-0.3971479237,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9048269987,-0.4257793427,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.8910064697,-0.4539905787,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.8763066530,-0.4817537367,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.8607419729,-0.5090414882,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.8443278670,-0.5358268619,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.8270804882,-0.5620834827,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.8090169430,-0.5877853632,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.7901549339,-0.6129071712,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.7705131173,-0.6374241114,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.7501109242,-0.6613119841,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.7289685011,-0.6845472455,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.7071066499,-0.7071069479,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.6845469475,-0.7289687991,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.6613116860,-0.7501112223,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.6374238133,-0.7705134153,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.6129068732,-0.7901551723,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.5877850652,-0.8090171218,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.5620831251,-0.8270807266,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.5358265638,-0.8443281054,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.5090411305,-0.8607421517,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.4817534089,-0.8763068318,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.4539902210,-0.8910066485,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.4257789850,-0.9048271775,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.3971475661,-0.9177547693,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.3681242168,-0.9297766089,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.3387375772,-0.9408808947,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.3090166152,-0.9510566592,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.2789907157,-0.9602937698,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.2486894876,-0.9685832858,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.2181428224,-0.9759168625,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.1873808801,-0.9822873473,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.1564340144,-0.9876884222,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.1253327727,-0.9921147823,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.0941078365,-0.9955620170,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.0627900288,-0.9980267882,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.0314102508,-0.9995065928,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.0000005205,-1.0000000000,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.0314112939,-0.9995065331,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.0627910644,-0.9980266690,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.0941088721,-0.9955618978,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.1253338009,-0.9921146035,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.1564350426,-0.9876882434,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.1873819083,-0.9822871685,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.2181438357,-0.9759166241,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.2486904860,-0.9685829878,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.2789917290,-0.9602935314,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.3090175986,-0.9510563016,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.3387385309,-0.9408805370,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.3681251705,-0.9297762513,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.3971485198,-0.9177543521,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.4257798195,-0.9048268199,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.4539910257,-0.8910062313,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.4817542136,-0.8763064146,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.5090419650,-0.8607417345,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.5358273387,-0.8443275690,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.5620839000,-0.8270801902,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.5877857804,-0.8090165854,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.6129075885,-0.7901545763,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.6374245286,-0.7705128193,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.6613124013,-0.7501106262,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.6845476031,-0.7289681435,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.7071073055,-0.7071062922,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.7289691567,-0.6845465899,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.7501115799,-0.6613113284,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.7705137134,-0.6374233961,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.7901554704,-0.6129064560,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.8090174794,-0.5877845883,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.8270810246,-0.5620827079,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.8443283439,-0.5358260870,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.8607424498,-0.5090407133,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.8763070703,-0.4817529321,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.8910068870,-0.4539897442,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9048274159,-0.4257785082,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9177549481,-0.3971470892,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9297767878,-0.3681237400,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9408810735,-0.3387370706,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9510567784,-0.3090161383,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9602939487,-0.2789902091,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9685834050,-0.2486889809,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9759169817,-0.2181423157,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9822874069,-0.1873803735,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9876884818,-0.1564334929,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9921148419,-0.1253322512,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9955620766,-0.0941073149,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9980267882,-0.0627895072,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9995065928,-0.0314097330,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-1.0000000000,0.0000010411,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9995065331,0.0314118117,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9980266690,0.0627915859,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9955618382,0.0941093862,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9921145439,0.1253343225,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9876881838,0.1564355493,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9822870493,0.1873824149,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9759165049,0.2181443423,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9685828686,0.2486909926,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9602933526,0.2789922059,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9510561824,0.3090181053,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9408803582,0.3387390375,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9297760725,0.3681256771,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9177541733,0.3971489966,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9048265219,0.4257803857,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.8910059929,0.4539915919,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.8763060570,0.4817547798,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.8607413769,0.5090425014,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.8443272710,0.5358278751,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.8270798326,0.5620844364,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.8090162277,0.5877863169,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.7901542187,0.6129080653,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.7705124021,0.6374250054,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.7501102090,0.6613128781,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.7289677262,0.6845480800,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.7071058154,0.7071077228,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.6845461130,0.7289695740,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.6613108516,0.7501119971,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.6374230981,0.7705140114,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.6129060984,0.7901557088,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.5877842903,0.8090177178,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.5620824099,0.8270812631,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.5358257890,0.8443285823,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.5090403557,0.8607426286,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.4817526042,0.8763072491,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.4539893866,0.8910070658,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.4257781506,0.9048275948,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.3971467316,0.9177551270,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.3681233525,0.9297769666,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.3387366831,0.9408811927,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.3090157509,0.9510568976,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.2789898217,0.9602940679,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.2486885935,0.9685835242,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.2181419283,0.9759170413,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.1873799711,0.9822875261,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.1564331055,0.9876885414,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.1253318489,0.9921149015,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.0941069126,0.9955620766,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.0627891049,0.9980267882,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.0314093307,0.9995065928,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.0000014424,1.0000000000,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.0314122140,0.9995065331,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.0627919883,0.9980266094,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.0941097885,0.9955618382,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.1253347099,0.9921145439,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.1564359516,0.9876881242,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.1873828024,0.9822869897,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.2181447297,0.9759164453,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.2486913800,0.9685827494,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.2789925933,0.9602932334,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.3090184927,0.9510560036,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.3387393951,0.9408802390,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.3681260347,0.9297758937,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.3971493542,0.9177539945,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.4257807732,0.9048263431,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.4539919496,0.8910057545,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.4817551076,0.8763058782,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.5090428591,0.8607411981,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.5358282328,0.8443270326,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.5620847940,0.8270796537,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.5877866149,0.8090159893,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.6129084229,0.7901539803,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.6374253035,0.7705121636,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.6613131762,0.7501099110,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.6845483780,0.7289674282,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.7071080208,0.7071055174,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.7289698720,0.6845458150,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.7501122355,0.6613105536,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.7705143690,0.6374226213,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.7901561260,0.6129056215,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.8090180755,0.5877837539,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.8270816207,0.5620818734,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.8443289399,0.5358252525,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.8607429862,0.5090398192,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.8763076067,0.4817520380,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.8910073638,0.4539888203,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9048278332,0.4257775843,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9177553654,0.3971461356,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9297772050,0.3681227565,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9408814311,0.3387360871,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9510571361,0.3090151250,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9602942467,0.2789892256,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9685836434,0.2486879677,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9759172201,0.2181413025,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9822876453,0.1873793453,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9876886606,0.1564324647,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9921149611,0.1253312230,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9955621362,0.0941062793,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9980268478,0.0627884641,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9995066524,0.0314086899,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,1.0000000000,-0.0000020822,0.0000000000 +0.0000,0.0000,0.0000,0.9995,-0.0314,0.0000 +0.0000,0.0000,0.0000,0.9980,-0.0628,0.0000 +0.0000,0.0000,0.0000,0.9956,-0.0941,0.0000 +0.0000,0.0000,0.0000,0.9921,-0.1253,0.0000 +0.0000,0.0000,0.0000,0.9877,-0.1564,0.0000 +0.0000,0.0000,0.0000,0.9823,-0.1874,0.0000 +0.0000,0.0000,0.0000,0.9759,-0.2181,0.0000 +0.0000,0.0000,0.0000,0.9686,-0.2487,0.0000 +0.0000,0.0000,0.0000,0.9603,-0.2790,0.0000 +0.0000,0.0000,0.0000,0.9511,-0.3090,0.0000 +0.0000,0.0000,0.0000,0.9409,-0.3387,0.0000 +0.0000,0.0000,0.0000,0.9298,-0.3681,0.0000 +0.0000,0.0000,0.0000,0.9178,-0.3971,0.0000 +0.0000,0.0000,0.0000,0.9048,-0.4258,0.0000 +0.0000,0.0000,0.0000,0.8910,-0.4540,0.0000 +0.0000,0.0000,0.0000,0.8763,-0.4818,0.0000 +0.0000,0.0000,0.0000,0.8607,-0.5090,0.0000 +0.0000,0.0000,0.0000,0.8443,-0.5358,0.0000 +0.0000,0.0000,0.0000,0.8271,-0.5621,0.0000 +0.0000,0.0000,0.0000,0.8090,-0.5878,0.0000 +0.0000,0.0000,0.0000,0.7902,-0.6129,0.0000 +0.0000,0.0000,0.0000,0.7705,-0.6374,0.0000 +0.0000,0.0000,0.0000,0.7501,-0.6613,0.0000 +0.0000,0.0000,0.0000,0.7290,-0.6845,0.0000 +0.0000,0.0000,0.0000,0.7071,-0.7071,0.0000 +0.0000,0.0000,0.0000,0.6845,-0.7290,0.0000 +0.0000,0.0000,0.0000,0.6613,-0.7501,0.0000 +0.0000,0.0000,0.0000,0.6374,-0.7705,0.0000 +0.0000,0.0000,0.0000,0.6129,-0.7902,0.0000 +0.0000,0.0000,0.0000,0.5878,-0.8090,0.0000 +0.0000,0.0000,0.0000,0.5621,-0.8271,0.0000 +0.0000,0.0000,0.0000,0.5358,-0.8443,0.0000 +0.0000,0.0000,0.0000,0.5090,-0.8607,0.0000 +0.0000,0.0000,0.0000,0.4818,-0.8763,0.0000 +0.0000,0.0000,0.0000,0.4540,-0.8910,0.0000 +0.0000,0.0000,0.0000,0.4258,-0.9048,0.0000 +0.0000,0.0000,0.0000,0.3971,-0.9178,0.0000 +0.0000,0.0000,0.0000,0.3681,-0.9298,0.0000 +0.0000,0.0000,0.0000,0.3387,-0.9409,0.0000 +0.0000,0.0000,0.0000,0.3090,-0.9511,0.0000 +0.0000,0.0000,0.0000,0.2790,-0.9603,0.0000 +0.0000,0.0000,0.0000,0.2487,-0.9686,0.0000 +0.0000,0.0000,0.0000,0.2181,-0.9759,0.0000 +0.0000,0.0000,0.0000,0.1874,-0.9823,0.0000 +0.0000,0.0000,0.0000,0.1564,-0.9877,0.0000 +0.0000,0.0000,0.0000,0.1253,-0.9921,0.0000 +0.0000,0.0000,0.0000,0.0941,-0.9956,0.0000 +0.0000,0.0000,0.0000,0.0628,-0.9980,0.0000 +0.0000,0.0000,0.0000,0.0314,-0.9995,0.0000 +0.0000,0.0000,0.0000,-0.0000,-1.0000,0.0000 +0.0000,0.0000,0.0000,-0.0314,-0.9995,0.0000 +0.0000,0.0000,0.0000,-0.0628,-0.9980,0.0000 +0.0000,0.0000,0.0000,-0.0941,-0.9956,0.0000 +0.0000,0.0000,0.0000,-0.1253,-0.9921,0.0000 +0.0000,0.0000,0.0000,-0.1564,-0.9877,0.0000 +0.0000,0.0000,0.0000,-0.1874,-0.9823,0.0000 +0.0000,0.0000,0.0000,-0.2181,-0.9759,0.0000 +0.0000,0.0000,0.0000,-0.2487,-0.9686,0.0000 +0.0000,0.0000,0.0000,-0.2790,-0.9603,0.0000 +0.0000,0.0000,0.0000,-0.3090,-0.9511,0.0000 +0.0000,0.0000,0.0000,-0.3387,-0.9409,0.0000 +0.0000,0.0000,0.0000,-0.3681,-0.9298,0.0000 +0.0000,0.0000,0.0000,-0.3971,-0.9178,0.0000 +0.0000,0.0000,0.0000,-0.4258,-0.9048,0.0000 +0.0000,0.0000,0.0000,-0.4540,-0.8910,0.0000 +0.0000,0.0000,0.0000,-0.4818,-0.8763,0.0000 +0.0000,0.0000,0.0000,-0.5090,-0.8607,0.0000 +0.0000,0.0000,0.0000,-0.5358,-0.8443,0.0000 +0.0000,0.0000,0.0000,-0.5621,-0.8271,0.0000 +0.0000,0.0000,0.0000,-0.5878,-0.8090,0.0000 +0.0000,0.0000,0.0000,-0.6129,-0.7902,0.0000 +0.0000,0.0000,0.0000,-0.6374,-0.7705,0.0000 +0.0000,0.0000,0.0000,-0.6613,-0.7501,0.0000 +0.0000,0.0000,0.0000,-0.6845,-0.7290,0.0000 +0.0000,0.0000,0.0000,-0.7071,-0.7071,0.0000 +0.0000,0.0000,0.0000,-0.7290,-0.6845,0.0000 +0.0000,0.0000,0.0000,-0.7501,-0.6613,0.0000 +0.0000,0.0000,0.0000,-0.7705,-0.6374,0.0000 +0.0000,0.0000,0.0000,-0.7902,-0.6129,0.0000 +0.0000,0.0000,0.0000,-0.8090,-0.5878,0.0000 +0.0000,0.0000,0.0000,-0.8271,-0.5621,0.0000 +0.0000,0.0000,0.0000,-0.8443,-0.5358,0.0000 +0.0000,0.0000,0.0000,-0.8607,-0.5090,0.0000 +0.0000,0.0000,0.0000,-0.8763,-0.4818,0.0000 +0.0000,0.0000,0.0000,-0.8910,-0.4540,0.0000 +0.0000,0.0000,0.0000,-0.9048,-0.4258,0.0000 +0.0000,0.0000,0.0000,-0.9178,-0.3971,0.0000 +0.0000,0.0000,0.0000,-0.9298,-0.3681,0.0000 +0.0000,0.0000,0.0000,-0.9409,-0.3387,0.0000 +0.0000,0.0000,0.0000,-0.9511,-0.3090,0.0000 +0.0000,0.0000,0.0000,-0.9603,-0.2790,0.0000 +0.0000,0.0000,0.0000,-0.9686,-0.2487,0.0000 +0.0000,0.0000,0.0000,-0.9759,-0.2181,0.0000 +0.0000,0.0000,0.0000,-0.9823,-0.1874,0.0000 +0.0000,0.0000,0.0000,-0.9877,-0.1564,0.0000 +0.0000,0.0000,0.0000,-0.9921,-0.1253,0.0000 +0.0000,0.0000,0.0000,-0.9956,-0.0941,0.0000 +0.0000,0.0000,0.0000,-0.9980,-0.0628,0.0000 +0.0000,0.0000,0.0000,-0.9995,-0.0314,0.0000 +0.0000,0.0000,0.0000,-1.0000,0.0000,0.0000 +0.0000,0.0000,0.0000,-0.9995,0.0314,0.0000 +0.0000,0.0000,0.0000,-0.9980,0.0628,0.0000 +0.0000,0.0000,0.0000,-0.9956,0.0941,0.0000 +0.0000,0.0000,0.0000,-0.9921,0.1253,0.0000 +0.0000,0.0000,0.0000,-0.9877,0.1564,0.0000 +0.0000,0.0000,0.0000,-0.9823,0.1874,0.0000 +0.0000,0.0000,0.0000,-0.9759,0.2181,0.0000 +0.0000,0.0000,0.0000,-0.9686,0.2487,0.0000 +0.0000,0.0000,0.0000,-0.9603,0.2790,0.0000 +0.0000,0.0000,0.0000,-0.9511,0.3090,0.0000 +0.0000,0.0000,0.0000,-0.9409,0.3387,0.0000 +0.0000,0.0000,0.0000,-0.9298,0.3681,0.0000 +0.0000,0.0000,0.0000,-0.9178,0.3971,0.0000 +0.0000,0.0000,0.0000,-0.9048,0.4258,0.0000 +0.0000,0.0000,0.0000,-0.8910,0.4540,0.0000 +0.0000,0.0000,0.0000,-0.8763,0.4818,0.0000 +0.0000,0.0000,0.0000,-0.8607,0.5090,0.0000 +0.0000,0.0000,0.0000,-0.8443,0.5358,0.0000 +0.0000,0.0000,0.0000,-0.8271,0.5621,0.0000 +0.0000,0.0000,0.0000,-0.8090,0.5878,0.0000 +0.0000,0.0000,0.0000,-0.7902,0.6129,0.0000 +0.0000,0.0000,0.0000,-0.7705,0.6374,0.0000 +0.0000,0.0000,0.0000,-0.7501,0.6613,0.0000 +0.0000,0.0000,0.0000,-0.7290,0.6845,0.0000 +0.0000,0.0000,0.0000,-0.7071,0.7071,0.0000 +0.0000,0.0000,0.0000,-0.6845,0.7290,0.0000 +0.0000,0.0000,0.0000,-0.6613,0.7501,0.0000 +0.0000,0.0000,0.0000,-0.6374,0.7705,0.0000 +0.0000,0.0000,0.0000,-0.6129,0.7902,0.0000 +0.0000,0.0000,0.0000,-0.5878,0.8090,0.0000 +0.0000,0.0000,0.0000,-0.5621,0.8271,0.0000 +0.0000,0.0000,0.0000,-0.5358,0.8443,0.0000 +0.0000,0.0000,0.0000,-0.5090,0.8607,0.0000 +0.0000,0.0000,0.0000,-0.4818,0.8763,0.0000 +0.0000,0.0000,0.0000,-0.4540,0.8910,0.0000 +0.0000,0.0000,0.0000,-0.4258,0.9048,0.0000 +0.0000,0.0000,0.0000,-0.3971,0.9178,0.0000 +0.0000,0.0000,0.0000,-0.3681,0.9298,0.0000 +0.0000,0.0000,0.0000,-0.3387,0.9409,0.0000 +0.0000,0.0000,0.0000,-0.3090,0.9511,0.0000 +0.0000,0.0000,0.0000,-0.2790,0.9603,0.0000 +0.0000,0.0000,0.0000,-0.2487,0.9686,0.0000 +0.0000,0.0000,0.0000,-0.2181,0.9759,0.0000 +0.0000,0.0000,0.0000,-0.1874,0.9823,0.0000 +0.0000,0.0000,0.0000,-0.1564,0.9877,0.0000 +0.0000,0.0000,0.0000,-0.1253,0.9921,0.0000 +0.0000,0.0000,0.0000,-0.0941,0.9956,0.0000 +0.0000,0.0000,0.0000,-0.0628,0.9980,0.0000 +0.0000,0.0000,0.0000,-0.0314,0.9995,0.0000 +0.0000,0.0000,0.0000,0.0000,1.0000,0.0000 +0.0000,0.0000,0.0000,0.0314,0.9995,0.0000 +0.0000,0.0000,0.0000,0.0628,0.9980,0.0000 +0.0000,0.0000,0.0000,0.0941,0.9956,0.0000 +0.0000,0.0000,0.0000,0.1253,0.9921,0.0000 +0.0000,0.0000,0.0000,0.1564,0.9877,0.0000 +0.0000,0.0000,0.0000,0.1874,0.9823,0.0000 +0.0000,0.0000,0.0000,0.2181,0.9759,0.0000 +0.0000,0.0000,0.0000,0.2487,0.9686,0.0000 +0.0000,0.0000,0.0000,0.2790,0.9603,0.0000 +0.0000,0.0000,0.0000,0.3090,0.9511,0.0000 +0.0000,0.0000,0.0000,0.3387,0.9409,0.0000 +0.0000,0.0000,0.0000,0.3681,0.9298,0.0000 +0.0000,0.0000,0.0000,0.3971,0.9178,0.0000 +0.0000,0.0000,0.0000,0.4258,0.9048,0.0000 +0.0000,0.0000,0.0000,0.4540,0.8910,0.0000 +0.0000,0.0000,0.0000,0.4818,0.8763,0.0000 +0.0000,0.0000,0.0000,0.5090,0.8607,0.0000 +0.0000,0.0000,0.0000,0.5358,0.8443,0.0000 +0.0000,0.0000,0.0000,0.5621,0.8271,0.0000 +0.0000,0.0000,0.0000,0.5878,0.8090,0.0000 +0.0000,0.0000,0.0000,0.6129,0.7902,0.0000 +0.0000,0.0000,0.0000,0.6374,0.7705,0.0000 +0.0000,0.0000,0.0000,0.6613,0.7501,0.0000 +0.0000,0.0000,0.0000,0.6845,0.7290,0.0000 +0.0000,0.0000,0.0000,0.7071,0.7071,0.0000 +0.0000,0.0000,0.0000,0.7290,0.6845,0.0000 +0.0000,0.0000,0.0000,0.7501,0.6613,0.0000 +0.0000,0.0000,0.0000,0.7705,0.6374,0.0000 +0.0000,0.0000,0.0000,0.7902,0.6129,0.0000 +0.0000,0.0000,0.0000,0.8090,0.5878,0.0000 +0.0000,0.0000,0.0000,0.8271,0.5621,0.0000 +0.0000,0.0000,0.0000,0.8443,0.5358,0.0000 +0.0000,0.0000,0.0000,0.8607,0.5090,0.0000 +0.0000,0.0000,0.0000,0.8763,0.4818,0.0000 +0.0000,0.0000,0.0000,0.8910,0.4540,0.0000 +0.0000,0.0000,0.0000,0.9048,0.4258,0.0000 +0.0000,0.0000,0.0000,0.9178,0.3971,0.0000 +0.0000,0.0000,0.0000,0.9298,0.3681,0.0000 +0.0000,0.0000,0.0000,0.9409,0.3387,0.0000 +0.0000,0.0000,0.0000,0.9511,0.3090,0.0000 +0.0000,0.0000,0.0000,0.9603,0.2790,0.0000 +0.0000,0.0000,0.0000,0.9686,0.2487,0.0000 +0.0000,0.0000,0.0000,0.9759,0.2181,0.0000 +0.0000,0.0000,0.0000,0.9823,0.1874,0.0000 +0.0000,0.0000,0.0000,0.9877,0.1564,0.0000 +0.0000,0.0000,0.0000,0.9921,0.1253,0.0000 +0.0000,0.0000,0.0000,0.9956,0.0941,0.0000 +0.0000,0.0000,0.0000,0.9980,0.0628,0.0000 +0.0000,0.0000,0.0000,0.9995,0.0314,0.0000 +0.0000,0.0000,0.0000,1.0000,-0.0000,0.0000 diff --git a/scripts/trajectories/full-circle-4s-ccw-Vector3.csv b/scripts/trajectories/full-circle-4s-ccw-Vector3.csv index f313b9b02181e2a767f6405719e306751ef2d2b1..37b2904ea4199014bf5647fa0196bf3975b13d55 100644 --- a/scripts/trajectories/full-circle-4s-ccw-Vector3.csv +++ b/scripts/trajectories/full-circle-4s-ccw-Vector3.csv @@ -1,200 +1,200 @@ -0.0000000000,0.0000000000,0.0000000000,0.9995065331,0.0314107575,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9980267286,0.0627905130,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9955619574,0.0941083059,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9921147227,0.1253332198,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9876883626,0.1564344615,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9822872281,0.1873812973,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9759167433,0.2181432247,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9685831666,0.2486898750,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9602937102,0.2789911032,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9510565400,0.3090170026,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9408807755,0.3387379348,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9297764897,0.3681245744,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9177545905,0.3971479237,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9048269987,0.4257793427,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.8910064697,0.4539905787,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.8763066530,0.4817537367,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.8607419729,0.5090414882,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.8443278670,0.5358268619,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.8270804882,0.5620834827,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.8090169430,0.5877853632,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.7901549339,0.6129071712,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.7705131173,0.6374241114,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.7501109242,0.6613119841,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.7289685011,0.6845472455,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.7071066499,0.7071069479,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.6845469475,0.7289687991,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.6613116860,0.7501112223,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.6374238133,0.7705134153,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.6129068732,0.7901551723,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.5877850652,0.8090171218,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.5620831251,0.8270807266,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.5358265638,0.8443281054,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.5090411305,0.8607421517,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.4817534089,0.8763068318,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.4539902210,0.8910066485,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.4257789850,0.9048271775,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.3971475661,0.9177547693,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.3681242168,0.9297766089,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.3387375772,0.9408808947,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.3090166152,0.9510566592,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.2789907157,0.9602937698,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.2486894876,0.9685832858,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.2181428224,0.9759168625,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.1873808801,0.9822873473,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.1564340144,0.9876884222,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.1253327727,0.9921147823,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.0941078365,0.9955620170,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.0627900288,0.9980267882,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.0314102508,0.9995065928,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.0000005205,1.0000000000,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.0314112939,0.9995065331,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.0627910644,0.9980266690,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.0941088721,0.9955618978,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.1253338009,0.9921146035,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.1564350426,0.9876882434,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.1873819083,0.9822871685,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.2181438357,0.9759166241,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.2486904860,0.9685829878,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.2789917290,0.9602935314,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.3090175986,0.9510563016,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.3387385309,0.9408805370,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.3681251705,0.9297762513,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.3971485198,0.9177543521,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.4257798195,0.9048268199,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.4539910257,0.8910062313,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.4817542136,0.8763064146,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.5090419650,0.8607417345,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.5358273387,0.8443275690,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.5620839000,0.8270801902,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.5877857804,0.8090165854,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.6129075885,0.7901545763,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.6374245286,0.7705128193,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.6613124013,0.7501106262,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.6845476031,0.7289681435,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.7071073055,0.7071062922,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.7289691567,0.6845465899,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.7501115799,0.6613113284,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.7705137134,0.6374233961,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.7901554704,0.6129064560,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.8090174794,0.5877845883,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.8270810246,0.5620827079,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.8443283439,0.5358260870,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.8607424498,0.5090407133,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.8763070703,0.4817529321,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.8910068870,0.4539897442,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9048274159,0.4257785082,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9177549481,0.3971470892,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9297767878,0.3681237400,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9408810735,0.3387370706,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9510567784,0.3090161383,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9602939487,0.2789902091,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9685834050,0.2486889809,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9759169817,0.2181423157,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9822874069,0.1873803735,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9876884818,0.1564334929,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9921148419,0.1253322512,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9955620766,0.0941073149,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9980267882,0.0627895072,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9995065928,0.0314097330,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-1.0000000000,-0.0000010411,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9995065331,-0.0314118117,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9980266690,-0.0627915859,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9955618382,-0.0941093862,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9921145439,-0.1253343225,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9876881838,-0.1564355493,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9822870493,-0.1873824149,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9759165049,-0.2181443423,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9685828686,-0.2486909926,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9602933526,-0.2789922059,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9510561824,-0.3090181053,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9408803582,-0.3387390375,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9297760725,-0.3681256771,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9177541733,-0.3971489966,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.9048265219,-0.4257803857,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.8910059929,-0.4539915919,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.8763060570,-0.4817547798,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.8607413769,-0.5090425014,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.8443272710,-0.5358278751,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.8270798326,-0.5620844364,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.8090162277,-0.5877863169,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.7901542187,-0.6129080653,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.7705124021,-0.6374250054,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.7501102090,-0.6613128781,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.7289677262,-0.6845480800,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.7071058154,-0.7071077228,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.6845461130,-0.7289695740,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.6613108516,-0.7501119971,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.6374230981,-0.7705140114,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.6129060984,-0.7901557088,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.5877842903,-0.8090177178,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.5620824099,-0.8270812631,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.5358257890,-0.8443285823,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.5090403557,-0.8607426286,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.4817526042,-0.8763072491,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.4539893866,-0.8910070658,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.4257781506,-0.9048275948,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.3971467316,-0.9177551270,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.3681233525,-0.9297769666,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.3387366831,-0.9408811927,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.3090157509,-0.9510568976,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.2789898217,-0.9602940679,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.2486885935,-0.9685835242,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.2181419283,-0.9759170413,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.1873799711,-0.9822875261,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.1564331055,-0.9876885414,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.1253318489,-0.9921149015,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.0941069126,-0.9955620766,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.0627891049,-0.9980267882,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,-0.0314093307,-0.9995065928,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.0000014424,-1.0000000000,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.0314122140,-0.9995065331,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.0627919883,-0.9980266094,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.0941097885,-0.9955618382,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.1253347099,-0.9921145439,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.1564359516,-0.9876881242,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.1873828024,-0.9822869897,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.2181447297,-0.9759164453,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.2486913800,-0.9685827494,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.2789925933,-0.9602932334,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.3090184927,-0.9510560036,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.3387393951,-0.9408802390,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.3681260347,-0.9297758937,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.3971493542,-0.9177539945,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.4257807732,-0.9048263431,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.4539919496,-0.8910057545,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.4817551076,-0.8763058782,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.5090428591,-0.8607411981,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.5358282328,-0.8443270326,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.5620847940,-0.8270796537,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.5877866149,-0.8090159893,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.6129084229,-0.7901539803,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.6374253035,-0.7705121636,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.6613131762,-0.7501099110,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.6845483780,-0.7289674282,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.7071080208,-0.7071055174,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.7289698720,-0.6845458150,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.7501122355,-0.6613105536,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.7705143690,-0.6374226213,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.7901561260,-0.6129056215,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.8090180755,-0.5877837539,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.8270816207,-0.5620818734,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.8443289399,-0.5358252525,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.8607429862,-0.5090398192,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.8763076067,-0.4817520380,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.8910073638,-0.4539888203,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9048278332,-0.4257775843,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9177553654,-0.3971461356,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9297772050,-0.3681227565,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9408814311,-0.3387360871,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9510571361,-0.3090151250,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9602942467,-0.2789892256,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9685836434,-0.2486879677,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9759172201,-0.2181413025,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9822876453,-0.1873793453,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9876886606,-0.1564324647,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9921149611,-0.1253312230,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9955621362,-0.0941062793,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9980268478,-0.0627884641,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,0.9995066524,-0.0314086899,0.0000000000 -0.0000000000,0.0000000000,0.0000000000,1.0000000000,0.0000020822,0.0000000000 +0.0000,0.0000,0.0000,0.9995,0.0314,0.0000 +0.0000,0.0000,0.0000,0.9980,0.0628,0.0000 +0.0000,0.0000,0.0000,0.9956,0.0941,0.0000 +0.0000,0.0000,0.0000,0.9921,0.1253,0.0000 +0.0000,0.0000,0.0000,0.9877,0.1564,0.0000 +0.0000,0.0000,0.0000,0.9823,0.1874,0.0000 +0.0000,0.0000,0.0000,0.9759,0.2181,0.0000 +0.0000,0.0000,0.0000,0.9686,0.2487,0.0000 +0.0000,0.0000,0.0000,0.9603,0.2790,0.0000 +0.0000,0.0000,0.0000,0.9511,0.3090,0.0000 +0.0000,0.0000,0.0000,0.9409,0.3387,0.0000 +0.0000,0.0000,0.0000,0.9298,0.3681,0.0000 +0.0000,0.0000,0.0000,0.9178,0.3971,0.0000 +0.0000,0.0000,0.0000,0.9048,0.4258,0.0000 +0.0000,0.0000,0.0000,0.8910,0.4540,0.0000 +0.0000,0.0000,0.0000,0.8763,0.4818,0.0000 +0.0000,0.0000,0.0000,0.8607,0.5090,0.0000 +0.0000,0.0000,0.0000,0.8443,0.5358,0.0000 +0.0000,0.0000,0.0000,0.8271,0.5621,0.0000 +0.0000,0.0000,0.0000,0.8090,0.5878,0.0000 +0.0000,0.0000,0.0000,0.7902,0.6129,0.0000 +0.0000,0.0000,0.0000,0.7705,0.6374,0.0000 +0.0000,0.0000,0.0000,0.7501,0.6613,0.0000 +0.0000,0.0000,0.0000,0.7290,0.6845,0.0000 +0.0000,0.0000,0.0000,0.7071,0.7071,0.0000 +0.0000,0.0000,0.0000,0.6845,0.7290,0.0000 +0.0000,0.0000,0.0000,0.6613,0.7501,0.0000 +0.0000,0.0000,0.0000,0.6374,0.7705,0.0000 +0.0000,0.0000,0.0000,0.6129,0.7902,0.0000 +0.0000,0.0000,0.0000,0.5878,0.8090,0.0000 +0.0000,0.0000,0.0000,0.5621,0.8271,0.0000 +0.0000,0.0000,0.0000,0.5358,0.8443,0.0000 +0.0000,0.0000,0.0000,0.5090,0.8607,0.0000 +0.0000,0.0000,0.0000,0.4818,0.8763,0.0000 +0.0000,0.0000,0.0000,0.4540,0.8910,0.0000 +0.0000,0.0000,0.0000,0.4258,0.9048,0.0000 +0.0000,0.0000,0.0000,0.3971,0.9178,0.0000 +0.0000,0.0000,0.0000,0.3681,0.9298,0.0000 +0.0000,0.0000,0.0000,0.3387,0.9409,0.0000 +0.0000,0.0000,0.0000,0.3090,0.9511,0.0000 +0.0000,0.0000,0.0000,0.2790,0.9603,0.0000 +0.0000,0.0000,0.0000,0.2487,0.9686,0.0000 +0.0000,0.0000,0.0000,0.2181,0.9759,0.0000 +0.0000,0.0000,0.0000,0.1874,0.9823,0.0000 +0.0000,0.0000,0.0000,0.1564,0.9877,0.0000 +0.0000,0.0000,0.0000,0.1253,0.9921,0.0000 +0.0000,0.0000,0.0000,0.0941,0.9956,0.0000 +0.0000,0.0000,0.0000,0.0628,0.9980,0.0000 +0.0000,0.0000,0.0000,0.0314,0.9995,0.0000 +0.0000,0.0000,0.0000,-0.0000,1.0000,0.0000 +0.0000,0.0000,0.0000,-0.0314,0.9995,0.0000 +0.0000,0.0000,0.0000,-0.0628,0.9980,0.0000 +0.0000,0.0000,0.0000,-0.0941,0.9956,0.0000 +0.0000,0.0000,0.0000,-0.1253,0.9921,0.0000 +0.0000,0.0000,0.0000,-0.1564,0.9877,0.0000 +0.0000,0.0000,0.0000,-0.1874,0.9823,0.0000 +0.0000,0.0000,0.0000,-0.2181,0.9759,0.0000 +0.0000,0.0000,0.0000,-0.2487,0.9686,0.0000 +0.0000,0.0000,0.0000,-0.2790,0.9603,0.0000 +0.0000,0.0000,0.0000,-0.3090,0.9511,0.0000 +0.0000,0.0000,0.0000,-0.3387,0.9409,0.0000 +0.0000,0.0000,0.0000,-0.3681,0.9298,0.0000 +0.0000,0.0000,0.0000,-0.3971,0.9178,0.0000 +0.0000,0.0000,0.0000,-0.4258,0.9048,0.0000 +0.0000,0.0000,0.0000,-0.4540,0.8910,0.0000 +0.0000,0.0000,0.0000,-0.4818,0.8763,0.0000 +0.0000,0.0000,0.0000,-0.5090,0.8607,0.0000 +0.0000,0.0000,0.0000,-0.5358,0.8443,0.0000 +0.0000,0.0000,0.0000,-0.5621,0.8271,0.0000 +0.0000,0.0000,0.0000,-0.5878,0.8090,0.0000 +0.0000,0.0000,0.0000,-0.6129,0.7902,0.0000 +0.0000,0.0000,0.0000,-0.6374,0.7705,0.0000 +0.0000,0.0000,0.0000,-0.6613,0.7501,0.0000 +0.0000,0.0000,0.0000,-0.6845,0.7290,0.0000 +0.0000,0.0000,0.0000,-0.7071,0.7071,0.0000 +0.0000,0.0000,0.0000,-0.7290,0.6845,0.0000 +0.0000,0.0000,0.0000,-0.7501,0.6613,0.0000 +0.0000,0.0000,0.0000,-0.7705,0.6374,0.0000 +0.0000,0.0000,0.0000,-0.7902,0.6129,0.0000 +0.0000,0.0000,0.0000,-0.8090,0.5878,0.0000 +0.0000,0.0000,0.0000,-0.8271,0.5621,0.0000 +0.0000,0.0000,0.0000,-0.8443,0.5358,0.0000 +0.0000,0.0000,0.0000,-0.8607,0.5090,0.0000 +0.0000,0.0000,0.0000,-0.8763,0.4818,0.0000 +0.0000,0.0000,0.0000,-0.8910,0.4540,0.0000 +0.0000,0.0000,0.0000,-0.9048,0.4258,0.0000 +0.0000,0.0000,0.0000,-0.9178,0.3971,0.0000 +0.0000,0.0000,0.0000,-0.9298,0.3681,0.0000 +0.0000,0.0000,0.0000,-0.9409,0.3387,0.0000 +0.0000,0.0000,0.0000,-0.9511,0.3090,0.0000 +0.0000,0.0000,0.0000,-0.9603,0.2790,0.0000 +0.0000,0.0000,0.0000,-0.9686,0.2487,0.0000 +0.0000,0.0000,0.0000,-0.9759,0.2181,0.0000 +0.0000,0.0000,0.0000,-0.9823,0.1874,0.0000 +0.0000,0.0000,0.0000,-0.9877,0.1564,0.0000 +0.0000,0.0000,0.0000,-0.9921,0.1253,0.0000 +0.0000,0.0000,0.0000,-0.9956,0.0941,0.0000 +0.0000,0.0000,0.0000,-0.9980,0.0628,0.0000 +0.0000,0.0000,0.0000,-0.9995,0.0314,0.0000 +0.0000,0.0000,0.0000,-1.0000,-0.0000,0.0000 +0.0000,0.0000,0.0000,-0.9995,-0.0314,0.0000 +0.0000,0.0000,0.0000,-0.9980,-0.0628,0.0000 +0.0000,0.0000,0.0000,-0.9956,-0.0941,0.0000 +0.0000,0.0000,0.0000,-0.9921,-0.1253,0.0000 +0.0000,0.0000,0.0000,-0.9877,-0.1564,0.0000 +0.0000,0.0000,0.0000,-0.9823,-0.1874,0.0000 +0.0000,0.0000,0.0000,-0.9759,-0.2181,0.0000 +0.0000,0.0000,0.0000,-0.9686,-0.2487,0.0000 +0.0000,0.0000,0.0000,-0.9603,-0.2790,0.0000 +0.0000,0.0000,0.0000,-0.9511,-0.3090,0.0000 +0.0000,0.0000,0.0000,-0.9409,-0.3387,0.0000 +0.0000,0.0000,0.0000,-0.9298,-0.3681,0.0000 +0.0000,0.0000,0.0000,-0.9178,-0.3971,0.0000 +0.0000,0.0000,0.0000,-0.9048,-0.4258,0.0000 +0.0000,0.0000,0.0000,-0.8910,-0.4540,0.0000 +0.0000,0.0000,0.0000,-0.8763,-0.4818,0.0000 +0.0000,0.0000,0.0000,-0.8607,-0.5090,0.0000 +0.0000,0.0000,0.0000,-0.8443,-0.5358,0.0000 +0.0000,0.0000,0.0000,-0.8271,-0.5621,0.0000 +0.0000,0.0000,0.0000,-0.8090,-0.5878,0.0000 +0.0000,0.0000,0.0000,-0.7902,-0.6129,0.0000 +0.0000,0.0000,0.0000,-0.7705,-0.6374,0.0000 +0.0000,0.0000,0.0000,-0.7501,-0.6613,0.0000 +0.0000,0.0000,0.0000,-0.7290,-0.6845,0.0000 +0.0000,0.0000,0.0000,-0.7071,-0.7071,0.0000 +0.0000,0.0000,0.0000,-0.6845,-0.7290,0.0000 +0.0000,0.0000,0.0000,-0.6613,-0.7501,0.0000 +0.0000,0.0000,0.0000,-0.6374,-0.7705,0.0000 +0.0000,0.0000,0.0000,-0.6129,-0.7902,0.0000 +0.0000,0.0000,0.0000,-0.5878,-0.8090,0.0000 +0.0000,0.0000,0.0000,-0.5621,-0.8271,0.0000 +0.0000,0.0000,0.0000,-0.5358,-0.8443,0.0000 +0.0000,0.0000,0.0000,-0.5090,-0.8607,0.0000 +0.0000,0.0000,0.0000,-0.4818,-0.8763,0.0000 +0.0000,0.0000,0.0000,-0.4540,-0.8910,0.0000 +0.0000,0.0000,0.0000,-0.4258,-0.9048,0.0000 +0.0000,0.0000,0.0000,-0.3971,-0.9178,0.0000 +0.0000,0.0000,0.0000,-0.3681,-0.9298,0.0000 +0.0000,0.0000,0.0000,-0.3387,-0.9409,0.0000 +0.0000,0.0000,0.0000,-0.3090,-0.9511,0.0000 +0.0000,0.0000,0.0000,-0.2790,-0.9603,0.0000 +0.0000,0.0000,0.0000,-0.2487,-0.9686,0.0000 +0.0000,0.0000,0.0000,-0.2181,-0.9759,0.0000 +0.0000,0.0000,0.0000,-0.1874,-0.9823,0.0000 +0.0000,0.0000,0.0000,-0.1564,-0.9877,0.0000 +0.0000,0.0000,0.0000,-0.1253,-0.9921,0.0000 +0.0000,0.0000,0.0000,-0.0941,-0.9956,0.0000 +0.0000,0.0000,0.0000,-0.0628,-0.9980,0.0000 +0.0000,0.0000,0.0000,-0.0314,-0.9995,0.0000 +0.0000,0.0000,0.0000,0.0000,-1.0000,0.0000 +0.0000,0.0000,0.0000,0.0314,-0.9995,0.0000 +0.0000,0.0000,0.0000,0.0628,-0.9980,0.0000 +0.0000,0.0000,0.0000,0.0941,-0.9956,0.0000 +0.0000,0.0000,0.0000,0.1253,-0.9921,0.0000 +0.0000,0.0000,0.0000,0.1564,-0.9877,0.0000 +0.0000,0.0000,0.0000,0.1874,-0.9823,0.0000 +0.0000,0.0000,0.0000,0.2181,-0.9759,0.0000 +0.0000,0.0000,0.0000,0.2487,-0.9686,0.0000 +0.0000,0.0000,0.0000,0.2790,-0.9603,0.0000 +0.0000,0.0000,0.0000,0.3090,-0.9511,0.0000 +0.0000,0.0000,0.0000,0.3387,-0.9409,0.0000 +0.0000,0.0000,0.0000,0.3681,-0.9298,0.0000 +0.0000,0.0000,0.0000,0.3971,-0.9178,0.0000 +0.0000,0.0000,0.0000,0.4258,-0.9048,0.0000 +0.0000,0.0000,0.0000,0.4540,-0.8910,0.0000 +0.0000,0.0000,0.0000,0.4818,-0.8763,0.0000 +0.0000,0.0000,0.0000,0.5090,-0.8607,0.0000 +0.0000,0.0000,0.0000,0.5358,-0.8443,0.0000 +0.0000,0.0000,0.0000,0.5621,-0.8271,0.0000 +0.0000,0.0000,0.0000,0.5878,-0.8090,0.0000 +0.0000,0.0000,0.0000,0.6129,-0.7902,0.0000 +0.0000,0.0000,0.0000,0.6374,-0.7705,0.0000 +0.0000,0.0000,0.0000,0.6613,-0.7501,0.0000 +0.0000,0.0000,0.0000,0.6845,-0.7290,0.0000 +0.0000,0.0000,0.0000,0.7071,-0.7071,0.0000 +0.0000,0.0000,0.0000,0.7290,-0.6845,0.0000 +0.0000,0.0000,0.0000,0.7501,-0.6613,0.0000 +0.0000,0.0000,0.0000,0.7705,-0.6374,0.0000 +0.0000,0.0000,0.0000,0.7902,-0.6129,0.0000 +0.0000,0.0000,0.0000,0.8090,-0.5878,0.0000 +0.0000,0.0000,0.0000,0.8271,-0.5621,0.0000 +0.0000,0.0000,0.0000,0.8443,-0.5358,0.0000 +0.0000,0.0000,0.0000,0.8607,-0.5090,0.0000 +0.0000,0.0000,0.0000,0.8763,-0.4818,0.0000 +0.0000,0.0000,0.0000,0.8910,-0.4540,0.0000 +0.0000,0.0000,0.0000,0.9048,-0.4258,0.0000 +0.0000,0.0000,0.0000,0.9178,-0.3971,0.0000 +0.0000,0.0000,0.0000,0.9298,-0.3681,0.0000 +0.0000,0.0000,0.0000,0.9409,-0.3387,0.0000 +0.0000,0.0000,0.0000,0.9511,-0.3090,0.0000 +0.0000,0.0000,0.0000,0.9603,-0.2790,0.0000 +0.0000,0.0000,0.0000,0.9686,-0.2487,0.0000 +0.0000,0.0000,0.0000,0.9759,-0.2181,0.0000 +0.0000,0.0000,0.0000,0.9823,-0.1874,0.0000 +0.0000,0.0000,0.0000,0.9877,-0.1564,0.0000 +0.0000,0.0000,0.0000,0.9921,-0.1253,0.0000 +0.0000,0.0000,0.0000,0.9956,-0.0941,0.0000 +0.0000,0.0000,0.0000,0.9980,-0.0628,0.0000 +0.0000,0.0000,0.0000,0.9995,-0.0314,0.0000 +0.0000,0.0000,0.0000,1.0000,0.0000,0.0000 diff --git a/scripts/trajectories/full-circle-4s-ccw.csv b/scripts/trajectories/full-circle-4s-ccw.csv index c5478e905ab53bd8ef5bb6c3d8d749cb712e784d..13eeae28e126750542c3fc6583d05e4a30575f42 100644 --- a/scripts/trajectories/full-circle-4s-ccw.csv +++ b/scripts/trajectories/full-circle-4s-ccw.csv @@ -1,800 +1,800 @@ -0.9998766780,0.0000000000,0.0000000000,0.0157073177 -0.9998766780,0.0000000000,0.0000000000,0.0157073177 -0.9998766780,0.0000000000,0.0000000000,0.0157073177 -0.9998766780,0.0000000000,0.0000000000,0.0157073177 -0.9995065928,0.0000000000,0.0000000000,0.0314107612 -0.9995065928,0.0000000000,0.0000000000,0.0314107612 -0.9995065928,0.0000000000,0.0000000000,0.0314107612 -0.9995065928,0.0000000000,0.0000000000,0.0314107612 -0.9988898635,0.0000000000,0.0000000000,0.0471064486 -0.9988898635,0.0000000000,0.0000000000,0.0471064486 -0.9988898635,0.0000000000,0.0000000000,0.0471064486 -0.9988898635,0.0000000000,0.0000000000,0.0471064486 -0.9980267286,0.0000000000,0.0000000000,0.0627905130 -0.9980267286,0.0000000000,0.0000000000,0.0627905130 -0.9980267286,0.0000000000,0.0000000000,0.0627905130 -0.9980267286,0.0000000000,0.0000000000,0.0627905130 -0.9969173670,0.0000000000,0.0000000000,0.0784590989 -0.9969173670,0.0000000000,0.0000000000,0.0784590989 -0.9969173670,0.0000000000,0.0000000000,0.0784590989 -0.9969173670,0.0000000000,0.0000000000,0.0784590989 -0.9955620170,0.0000000000,0.0000000000,0.0941083133 -0.9955620170,0.0000000000,0.0000000000,0.0941083133 -0.9955620170,0.0000000000,0.0000000000,0.0941083133 -0.9955620170,0.0000000000,0.0000000000,0.0941083133 -0.9939609766,0.0000000000,0.0000000000,0.1097343042 -0.9939609766,0.0000000000,0.0000000000,0.1097343042 -0.9939609766,0.0000000000,0.0000000000,0.1097343042 -0.9939609766,0.0000000000,0.0000000000,0.1097343042 -0.9921147227,0.0000000000,0.0000000000,0.1253332198 -0.9921147227,0.0000000000,0.0000000000,0.1253332198 -0.9921147227,0.0000000000,0.0000000000,0.1253332198 -0.9921147227,0.0000000000,0.0000000000,0.1253332198 -0.9900236726,0.0000000000,0.0000000000,0.1409012228 -0.9900236726,0.0000000000,0.0000000000,0.1409012228 -0.9900236726,0.0000000000,0.0000000000,0.1409012228 -0.9900236726,0.0000000000,0.0000000000,0.1409012228 -0.9876883626,0.0000000000,0.0000000000,0.1564344764 -0.9876883626,0.0000000000,0.0000000000,0.1564344764 -0.9876883626,0.0000000000,0.0000000000,0.1564344764 -0.9876883626,0.0000000000,0.0000000000,0.1564344764 -0.9851093292,0.0000000000,0.0000000000,0.1719291061 -0.9851093292,0.0000000000,0.0000000000,0.1719291061 -0.9851093292,0.0000000000,0.0000000000,0.1719291061 -0.9851093292,0.0000000000,0.0000000000,0.1719291061 -0.9822872281,0.0000000000,0.0000000000,0.1873813272 -0.9822872281,0.0000000000,0.0000000000,0.1873813272 -0.9822872281,0.0000000000,0.0000000000,0.1873813272 -0.9822872281,0.0000000000,0.0000000000,0.1873813272 -0.9792228341,0.0000000000,0.0000000000,0.2027873248 -0.9792228341,0.0000000000,0.0000000000,0.2027873248 -0.9792228341,0.0000000000,0.0000000000,0.2027873248 -0.9792228341,0.0000000000,0.0000000000,0.2027873248 -0.9759167433,0.0000000000,0.0000000000,0.2181432694 -0.9759167433,0.0000000000,0.0000000000,0.2181432694 -0.9759167433,0.0000000000,0.0000000000,0.2181432694 -0.9759167433,0.0000000000,0.0000000000,0.2181432694 -0.9723699093,0.0000000000,0.0000000000,0.2334454060 -0.9723699093,0.0000000000,0.0000000000,0.2334454060 -0.9723699093,0.0000000000,0.0000000000,0.2334454060 -0.9723699093,0.0000000000,0.0000000000,0.2334454060 -0.9685831666,0.0000000000,0.0000000000,0.2486899346 -0.9685831666,0.0000000000,0.0000000000,0.2486899346 -0.9685831666,0.0000000000,0.0000000000,0.2486899346 -0.9685831666,0.0000000000,0.0000000000,0.2486899346 -0.9645574093,0.0000000000,0.0000000000,0.2638731003 -0.9645574093,0.0000000000,0.0000000000,0.2638731003 -0.9645574093,0.0000000000,0.0000000000,0.2638731003 -0.9645574093,0.0000000000,0.0000000000,0.2638731003 -0.9602936506,0.0000000000,0.0000000000,0.2789911628 -0.9602936506,0.0000000000,0.0000000000,0.2789911628 -0.9602936506,0.0000000000,0.0000000000,0.2789911628 -0.9602936506,0.0000000000,0.0000000000,0.2789911628 -0.9557930231,0.0000000000,0.0000000000,0.2940403819 -0.9557930231,0.0000000000,0.0000000000,0.2940403819 -0.9557930231,0.0000000000,0.0000000000,0.2940403819 -0.9557930231,0.0000000000,0.0000000000,0.2940403819 -0.9510565400,0.0000000000,0.0000000000,0.3090170920 -0.9510565400,0.0000000000,0.0000000000,0.3090170920 -0.9510565400,0.0000000000,0.0000000000,0.3090170920 -0.9510565400,0.0000000000,0.0000000000,0.3090170920 -0.9460853338,0.0000000000,0.0000000000,0.3239174783 -0.9460853338,0.0000000000,0.0000000000,0.3239174783 -0.9460853338,0.0000000000,0.0000000000,0.3239174783 -0.9460853338,0.0000000000,0.0000000000,0.3239174783 -0.9408807755,0.0000000000,0.0000000000,0.3387380242 -0.9408807755,0.0000000000,0.0000000000,0.3387380242 -0.9408807755,0.0000000000,0.0000000000,0.3387380242 -0.9408807755,0.0000000000,0.0000000000,0.3387380242 -0.9354439974,0.0000000000,0.0000000000,0.3534749150 -0.9354439974,0.0000000000,0.0000000000,0.3534749150 -0.9354439974,0.0000000000,0.0000000000,0.3534749150 -0.9354439974,0.0000000000,0.0000000000,0.3534749150 -0.9297764897,0.0000000000,0.0000000000,0.3681246638 -0.9297764897,0.0000000000,0.0000000000,0.3681246638 -0.9297764897,0.0000000000,0.0000000000,0.3681246638 -0.9297764897,0.0000000000,0.0000000000,0.3681246638 -0.9238795042,0.0000000000,0.0000000000,0.3826835155 -0.9238795042,0.0000000000,0.0000000000,0.3826835155 -0.9238795042,0.0000000000,0.0000000000,0.3826835155 -0.9238795042,0.0000000000,0.0000000000,0.3826835155 -0.9177545905,0.0000000000,0.0000000000,0.3971479833 -0.9177545905,0.0000000000,0.0000000000,0.3971479833 -0.9177545905,0.0000000000,0.0000000000,0.3971479833 -0.9177545905,0.0000000000,0.0000000000,0.3971479833 -0.9114032388,0.0000000000,0.0000000000,0.4115144610 -0.9114032388,0.0000000000,0.0000000000,0.4115144610 -0.9114032388,0.0000000000,0.0000000000,0.4115144610 -0.9114032388,0.0000000000,0.0000000000,0.4115144610 -0.9048269987,0.0000000000,0.0000000000,0.4257794023 -0.9048269987,0.0000000000,0.0000000000,0.4257794023 -0.9048269987,0.0000000000,0.0000000000,0.4257794023 -0.9048269987,0.0000000000,0.0000000000,0.4257794023 -0.8980275393,0.0000000000,0.0000000000,0.4399392903 -0.8980275393,0.0000000000,0.0000000000,0.4399392903 -0.8980275393,0.0000000000,0.0000000000,0.4399392903 -0.8980275393,0.0000000000,0.0000000000,0.4399392903 -0.8910064697,0.0000000000,0.0000000000,0.4539906085 -0.8910064697,0.0000000000,0.0000000000,0.4539906085 -0.8910064697,0.0000000000,0.0000000000,0.4539906085 -0.8910064697,0.0000000000,0.0000000000,0.4539906085 -0.8837655783,0.0000000000,0.0000000000,0.4679299295 -0.8837655783,0.0000000000,0.0000000000,0.4679299295 -0.8837655783,0.0000000000,0.0000000000,0.4679299295 -0.8837655783,0.0000000000,0.0000000000,0.4679299295 -0.8763066530,0.0000000000,0.0000000000,0.4817538261 -0.8763066530,0.0000000000,0.0000000000,0.4817538261 -0.8763066530,0.0000000000,0.0000000000,0.4817538261 -0.8763066530,0.0000000000,0.0000000000,0.4817538261 -0.8686314225,0.0000000000,0.0000000000,0.4954588115 -0.8686314225,0.0000000000,0.0000000000,0.4954588115 -0.8686314225,0.0000000000,0.0000000000,0.4954588115 -0.8686314225,0.0000000000,0.0000000000,0.4954588115 -0.8607419729,0.0000000000,0.0000000000,0.5090415478 -0.8607419729,0.0000000000,0.0000000000,0.5090415478 -0.8607419729,0.0000000000,0.0000000000,0.5090415478 -0.8607419729,0.0000000000,0.0000000000,0.5090415478 -0.8526400924,0.0000000000,0.0000000000,0.5224987268 -0.8526400924,0.0000000000,0.0000000000,0.5224987268 -0.8526400924,0.0000000000,0.0000000000,0.5224987268 -0.8526400924,0.0000000000,0.0000000000,0.5224987268 -0.8443278670,0.0000000000,0.0000000000,0.5358269811 -0.8443278670,0.0000000000,0.0000000000,0.5358269811 -0.8443278670,0.0000000000,0.0000000000,0.5358269811 -0.8443278670,0.0000000000,0.0000000000,0.5358269811 -0.8358072639,0.0000000000,0.0000000000,0.5490229726 -0.8358072639,0.0000000000,0.0000000000,0.5490229726 -0.8358072639,0.0000000000,0.0000000000,0.5490229726 -0.8358072639,0.0000000000,0.0000000000,0.5490229726 -0.8270804882,0.0000000000,0.0000000000,0.5620835423 -0.8270804882,0.0000000000,0.0000000000,0.5620835423 -0.8270804882,0.0000000000,0.0000000000,0.5620835423 -0.8270804882,0.0000000000,0.0000000000,0.5620835423 -0.8181496263,0.0000000000,0.0000000000,0.5750054121 -0.8181496263,0.0000000000,0.0000000000,0.5750054121 -0.8181496263,0.0000000000,0.0000000000,0.5750054121 -0.8181496263,0.0000000000,0.0000000000,0.5750054121 -0.8090168834,0.0000000000,0.0000000000,0.5877854228 -0.8090168834,0.0000000000,0.0000000000,0.5877854228 -0.8090168834,0.0000000000,0.0000000000,0.5877854228 -0.8090168834,0.0000000000,0.0000000000,0.5877854228 -0.7996845245,0.0000000000,0.0000000000,0.6004204154 -0.7996845245,0.0000000000,0.0000000000,0.6004204154 -0.7996845245,0.0000000000,0.0000000000,0.6004204154 -0.7996845245,0.0000000000,0.0000000000,0.6004204154 -0.7901548743,0.0000000000,0.0000000000,0.6129072309 -0.7901548743,0.0000000000,0.0000000000,0.6129072309 -0.7901548743,0.0000000000,0.0000000000,0.6129072309 -0.7901548743,0.0000000000,0.0000000000,0.6129072309 -0.7804302573,0.0000000000,0.0000000000,0.6252428293 -0.7804302573,0.0000000000,0.0000000000,0.6252428293 -0.7804302573,0.0000000000,0.0000000000,0.6252428293 -0.7804302573,0.0000000000,0.0000000000,0.6252428293 -0.7705131173,0.0000000000,0.0000000000,0.6374241710 -0.7705131173,0.0000000000,0.0000000000,0.6374241710 -0.7705131173,0.0000000000,0.0000000000,0.6374241710 -0.7705131173,0.0000000000,0.0000000000,0.6374241710 -0.7604058385,0.0000000000,0.0000000000,0.6494482160 -0.7604058385,0.0000000000,0.0000000000,0.6494482160 -0.7604058385,0.0000000000,0.0000000000,0.6494482160 -0.7604058385,0.0000000000,0.0000000000,0.6494482160 -0.7501109242,0.0000000000,0.0000000000,0.6613120437 -0.7501109242,0.0000000000,0.0000000000,0.6613120437 -0.7501109242,0.0000000000,0.0000000000,0.6613120437 -0.7501109242,0.0000000000,0.0000000000,0.6613120437 -0.7396309376,0.0000000000,0.0000000000,0.6730126739 -0.7396309376,0.0000000000,0.0000000000,0.6730126739 -0.7396309376,0.0000000000,0.0000000000,0.6730126739 -0.7396309376,0.0000000000,0.0000000000,0.6730126739 -0.7289684415,0.0000000000,0.0000000000,0.6845473051 -0.7289684415,0.0000000000,0.0000000000,0.6845473051 -0.7289684415,0.0000000000,0.0000000000,0.6845473051 -0.7289684415,0.0000000000,0.0000000000,0.6845473051 -0.7181261778,0.0000000000,0.0000000000,0.6959130168 -0.7181261778,0.0000000000,0.0000000000,0.6959130168 -0.7181261778,0.0000000000,0.0000000000,0.6959130168 -0.7181261778,0.0000000000,0.0000000000,0.6959130168 -0.7071065903,0.0000000000,0.0000000000,0.7071069479 -0.7071065903,0.0000000000,0.0000000000,0.7071069479 -0.7071065903,0.0000000000,0.0000000000,0.7071069479 -0.7071065903,0.0000000000,0.0000000000,0.7071069479 -0.6959125996,0.0000000000,0.0000000000,0.7181264758 -0.6959125996,0.0000000000,0.0000000000,0.7181264758 -0.6959125996,0.0000000000,0.0000000000,0.7181264758 -0.6959125996,0.0000000000,0.0000000000,0.7181264758 -0.6845469475,0.0000000000,0.0000000000,0.7289688587 -0.6845469475,0.0000000000,0.0000000000,0.7289688587 -0.6845469475,0.0000000000,0.0000000000,0.7289688587 -0.6845469475,0.0000000000,0.0000000000,0.7289688587 -0.6730123162,0.0000000000,0.0000000000,0.7396312952 -0.6730123162,0.0000000000,0.0000000000,0.7396312952 -0.6730123162,0.0000000000,0.0000000000,0.7396312952 -0.6730123162,0.0000000000,0.0000000000,0.7396312952 -0.6613116264,0.0000000000,0.0000000000,0.7501112819 -0.6613116264,0.0000000000,0.0000000000,0.7501112819 -0.6613116264,0.0000000000,0.0000000000,0.7501112819 -0.6613116264,0.0000000000,0.0000000000,0.7501112819 -0.6494478583,0.0000000000,0.0000000000,0.7604061961 -0.6494478583,0.0000000000,0.0000000000,0.7604061961 -0.6494478583,0.0000000000,0.0000000000,0.7604061961 -0.6494478583,0.0000000000,0.0000000000,0.7604061961 -0.6374237537,0.0000000000,0.0000000000,0.7705134153 -0.6374237537,0.0000000000,0.0000000000,0.7705134153 -0.6374237537,0.0000000000,0.0000000000,0.7705134153 -0.6374237537,0.0000000000,0.0000000000,0.7705134153 -0.6252424121,0.0000000000,0.0000000000,0.7804306149 -0.6252424121,0.0000000000,0.0000000000,0.7804306149 -0.6252424121,0.0000000000,0.0000000000,0.7804306149 -0.6252424121,0.0000000000,0.0000000000,0.7804306149 -0.6129068136,0.0000000000,0.0000000000,0.7901552320 -0.6129068136,0.0000000000,0.0000000000,0.7901552320 -0.6129068136,0.0000000000,0.0000000000,0.7901552320 -0.6129068136,0.0000000000,0.0000000000,0.7901552320 -0.6004199982,0.0000000000,0.0000000000,0.7996848226 -0.6004199982,0.0000000000,0.0000000000,0.7996848226 -0.6004199982,0.0000000000,0.0000000000,0.7996848226 -0.6004199982,0.0000000000,0.0000000000,0.7996848226 -0.5877850056,0.0000000000,0.0000000000,0.8090171814 -0.5877850056,0.0000000000,0.0000000000,0.8090171814 -0.5877850056,0.0000000000,0.0000000000,0.8090171814 -0.5877850056,0.0000000000,0.0000000000,0.8090171814 -0.5750049949,0.0000000000,0.0000000000,0.8181499243 -0.5750049949,0.0000000000,0.0000000000,0.8181499243 -0.5750049949,0.0000000000,0.0000000000,0.8181499243 -0.5750049949,0.0000000000,0.0000000000,0.8181499243 -0.5620831251,0.0000000000,0.0000000000,0.8270807862 -0.5620831251,0.0000000000,0.0000000000,0.8270807862 -0.5620831251,0.0000000000,0.0000000000,0.8270807862 -0.5620831251,0.0000000000,0.0000000000,0.8270807862 -0.5490225554,0.0000000000,0.0000000000,0.8358075619 -0.5490225554,0.0000000000,0.0000000000,0.8358075619 -0.5490225554,0.0000000000,0.0000000000,0.8358075619 -0.5490225554,0.0000000000,0.0000000000,0.8358075619 -0.5358265638,0.0000000000,0.0000000000,0.8443281054 -0.5358265638,0.0000000000,0.0000000000,0.8443281054 -0.5358265638,0.0000000000,0.0000000000,0.8443281054 -0.5358265638,0.0000000000,0.0000000000,0.8443281054 -0.5224983096,0.0000000000,0.0000000000,0.8526403308 -0.5224983096,0.0000000000,0.0000000000,0.8526403308 -0.5224983096,0.0000000000,0.0000000000,0.8526403308 -0.5224983096,0.0000000000,0.0000000000,0.8526403308 -0.5090411901,0.0000000000,0.0000000000,0.8607422113 -0.5090411901,0.0000000000,0.0000000000,0.8607422113 -0.5090411901,0.0000000000,0.0000000000,0.8607422113 -0.5090411901,0.0000000000,0.0000000000,0.8607422113 -0.4954583943,0.0000000000,0.0000000000,0.8686316609 -0.4954583943,0.0000000000,0.0000000000,0.8686316609 -0.4954583943,0.0000000000,0.0000000000,0.8686316609 -0.4954583943,0.0000000000,0.0000000000,0.8686316609 -0.4817534089,0.0000000000,0.0000000000,0.8763068318 -0.4817534089,0.0000000000,0.0000000000,0.8763068318 -0.4817534089,0.0000000000,0.0000000000,0.8763068318 -0.4817534089,0.0000000000,0.0000000000,0.8763068318 -0.4679295421,0.0000000000,0.0000000000,0.8837657571 -0.4679295421,0.0000000000,0.0000000000,0.8837657571 -0.4679295421,0.0000000000,0.0000000000,0.8837657571 -0.4679295421,0.0000000000,0.0000000000,0.8837657571 -0.4539902210,0.0000000000,0.0000000000,0.8910066485 -0.4539902210,0.0000000000,0.0000000000,0.8910066485 -0.4539902210,0.0000000000,0.0000000000,0.8910066485 -0.4539902210,0.0000000000,0.0000000000,0.8910066485 -0.4399388731,0.0000000000,0.0000000000,0.8980277181 -0.4399388731,0.0000000000,0.0000000000,0.8980277181 -0.4399388731,0.0000000000,0.0000000000,0.8980277181 -0.4399388731,0.0000000000,0.0000000000,0.8980277181 -0.4257789850,0.0000000000,0.0000000000,0.9048271775 -0.4257789850,0.0000000000,0.0000000000,0.9048271775 -0.4257789850,0.0000000000,0.0000000000,0.9048271775 -0.4257789850,0.0000000000,0.0000000000,0.9048271775 -0.4115140438,0.0000000000,0.0000000000,0.9114034176 -0.4115140438,0.0000000000,0.0000000000,0.9114034176 -0.4115140438,0.0000000000,0.0000000000,0.9114034176 -0.4115140438,0.0000000000,0.0000000000,0.9114034176 -0.3971475661,0.0000000000,0.0000000000,0.9177547693 -0.3971475661,0.0000000000,0.0000000000,0.9177547693 -0.3971475661,0.0000000000,0.0000000000,0.9177547693 -0.3971475661,0.0000000000,0.0000000000,0.9177547693 -0.3826830983,0.0000000000,0.0000000000,0.9238796830 -0.3826830983,0.0000000000,0.0000000000,0.9238796830 -0.3826830983,0.0000000000,0.0000000000,0.9238796830 -0.3826830983,0.0000000000,0.0000000000,0.9238796830 -0.3681242168,0.0000000000,0.0000000000,0.9297766089 -0.3681242168,0.0000000000,0.0000000000,0.9297766089 -0.3681242168,0.0000000000,0.0000000000,0.9297766089 -0.3681242168,0.0000000000,0.0000000000,0.9297766089 -0.3534744978,0.0000000000,0.0000000000,0.9354441762 -0.3534744978,0.0000000000,0.0000000000,0.9354441762 -0.3534744978,0.0000000000,0.0000000000,0.9354441762 -0.3534744978,0.0000000000,0.0000000000,0.9354441762 -0.3387375772,0.0000000000,0.0000000000,0.9408808947 -0.3387375772,0.0000000000,0.0000000000,0.9408808947 -0.3387375772,0.0000000000,0.0000000000,0.9408808947 -0.3387375772,0.0000000000,0.0000000000,0.9408808947 -0.3239170611,0.0000000000,0.0000000000,0.9460855126 -0.3239170611,0.0000000000,0.0000000000,0.9460855126 -0.3239170611,0.0000000000,0.0000000000,0.9460855126 -0.3239170611,0.0000000000,0.0000000000,0.9460855126 -0.3090166152,0.0000000000,0.0000000000,0.9510566592 -0.3090166152,0.0000000000,0.0000000000,0.9510566592 -0.3090166152,0.0000000000,0.0000000000,0.9510566592 -0.3090166152,0.0000000000,0.0000000000,0.9510566592 -0.2940399349,0.0000000000,0.0000000000,0.9557931423 -0.2940399349,0.0000000000,0.0000000000,0.9557931423 -0.2940399349,0.0000000000,0.0000000000,0.9557931423 -0.2940399349,0.0000000000,0.0000000000,0.9557931423 -0.2789907455,0.0000000000,0.0000000000,0.9602938294 -0.2789907455,0.0000000000,0.0000000000,0.9602938294 -0.2789907455,0.0000000000,0.0000000000,0.9602938294 -0.2789907455,0.0000000000,0.0000000000,0.9602938294 -0.2638726532,0.0000000000,0.0000000000,0.9645575285 -0.2638726532,0.0000000000,0.0000000000,0.9645575285 -0.2638726532,0.0000000000,0.0000000000,0.9645575285 -0.2638726532,0.0000000000,0.0000000000,0.9645575285 -0.2486894876,0.0000000000,0.0000000000,0.9685832858 -0.2486894876,0.0000000000,0.0000000000,0.9685832858 -0.2486894876,0.0000000000,0.0000000000,0.9685832858 -0.2486894876,0.0000000000,0.0000000000,0.9685832858 -0.2334449440,0.0000000000,0.0000000000,0.9723700285 -0.2334449440,0.0000000000,0.0000000000,0.9723700285 -0.2334449440,0.0000000000,0.0000000000,0.9723700285 -0.2334449440,0.0000000000,0.0000000000,0.9723700285 -0.2181428224,0.0000000000,0.0000000000,0.9759168625 -0.2181428224,0.0000000000,0.0000000000,0.9759168625 -0.2181428224,0.0000000000,0.0000000000,0.9759168625 -0.2181428224,0.0000000000,0.0000000000,0.9759168625 -0.2027868629,0.0000000000,0.0000000000,0.9792228937 -0.2027868629,0.0000000000,0.0000000000,0.9792228937 -0.2027868629,0.0000000000,0.0000000000,0.9792228937 -0.2027868629,0.0000000000,0.0000000000,0.9792228937 -0.1873808801,0.0000000000,0.0000000000,0.9822873473 -0.1873808801,0.0000000000,0.0000000000,0.9822873473 -0.1873808801,0.0000000000,0.0000000000,0.9822873473 -0.1873808801,0.0000000000,0.0000000000,0.9822873473 -0.1719286591,0.0000000000,0.0000000000,0.9851093888 -0.1719286591,0.0000000000,0.0000000000,0.9851093888 -0.1719286591,0.0000000000,0.0000000000,0.9851093888 -0.1719286591,0.0000000000,0.0000000000,0.9851093888 -0.1564340144,0.0000000000,0.0000000000,0.9876884222 -0.1564340144,0.0000000000,0.0000000000,0.9876884222 -0.1564340144,0.0000000000,0.0000000000,0.9876884222 -0.1564340144,0.0000000000,0.0000000000,0.9876884222 -0.1409007758,0.0000000000,0.0000000000,0.9900237322 -0.1409007758,0.0000000000,0.0000000000,0.9900237322 -0.1409007758,0.0000000000,0.0000000000,0.9900237322 -0.1409007758,0.0000000000,0.0000000000,0.9900237322 -0.1253327727,0.0000000000,0.0000000000,0.9921147823 -0.1253327727,0.0000000000,0.0000000000,0.9921147823 -0.1253327727,0.0000000000,0.0000000000,0.9921147823 -0.1253327727,0.0000000000,0.0000000000,0.9921147823 -0.1097338349,0.0000000000,0.0000000000,0.9939610362 -0.1097338349,0.0000000000,0.0000000000,0.9939610362 -0.1097338349,0.0000000000,0.0000000000,0.9939610362 -0.1097338349,0.0000000000,0.0000000000,0.9939610362 -0.0941078365,0.0000000000,0.0000000000,0.9955620170 -0.0941078365,0.0000000000,0.0000000000,0.9955620170 -0.0941078365,0.0000000000,0.0000000000,0.9955620170 -0.0941078365,0.0000000000,0.0000000000,0.9955620170 -0.0784586146,0.0000000000,0.0000000000,0.9969174266 -0.0784586146,0.0000000000,0.0000000000,0.9969174266 -0.0784586146,0.0000000000,0.0000000000,0.9969174266 -0.0784586146,0.0000000000,0.0000000000,0.9969174266 -0.0627900288,0.0000000000,0.0000000000,0.9980267882 -0.0627900288,0.0000000000,0.0000000000,0.9980267882 -0.0627900288,0.0000000000,0.0000000000,0.9980267882 -0.0627900288,0.0000000000,0.0000000000,0.9980267882 -0.0471059494,0.0000000000,0.0000000000,0.9988899231 -0.0471059494,0.0000000000,0.0000000000,0.9988899231 -0.0471059494,0.0000000000,0.0000000000,0.9988899231 -0.0471059494,0.0000000000,0.0000000000,0.9988899231 -0.0314102508,0.0000000000,0.0000000000,0.9995065928 -0.0314102508,0.0000000000,0.0000000000,0.9995065928 -0.0314102508,0.0000000000,0.0000000000,0.9995065928 -0.0314102508,0.0000000000,0.0000000000,0.9995065928 -0.0157068055,0.0000000000,0.0000000000,0.9998766780 -0.0157068055,0.0000000000,0.0000000000,0.9998766780 -0.0157068055,0.0000000000,0.0000000000,0.9998766780 -0.0157068055,0.0000000000,0.0000000000,0.9998766780 --0.0000005205,0.0000000000,0.0000000000,1.0000000000 --0.0000005205,0.0000000000,0.0000000000,1.0000000000 --0.0000005205,0.0000000000,0.0000000000,1.0000000000 --0.0000005205,0.0000000000,0.0000000000,1.0000000000 --0.0157078449,0.0000000000,0.0000000000,0.9998766184 --0.0157078449,0.0000000000,0.0000000000,0.9998766184 --0.0157078449,0.0000000000,0.0000000000,0.9998766184 --0.0157078449,0.0000000000,0.0000000000,0.9998766184 --0.0314112939,0.0000000000,0.0000000000,0.9995065331 --0.0314112939,0.0000000000,0.0000000000,0.9995065331 --0.0314112939,0.0000000000,0.0000000000,0.9995065331 --0.0314112939,0.0000000000,0.0000000000,0.9995065331 --0.0471069887,0.0000000000,0.0000000000,0.9988898635 --0.0471069887,0.0000000000,0.0000000000,0.9988898635 --0.0471069887,0.0000000000,0.0000000000,0.9988898635 --0.0471069887,0.0000000000,0.0000000000,0.9988898635 --0.0627910718,0.0000000000,0.0000000000,0.9980267286 --0.0627910718,0.0000000000,0.0000000000,0.9980267286 --0.0627910718,0.0000000000,0.0000000000,0.9980267286 --0.0627910718,0.0000000000,0.0000000000,0.9980267286 --0.0784596503,0.0000000000,0.0000000000,0.9969173074 --0.0784596503,0.0000000000,0.0000000000,0.9969173074 --0.0784596503,0.0000000000,0.0000000000,0.9969173074 --0.0784596503,0.0000000000,0.0000000000,0.9969173074 --0.0941088796,0.0000000000,0.0000000000,0.9955619574 --0.0941088796,0.0000000000,0.0000000000,0.9955619574 --0.0941088796,0.0000000000,0.0000000000,0.9955619574 --0.0941088796,0.0000000000,0.0000000000,0.9955619574 --0.1097348705,0.0000000000,0.0000000000,0.9939609170 --0.1097348705,0.0000000000,0.0000000000,0.9939609170 --0.1097348705,0.0000000000,0.0000000000,0.9939609170 --0.1097348705,0.0000000000,0.0000000000,0.9939609170 --0.1253338158,0.0000000000,0.0000000000,0.9921146631 --0.1253338158,0.0000000000,0.0000000000,0.9921146631 --0.1253338158,0.0000000000,0.0000000000,0.9921146631 --0.1253338158,0.0000000000,0.0000000000,0.9921146631 --0.1409018189,0.0000000000,0.0000000000,0.9900236130 --0.1409018189,0.0000000000,0.0000000000,0.9900236130 --0.1409018189,0.0000000000,0.0000000000,0.9900236130 --0.1409018189,0.0000000000,0.0000000000,0.9900236130 --0.1564350426,0.0000000000,0.0000000000,0.9876882434 --0.1564350426,0.0000000000,0.0000000000,0.9876882434 --0.1564350426,0.0000000000,0.0000000000,0.9876882434 --0.1564350426,0.0000000000,0.0000000000,0.9876882434 --0.1719297022,0.0000000000,0.0000000000,0.9851092696 --0.1719297022,0.0000000000,0.0000000000,0.9851092696 --0.1719297022,0.0000000000,0.0000000000,0.9851092696 --0.1719297022,0.0000000000,0.0000000000,0.9851092696 --0.1873819083,0.0000000000,0.0000000000,0.9822871685 --0.1873819083,0.0000000000,0.0000000000,0.9822871685 --0.1873819083,0.0000000000,0.0000000000,0.9822871685 --0.1873819083,0.0000000000,0.0000000000,0.9822871685 --0.2027878910,0.0000000000,0.0000000000,0.9792227149 --0.2027878910,0.0000000000,0.0000000000,0.9792227149 --0.2027878910,0.0000000000,0.0000000000,0.9792227149 --0.2027878910,0.0000000000,0.0000000000,0.9792227149 --0.2181438357,0.0000000000,0.0000000000,0.9759166241 --0.2181438357,0.0000000000,0.0000000000,0.9759166241 --0.2181438357,0.0000000000,0.0000000000,0.9759166241 --0.2181438357,0.0000000000,0.0000000000,0.9759166241 --0.2334459573,0.0000000000,0.0000000000,0.9723697901 --0.2334459573,0.0000000000,0.0000000000,0.9723697901 --0.2334459573,0.0000000000,0.0000000000,0.9723697901 --0.2334459573,0.0000000000,0.0000000000,0.9723697901 --0.2486904860,0.0000000000,0.0000000000,0.9685829878 --0.2486904860,0.0000000000,0.0000000000,0.9685829878 --0.2486904860,0.0000000000,0.0000000000,0.9685829878 --0.2486904860,0.0000000000,0.0000000000,0.9685829878 --0.2638736963,0.0000000000,0.0000000000,0.9645572901 --0.2638736963,0.0000000000,0.0000000000,0.9645572901 --0.2638736963,0.0000000000,0.0000000000,0.9645572901 --0.2638736963,0.0000000000,0.0000000000,0.9645572901 --0.2789917290,0.0000000000,0.0000000000,0.9602935314 --0.2789917290,0.0000000000,0.0000000000,0.9602935314 --0.2789917290,0.0000000000,0.0000000000,0.9602935314 --0.2789917290,0.0000000000,0.0000000000,0.9602935314 --0.2940409482,0.0000000000,0.0000000000,0.9557928443 --0.2940409482,0.0000000000,0.0000000000,0.9557928443 --0.2940409482,0.0000000000,0.0000000000,0.9557928443 --0.2940409482,0.0000000000,0.0000000000,0.9557928443 --0.3090175986,0.0000000000,0.0000000000,0.9510563016 --0.3090175986,0.0000000000,0.0000000000,0.9510563016 --0.3090175986,0.0000000000,0.0000000000,0.9510563016 --0.3090175986,0.0000000000,0.0000000000,0.9510563016 --0.3239180446,0.0000000000,0.0000000000,0.9460851550 --0.3239180446,0.0000000000,0.0000000000,0.9460851550 --0.3239180446,0.0000000000,0.0000000000,0.9460851550 --0.3239180446,0.0000000000,0.0000000000,0.9460851550 --0.3387385607,0.0000000000,0.0000000000,0.9408805966 --0.3387385607,0.0000000000,0.0000000000,0.9408805966 --0.3387385607,0.0000000000,0.0000000000,0.9408805966 --0.3387385607,0.0000000000,0.0000000000,0.9408805966 --0.3534754813,0.0000000000,0.0000000000,0.9354438186 --0.3534754813,0.0000000000,0.0000000000,0.9354438186 --0.3534754813,0.0000000000,0.0000000000,0.9354438186 --0.3534754813,0.0000000000,0.0000000000,0.9354438186 --0.3681251705,0.0000000000,0.0000000000,0.9297762513 --0.3681251705,0.0000000000,0.0000000000,0.9297762513 --0.3681251705,0.0000000000,0.0000000000,0.9297762513 --0.3681251705,0.0000000000,0.0000000000,0.9297762513 --0.3826840818,0.0000000000,0.0000000000,0.9238793254 --0.3826840818,0.0000000000,0.0000000000,0.9238793254 --0.3826840818,0.0000000000,0.0000000000,0.9238793254 --0.3826840818,0.0000000000,0.0000000000,0.9238793254 --0.3971485198,0.0000000000,0.0000000000,0.9177543521 --0.3971485198,0.0000000000,0.0000000000,0.9177543521 --0.3971485198,0.0000000000,0.0000000000,0.9177543521 --0.3971485198,0.0000000000,0.0000000000,0.9177543521 --0.4115149975,0.0000000000,0.0000000000,0.9114030004 --0.4115149975,0.0000000000,0.0000000000,0.9114030004 --0.4115149975,0.0000000000,0.0000000000,0.9114030004 --0.4115149975,0.0000000000,0.0000000000,0.9114030004 --0.4257798195,0.0000000000,0.0000000000,0.9048268199 --0.4257798195,0.0000000000,0.0000000000,0.9048268199 --0.4257798195,0.0000000000,0.0000000000,0.9048268199 --0.4257798195,0.0000000000,0.0000000000,0.9048268199 --0.4399397075,0.0000000000,0.0000000000,0.8980273008 --0.4399397075,0.0000000000,0.0000000000,0.8980273008 --0.4399397075,0.0000000000,0.0000000000,0.8980273008 --0.4399397075,0.0000000000,0.0000000000,0.8980273008 --0.4539910555,0.0000000000,0.0000000000,0.8910062909 --0.4539910555,0.0000000000,0.0000000000,0.8910062909 --0.4539910555,0.0000000000,0.0000000000,0.8910062909 --0.4539910555,0.0000000000,0.0000000000,0.8910062909 --0.4679303467,0.0000000000,0.0000000000,0.8837653399 --0.4679303467,0.0000000000,0.0000000000,0.8837653399 --0.4679303467,0.0000000000,0.0000000000,0.8837653399 --0.4679303467,0.0000000000,0.0000000000,0.8837653399 --0.4817542136,0.0000000000,0.0000000000,0.8763064146 --0.4817542136,0.0000000000,0.0000000000,0.8763064146 --0.4817542136,0.0000000000,0.0000000000,0.8763064146 --0.4817542136,0.0000000000,0.0000000000,0.8763064146 --0.4954592288,0.0000000000,0.0000000000,0.8686312437 --0.4954592288,0.0000000000,0.0000000000,0.8686312437 --0.4954592288,0.0000000000,0.0000000000,0.8686312437 --0.4954592288,0.0000000000,0.0000000000,0.8686312437 --0.5090419650,0.0000000000,0.0000000000,0.8607417345 --0.5090419650,0.0000000000,0.0000000000,0.8607417345 --0.5090419650,0.0000000000,0.0000000000,0.8607417345 --0.5090419650,0.0000000000,0.0000000000,0.8607417345 --0.5224990845,0.0000000000,0.0000000000,0.8526398540 --0.5224990845,0.0000000000,0.0000000000,0.8526398540 --0.5224990845,0.0000000000,0.0000000000,0.8526398540 --0.5224990845,0.0000000000,0.0000000000,0.8526398540 --0.5358273983,0.0000000000,0.0000000000,0.8443276286 --0.5358273983,0.0000000000,0.0000000000,0.8443276286 --0.5358273983,0.0000000000,0.0000000000,0.8443276286 --0.5358273983,0.0000000000,0.0000000000,0.8443276286 --0.5490233302,0.0000000000,0.0000000000,0.8358070254 --0.5490233302,0.0000000000,0.0000000000,0.8358070254 --0.5490233302,0.0000000000,0.0000000000,0.8358070254 --0.5490233302,0.0000000000,0.0000000000,0.8358070254 --0.5620839000,0.0000000000,0.0000000000,0.8270801902 --0.5620839000,0.0000000000,0.0000000000,0.8270801902 --0.5620839000,0.0000000000,0.0000000000,0.8270801902 --0.5620839000,0.0000000000,0.0000000000,0.8270801902 --0.5750057697,0.0000000000,0.0000000000,0.8181493282 --0.5750057697,0.0000000000,0.0000000000,0.8181493282 --0.5750057697,0.0000000000,0.0000000000,0.8181493282 --0.5750057697,0.0000000000,0.0000000000,0.8181493282 --0.5877858400,0.0000000000,0.0000000000,0.8090166450 --0.5877858400,0.0000000000,0.0000000000,0.8090166450 --0.5877858400,0.0000000000,0.0000000000,0.8090166450 --0.5877858400,0.0000000000,0.0000000000,0.8090166450 --0.6004207730,0.0000000000,0.0000000000,0.7996842861 --0.6004207730,0.0000000000,0.0000000000,0.7996842861 --0.6004207730,0.0000000000,0.0000000000,0.7996842861 --0.6004207730,0.0000000000,0.0000000000,0.7996842861 --0.6129076481,0.0000000000,0.0000000000,0.7901546359 --0.6129076481,0.0000000000,0.0000000000,0.7901546359 --0.6129076481,0.0000000000,0.0000000000,0.7901546359 --0.6129076481,0.0000000000,0.0000000000,0.7901546359 --0.6252432466,0.0000000000,0.0000000000,0.7804300189 --0.6252432466,0.0000000000,0.0000000000,0.7804300189 --0.6252432466,0.0000000000,0.0000000000,0.7804300189 --0.6252432466,0.0000000000,0.0000000000,0.7804300189 --0.6374245286,0.0000000000,0.0000000000,0.7705128193 --0.6374245286,0.0000000000,0.0000000000,0.7705128193 --0.6374245286,0.0000000000,0.0000000000,0.7705128193 --0.6374245286,0.0000000000,0.0000000000,0.7705128193 --0.6494485736,0.0000000000,0.0000000000,0.7604055405 --0.6494485736,0.0000000000,0.0000000000,0.7604055405 --0.6494485736,0.0000000000,0.0000000000,0.7604055405 --0.6494485736,0.0000000000,0.0000000000,0.7604055405 --0.6613124013,0.0000000000,0.0000000000,0.7501106262 --0.6613124013,0.0000000000,0.0000000000,0.7501106262 --0.6613124013,0.0000000000,0.0000000000,0.7501106262 --0.6613124013,0.0000000000,0.0000000000,0.7501106262 --0.6730130315,0.0000000000,0.0000000000,0.7396306396 --0.6730130315,0.0000000000,0.0000000000,0.7396306396 --0.6730130315,0.0000000000,0.0000000000,0.7396306396 --0.6730130315,0.0000000000,0.0000000000,0.7396306396 --0.6845476031,0.0000000000,0.0000000000,0.7289681435 --0.6845476031,0.0000000000,0.0000000000,0.7289681435 --0.6845476031,0.0000000000,0.0000000000,0.7289681435 --0.6845476031,0.0000000000,0.0000000000,0.7289681435 --0.6959133148,0.0000000000,0.0000000000,0.7181258202 --0.6959133148,0.0000000000,0.0000000000,0.7181258202 --0.6959133148,0.0000000000,0.0000000000,0.7181258202 --0.6959133148,0.0000000000,0.0000000000,0.7181258202 --0.7071073055,0.0000000000,0.0000000000,0.7071062922 --0.7071073055,0.0000000000,0.0000000000,0.7071062922 --0.7071073055,0.0000000000,0.0000000000,0.7071062922 --0.7071073055,0.0000000000,0.0000000000,0.7071062922 --0.7181268334,0.0000000000,0.0000000000,0.6959123015 --0.7181268334,0.0000000000,0.0000000000,0.6959123015 --0.7181268334,0.0000000000,0.0000000000,0.6959123015 --0.7181268334,0.0000000000,0.0000000000,0.6959123015 --0.7289691567,0.0000000000,0.0000000000,0.6845465899 --0.7289691567,0.0000000000,0.0000000000,0.6845465899 --0.7289691567,0.0000000000,0.0000000000,0.6845465899 --0.7289691567,0.0000000000,0.0000000000,0.6845465899 --0.7396315932,0.0000000000,0.0000000000,0.6730119586 --0.7396315932,0.0000000000,0.0000000000,0.6730119586 --0.7396315932,0.0000000000,0.0000000000,0.6730119586 --0.7396315932,0.0000000000,0.0000000000,0.6730119586 --0.7501115799,0.0000000000,0.0000000000,0.6613113284 --0.7501115799,0.0000000000,0.0000000000,0.6613113284 --0.7501115799,0.0000000000,0.0000000000,0.6613113284 --0.7501115799,0.0000000000,0.0000000000,0.6613113284 --0.7604064345,0.0000000000,0.0000000000,0.6494475007 --0.7604064345,0.0000000000,0.0000000000,0.6494475007 --0.7604064345,0.0000000000,0.0000000000,0.6494475007 --0.7604064345,0.0000000000,0.0000000000,0.6494475007 --0.7705137134,0.0000000000,0.0000000000,0.6374233961 --0.7705137134,0.0000000000,0.0000000000,0.6374233961 --0.7705137134,0.0000000000,0.0000000000,0.6374233961 --0.7705137134,0.0000000000,0.0000000000,0.6374233961 --0.7804309130,0.0000000000,0.0000000000,0.6252420545 --0.7804309130,0.0000000000,0.0000000000,0.6252420545 --0.7804309130,0.0000000000,0.0000000000,0.6252420545 --0.7804309130,0.0000000000,0.0000000000,0.6252420545 --0.7901554704,0.0000000000,0.0000000000,0.6129064560 --0.7901554704,0.0000000000,0.0000000000,0.6129064560 --0.7901554704,0.0000000000,0.0000000000,0.6129064560 --0.7901554704,0.0000000000,0.0000000000,0.6129064560 --0.7996851802,0.0000000000,0.0000000000,0.6004196405 --0.7996851802,0.0000000000,0.0000000000,0.6004196405 --0.7996851802,0.0000000000,0.0000000000,0.6004196405 --0.7996851802,0.0000000000,0.0000000000,0.6004196405 --0.8090174794,0.0000000000,0.0000000000,0.5877845883 --0.8090174794,0.0000000000,0.0000000000,0.5877845883 --0.8090174794,0.0000000000,0.0000000000,0.5877845883 --0.8090174794,0.0000000000,0.0000000000,0.5877845883 --0.8181501627,0.0000000000,0.0000000000,0.5750045776 --0.8181501627,0.0000000000,0.0000000000,0.5750045776 --0.8181501627,0.0000000000,0.0000000000,0.5750045776 --0.8181501627,0.0000000000,0.0000000000,0.5750045776 --0.8270810246,0.0000000000,0.0000000000,0.5620827079 --0.8270810246,0.0000000000,0.0000000000,0.5620827079 --0.8270810246,0.0000000000,0.0000000000,0.5620827079 --0.8270810246,0.0000000000,0.0000000000,0.5620827079 --0.8358078003,0.0000000000,0.0000000000,0.5490221381 --0.8358078003,0.0000000000,0.0000000000,0.5490221381 --0.8358078003,0.0000000000,0.0000000000,0.5490221381 --0.8358078003,0.0000000000,0.0000000000,0.5490221381 --0.8443284035,0.0000000000,0.0000000000,0.5358261466 --0.8443284035,0.0000000000,0.0000000000,0.5358261466 --0.8443284035,0.0000000000,0.0000000000,0.5358261466 --0.8443284035,0.0000000000,0.0000000000,0.5358261466 --0.8526405692,0.0000000000,0.0000000000,0.5224978924 --0.8526405692,0.0000000000,0.0000000000,0.5224978924 --0.8526405692,0.0000000000,0.0000000000,0.5224978924 --0.8526405692,0.0000000000,0.0000000000,0.5224978924 --0.8607424498,0.0000000000,0.0000000000,0.5090407133 --0.8607424498,0.0000000000,0.0000000000,0.5090407133 --0.8607424498,0.0000000000,0.0000000000,0.5090407133 --0.8607424498,0.0000000000,0.0000000000,0.5090407133 --0.8686319590,0.0000000000,0.0000000000,0.4954579771 --0.8686319590,0.0000000000,0.0000000000,0.4954579771 --0.8686319590,0.0000000000,0.0000000000,0.4954579771 --0.8686319590,0.0000000000,0.0000000000,0.4954579771 --0.8763071299,0.0000000000,0.0000000000,0.4817529619 --0.8763071299,0.0000000000,0.0000000000,0.4817529619 --0.8763071299,0.0000000000,0.0000000000,0.4817529619 --0.8763071299,0.0000000000,0.0000000000,0.4817529619 --0.8837660551,0.0000000000,0.0000000000,0.4679290950 --0.8837660551,0.0000000000,0.0000000000,0.4679290950 --0.8837660551,0.0000000000,0.0000000000,0.4679290950 --0.8837660551,0.0000000000,0.0000000000,0.4679290950 --0.8910068870,0.0000000000,0.0000000000,0.4539897442 --0.8910068870,0.0000000000,0.0000000000,0.4539897442 --0.8910068870,0.0000000000,0.0000000000,0.4539897442 --0.8910068870,0.0000000000,0.0000000000,0.4539897442 --0.8980279565,0.0000000000,0.0000000000,0.4399383962 --0.8980279565,0.0000000000,0.0000000000,0.4399383962 --0.8980279565,0.0000000000,0.0000000000,0.4399383962 --0.8980279565,0.0000000000,0.0000000000,0.4399383962 --0.9048274159,0.0000000000,0.0000000000,0.4257785082 --0.9048274159,0.0000000000,0.0000000000,0.4257785082 --0.9048274159,0.0000000000,0.0000000000,0.4257785082 --0.9048274159,0.0000000000,0.0000000000,0.4257785082 --0.9114036560,0.0000000000,0.0000000000,0.4115135670 --0.9114036560,0.0000000000,0.0000000000,0.4115135670 --0.9114036560,0.0000000000,0.0000000000,0.4115135670 --0.9114036560,0.0000000000,0.0000000000,0.4115135670 --0.9177550077,0.0000000000,0.0000000000,0.3971471190 --0.9177550077,0.0000000000,0.0000000000,0.3971471190 --0.9177550077,0.0000000000,0.0000000000,0.3971471190 --0.9177550077,0.0000000000,0.0000000000,0.3971471190 --0.9238798618,0.0000000000,0.0000000000,0.3826826215 --0.9238798618,0.0000000000,0.0000000000,0.3826826215 --0.9238798618,0.0000000000,0.0000000000,0.3826826215 --0.9238798618,0.0000000000,0.0000000000,0.3826826215 --0.9297768474,0.0000000000,0.0000000000,0.3681237698 --0.9297768474,0.0000000000,0.0000000000,0.3681237698 --0.9297768474,0.0000000000,0.0000000000,0.3681237698 --0.9297768474,0.0000000000,0.0000000000,0.3681237698 --0.9354443550,0.0000000000,0.0000000000,0.3534740210 --0.9354443550,0.0000000000,0.0000000000,0.3534740210 --0.9354443550,0.0000000000,0.0000000000,0.3534740210 --0.9354443550,0.0000000000,0.0000000000,0.3534740210 --0.9408810735,0.0000000000,0.0000000000,0.3387370706 --0.9408810735,0.0000000000,0.0000000000,0.3387370706 --0.9408810735,0.0000000000,0.0000000000,0.3387370706 --0.9408810735,0.0000000000,0.0000000000,0.3387370706 --0.9460856915,0.0000000000,0.0000000000,0.3239165843 --0.9460856915,0.0000000000,0.0000000000,0.3239165843 --0.9460856915,0.0000000000,0.0000000000,0.3239165843 --0.9460856915,0.0000000000,0.0000000000,0.3239165843 --0.9510567784,0.0000000000,0.0000000000,0.3090161383 --0.9510567784,0.0000000000,0.0000000000,0.3090161383 --0.9510567784,0.0000000000,0.0000000000,0.3090161383 --0.9510567784,0.0000000000,0.0000000000,0.3090161383 --0.9557932615,0.0000000000,0.0000000000,0.2940394580 --0.9557932615,0.0000000000,0.0000000000,0.2940394580 --0.9557932615,0.0000000000,0.0000000000,0.2940394580 --0.9557932615,0.0000000000,0.0000000000,0.2940394580 --0.9602939487,0.0000000000,0.0000000000,0.2789902091 --0.9602939487,0.0000000000,0.0000000000,0.2789902091 --0.9602939487,0.0000000000,0.0000000000,0.2789902091 --0.9602939487,0.0000000000,0.0000000000,0.2789902091 --0.9645576477,0.0000000000,0.0000000000,0.2638721466 --0.9645576477,0.0000000000,0.0000000000,0.2638721466 --0.9645576477,0.0000000000,0.0000000000,0.2638721466 --0.9645576477,0.0000000000,0.0000000000,0.2638721466 --0.9685834050,0.0000000000,0.0000000000,0.2486889809 --0.9685834050,0.0000000000,0.0000000000,0.2486889809 --0.9685834050,0.0000000000,0.0000000000,0.2486889809 --0.9685834050,0.0000000000,0.0000000000,0.2486889809 --0.9723701477,0.0000000000,0.0000000000,0.2334444523 --0.9723701477,0.0000000000,0.0000000000,0.2334444523 --0.9723701477,0.0000000000,0.0000000000,0.2334444523 --0.9723701477,0.0000000000,0.0000000000,0.2334444523 --0.9759169817,0.0000000000,0.0000000000,0.2181423157 --0.9759169817,0.0000000000,0.0000000000,0.2181423157 --0.9759169817,0.0000000000,0.0000000000,0.2181423157 --0.9759169817,0.0000000000,0.0000000000,0.2181423157 --0.9792230129,0.0000000000,0.0000000000,0.2027863562 --0.9792230129,0.0000000000,0.0000000000,0.2027863562 --0.9792230129,0.0000000000,0.0000000000,0.2027863562 --0.9792230129,0.0000000000,0.0000000000,0.2027863562 --0.9822874069,0.0000000000,0.0000000000,0.1873803735 --0.9822874069,0.0000000000,0.0000000000,0.1873803735 --0.9822874069,0.0000000000,0.0000000000,0.1873803735 --0.9822874069,0.0000000000,0.0000000000,0.1873803735 --0.9851095080,0.0000000000,0.0000000000,0.1719281375 --0.9851095080,0.0000000000,0.0000000000,0.1719281375 --0.9851095080,0.0000000000,0.0000000000,0.1719281375 --0.9851095080,0.0000000000,0.0000000000,0.1719281375 --0.9876884818,0.0000000000,0.0000000000,0.1564334929 --0.9876884818,0.0000000000,0.0000000000,0.1564334929 --0.9876884818,0.0000000000,0.0000000000,0.1564334929 --0.9876884818,0.0000000000,0.0000000000,0.1564334929 --0.9900237918,0.0000000000,0.0000000000,0.1409002542 --0.9900237918,0.0000000000,0.0000000000,0.1409002542 --0.9900237918,0.0000000000,0.0000000000,0.1409002542 --0.9900237918,0.0000000000,0.0000000000,0.1409002542 --0.9921148419,0.0000000000,0.0000000000,0.1253322512 --0.9921148419,0.0000000000,0.0000000000,0.1253322512 --0.9921148419,0.0000000000,0.0000000000,0.1253322512 --0.9921148419,0.0000000000,0.0000000000,0.1253322512 --0.9939610958,0.0000000000,0.0000000000,0.1097333282 --0.9939610958,0.0000000000,0.0000000000,0.1097333282 --0.9939610958,0.0000000000,0.0000000000,0.1097333282 --0.9939610958,0.0000000000,0.0000000000,0.1097333282 --0.9955620766,0.0000000000,0.0000000000,0.0941073149 --0.9955620766,0.0000000000,0.0000000000,0.0941073149 --0.9955620766,0.0000000000,0.0000000000,0.0941073149 --0.9955620766,0.0000000000,0.0000000000,0.0941073149 --0.9969174266,0.0000000000,0.0000000000,0.0784580931 --0.9969174266,0.0000000000,0.0000000000,0.0784580931 --0.9969174266,0.0000000000,0.0000000000,0.0784580931 --0.9969174266,0.0000000000,0.0000000000,0.0784580931 --0.9980267882,0.0000000000,0.0000000000,0.0627895072 --0.9980267882,0.0000000000,0.0000000000,0.0627895072 --0.9980267882,0.0000000000,0.0000000000,0.0627895072 --0.9980267882,0.0000000000,0.0000000000,0.0627895072 --0.9988899231,0.0000000000,0.0000000000,0.0471054316 --0.9988899231,0.0000000000,0.0000000000,0.0471054316 --0.9988899231,0.0000000000,0.0000000000,0.0471054316 --0.9988899231,0.0000000000,0.0000000000,0.0471054316 --0.9995065928,0.0000000000,0.0000000000,0.0314097330 --0.9995065928,0.0000000000,0.0000000000,0.0314097330 --0.9995065928,0.0000000000,0.0000000000,0.0314097330 --0.9995065928,0.0000000000,0.0000000000,0.0314097330 --0.9998766780,0.0000000000,0.0000000000,0.0157062821 --0.9998766780,0.0000000000,0.0000000000,0.0157062821 --0.9998766780,0.0000000000,0.0000000000,0.0157062821 --0.9998766780,0.0000000000,0.0000000000,0.0157062821 -1.0000000000,0.0000000000,0.0000000000,0.0000010411 -1.0000000000,0.0000000000,0.0000000000,0.0000010411 -1.0000000000,0.0000000000,0.0000000000,0.0000010411 -1.0000000000,0.0000000000,0.0000000000,0.0000010411 +0.9999,0.0000,0.0000,0.0157 +0.9999,0.0000,0.0000,0.0157 +0.9999,0.0000,0.0000,0.0157 +0.9999,0.0000,0.0000,0.0157 +0.9995,0.0000,0.0000,0.0314 +0.9995,0.0000,0.0000,0.0314 +0.9995,0.0000,0.0000,0.0314 +0.9995,0.0000,0.0000,0.0314 +0.9989,0.0000,0.0000,0.0471 +0.9989,0.0000,0.0000,0.0471 +0.9989,0.0000,0.0000,0.0471 +0.9989,0.0000,0.0000,0.0471 +0.9980,0.0000,0.0000,0.0628 +0.9980,0.0000,0.0000,0.0628 +0.9980,0.0000,0.0000,0.0628 +0.9980,0.0000,0.0000,0.0628 +0.9969,0.0000,0.0000,0.0785 +0.9969,0.0000,0.0000,0.0785 +0.9969,0.0000,0.0000,0.0785 +0.9969,0.0000,0.0000,0.0785 +0.9956,0.0000,0.0000,0.0941 +0.9956,0.0000,0.0000,0.0941 +0.9956,0.0000,0.0000,0.0941 +0.9956,0.0000,0.0000,0.0941 +0.9940,0.0000,0.0000,0.1097 +0.9940,0.0000,0.0000,0.1097 +0.9940,0.0000,0.0000,0.1097 +0.9940,0.0000,0.0000,0.1097 +0.9921,0.0000,0.0000,0.1253 +0.9921,0.0000,0.0000,0.1253 +0.9921,0.0000,0.0000,0.1253 +0.9921,0.0000,0.0000,0.1253 +0.9900,0.0000,0.0000,0.1409 +0.9900,0.0000,0.0000,0.1409 +0.9900,0.0000,0.0000,0.1409 +0.9900,0.0000,0.0000,0.1409 +0.9877,0.0000,0.0000,0.1564 +0.9877,0.0000,0.0000,0.1564 +0.9877,0.0000,0.0000,0.1564 +0.9877,0.0000,0.0000,0.1564 +0.9851,0.0000,0.0000,0.1719 +0.9851,0.0000,0.0000,0.1719 +0.9851,0.0000,0.0000,0.1719 +0.9851,0.0000,0.0000,0.1719 +0.9823,0.0000,0.0000,0.1874 +0.9823,0.0000,0.0000,0.1874 +0.9823,0.0000,0.0000,0.1874 +0.9823,0.0000,0.0000,0.1874 +0.9792,0.0000,0.0000,0.2028 +0.9792,0.0000,0.0000,0.2028 +0.9792,0.0000,0.0000,0.2028 +0.9792,0.0000,0.0000,0.2028 +0.9759,0.0000,0.0000,0.2181 +0.9759,0.0000,0.0000,0.2181 +0.9759,0.0000,0.0000,0.2181 +0.9759,0.0000,0.0000,0.2181 +0.9724,0.0000,0.0000,0.2334 +0.9724,0.0000,0.0000,0.2334 +0.9724,0.0000,0.0000,0.2334 +0.9724,0.0000,0.0000,0.2334 +0.9686,0.0000,0.0000,0.2487 +0.9686,0.0000,0.0000,0.2487 +0.9686,0.0000,0.0000,0.2487 +0.9686,0.0000,0.0000,0.2487 +0.9646,0.0000,0.0000,0.2639 +0.9646,0.0000,0.0000,0.2639 +0.9646,0.0000,0.0000,0.2639 +0.9646,0.0000,0.0000,0.2639 +0.9603,0.0000,0.0000,0.2790 +0.9603,0.0000,0.0000,0.2790 +0.9603,0.0000,0.0000,0.2790 +0.9603,0.0000,0.0000,0.2790 +0.9558,0.0000,0.0000,0.2940 +0.9558,0.0000,0.0000,0.2940 +0.9558,0.0000,0.0000,0.2940 +0.9558,0.0000,0.0000,0.2940 +0.9511,0.0000,0.0000,0.3090 +0.9511,0.0000,0.0000,0.3090 +0.9511,0.0000,0.0000,0.3090 +0.9511,0.0000,0.0000,0.3090 +0.9461,0.0000,0.0000,0.3239 +0.9461,0.0000,0.0000,0.3239 +0.9461,0.0000,0.0000,0.3239 +0.9461,0.0000,0.0000,0.3239 +0.9409,0.0000,0.0000,0.3387 +0.9409,0.0000,0.0000,0.3387 +0.9409,0.0000,0.0000,0.3387 +0.9409,0.0000,0.0000,0.3387 +0.9354,0.0000,0.0000,0.3535 +0.9354,0.0000,0.0000,0.3535 +0.9354,0.0000,0.0000,0.3535 +0.9354,0.0000,0.0000,0.3535 +0.9298,0.0000,0.0000,0.3681 +0.9298,0.0000,0.0000,0.3681 +0.9298,0.0000,0.0000,0.3681 +0.9298,0.0000,0.0000,0.3681 +0.9239,0.0000,0.0000,0.3827 +0.9239,0.0000,0.0000,0.3827 +0.9239,0.0000,0.0000,0.3827 +0.9239,0.0000,0.0000,0.3827 +0.9178,0.0000,0.0000,0.3971 +0.9178,0.0000,0.0000,0.3971 +0.9178,0.0000,0.0000,0.3971 +0.9178,0.0000,0.0000,0.3971 +0.9114,0.0000,0.0000,0.4115 +0.9114,0.0000,0.0000,0.4115 +0.9114,0.0000,0.0000,0.4115 +0.9114,0.0000,0.0000,0.4115 +0.9048,0.0000,0.0000,0.4258 +0.9048,0.0000,0.0000,0.4258 +0.9048,0.0000,0.0000,0.4258 +0.9048,0.0000,0.0000,0.4258 +0.8980,0.0000,0.0000,0.4399 +0.8980,0.0000,0.0000,0.4399 +0.8980,0.0000,0.0000,0.4399 +0.8980,0.0000,0.0000,0.4399 +0.8910,0.0000,0.0000,0.4540 +0.8910,0.0000,0.0000,0.4540 +0.8910,0.0000,0.0000,0.4540 +0.8910,0.0000,0.0000,0.4540 +0.8838,0.0000,0.0000,0.4679 +0.8838,0.0000,0.0000,0.4679 +0.8838,0.0000,0.0000,0.4679 +0.8838,0.0000,0.0000,0.4679 +0.8763,0.0000,0.0000,0.4818 +0.8763,0.0000,0.0000,0.4818 +0.8763,0.0000,0.0000,0.4818 +0.8763,0.0000,0.0000,0.4818 +0.8686,0.0000,0.0000,0.4955 +0.8686,0.0000,0.0000,0.4955 +0.8686,0.0000,0.0000,0.4955 +0.8686,0.0000,0.0000,0.4955 +0.8607,0.0000,0.0000,0.5090 +0.8607,0.0000,0.0000,0.5090 +0.8607,0.0000,0.0000,0.5090 +0.8607,0.0000,0.0000,0.5090 +0.8526,0.0000,0.0000,0.5225 +0.8526,0.0000,0.0000,0.5225 +0.8526,0.0000,0.0000,0.5225 +0.8526,0.0000,0.0000,0.5225 +0.8443,0.0000,0.0000,0.5358 +0.8443,0.0000,0.0000,0.5358 +0.8443,0.0000,0.0000,0.5358 +0.8443,0.0000,0.0000,0.5358 +0.8358,0.0000,0.0000,0.5490 +0.8358,0.0000,0.0000,0.5490 +0.8358,0.0000,0.0000,0.5490 +0.8358,0.0000,0.0000,0.5490 +0.8271,0.0000,0.0000,0.5621 +0.8271,0.0000,0.0000,0.5621 +0.8271,0.0000,0.0000,0.5621 +0.8271,0.0000,0.0000,0.5621 +0.8181,0.0000,0.0000,0.5750 +0.8181,0.0000,0.0000,0.5750 +0.8181,0.0000,0.0000,0.5750 +0.8181,0.0000,0.0000,0.5750 +0.8090,0.0000,0.0000,0.5878 +0.8090,0.0000,0.0000,0.5878 +0.8090,0.0000,0.0000,0.5878 +0.8090,0.0000,0.0000,0.5878 +0.7997,0.0000,0.0000,0.6004 +0.7997,0.0000,0.0000,0.6004 +0.7997,0.0000,0.0000,0.6004 +0.7997,0.0000,0.0000,0.6004 +0.7902,0.0000,0.0000,0.6129 +0.7902,0.0000,0.0000,0.6129 +0.7902,0.0000,0.0000,0.6129 +0.7902,0.0000,0.0000,0.6129 +0.7804,0.0000,0.0000,0.6252 +0.7804,0.0000,0.0000,0.6252 +0.7804,0.0000,0.0000,0.6252 +0.7804,0.0000,0.0000,0.6252 +0.7705,0.0000,0.0000,0.6374 +0.7705,0.0000,0.0000,0.6374 +0.7705,0.0000,0.0000,0.6374 +0.7705,0.0000,0.0000,0.6374 +0.7604,0.0000,0.0000,0.6494 +0.7604,0.0000,0.0000,0.6494 +0.7604,0.0000,0.0000,0.6494 +0.7604,0.0000,0.0000,0.6494 +0.7501,0.0000,0.0000,0.6613 +0.7501,0.0000,0.0000,0.6613 +0.7501,0.0000,0.0000,0.6613 +0.7501,0.0000,0.0000,0.6613 +0.7396,0.0000,0.0000,0.6730 +0.7396,0.0000,0.0000,0.6730 +0.7396,0.0000,0.0000,0.6730 +0.7396,0.0000,0.0000,0.6730 +0.7290,0.0000,0.0000,0.6845 +0.7290,0.0000,0.0000,0.6845 +0.7290,0.0000,0.0000,0.6845 +0.7290,0.0000,0.0000,0.6845 +0.7181,0.0000,0.0000,0.6959 +0.7181,0.0000,0.0000,0.6959 +0.7181,0.0000,0.0000,0.6959 +0.7181,0.0000,0.0000,0.6959 +0.7071,0.0000,0.0000,0.7071 +0.7071,0.0000,0.0000,0.7071 +0.7071,0.0000,0.0000,0.7071 +0.7071,0.0000,0.0000,0.7071 +0.6959,0.0000,0.0000,0.7181 +0.6959,0.0000,0.0000,0.7181 +0.6959,0.0000,0.0000,0.7181 +0.6959,0.0000,0.0000,0.7181 +0.6845,0.0000,0.0000,0.7290 +0.6845,0.0000,0.0000,0.7290 +0.6845,0.0000,0.0000,0.7290 +0.6845,0.0000,0.0000,0.7290 +0.6730,0.0000,0.0000,0.7396 +0.6730,0.0000,0.0000,0.7396 +0.6730,0.0000,0.0000,0.7396 +0.6730,0.0000,0.0000,0.7396 +0.6613,0.0000,0.0000,0.7501 +0.6613,0.0000,0.0000,0.7501 +0.6613,0.0000,0.0000,0.7501 +0.6613,0.0000,0.0000,0.7501 +0.6494,0.0000,0.0000,0.7604 +0.6494,0.0000,0.0000,0.7604 +0.6494,0.0000,0.0000,0.7604 +0.6494,0.0000,0.0000,0.7604 +0.6374,0.0000,0.0000,0.7705 +0.6374,0.0000,0.0000,0.7705 +0.6374,0.0000,0.0000,0.7705 +0.6374,0.0000,0.0000,0.7705 +0.6252,0.0000,0.0000,0.7804 +0.6252,0.0000,0.0000,0.7804 +0.6252,0.0000,0.0000,0.7804 +0.6252,0.0000,0.0000,0.7804 +0.6129,0.0000,0.0000,0.7902 +0.6129,0.0000,0.0000,0.7902 +0.6129,0.0000,0.0000,0.7902 +0.6129,0.0000,0.0000,0.7902 +0.6004,0.0000,0.0000,0.7997 +0.6004,0.0000,0.0000,0.7997 +0.6004,0.0000,0.0000,0.7997 +0.6004,0.0000,0.0000,0.7997 +0.5878,0.0000,0.0000,0.8090 +0.5878,0.0000,0.0000,0.8090 +0.5878,0.0000,0.0000,0.8090 +0.5878,0.0000,0.0000,0.8090 +0.5750,0.0000,0.0000,0.8181 +0.5750,0.0000,0.0000,0.8181 +0.5750,0.0000,0.0000,0.8181 +0.5750,0.0000,0.0000,0.8181 +0.5621,0.0000,0.0000,0.8271 +0.5621,0.0000,0.0000,0.8271 +0.5621,0.0000,0.0000,0.8271 +0.5621,0.0000,0.0000,0.8271 +0.5490,0.0000,0.0000,0.8358 +0.5490,0.0000,0.0000,0.8358 +0.5490,0.0000,0.0000,0.8358 +0.5490,0.0000,0.0000,0.8358 +0.5358,0.0000,0.0000,0.8443 +0.5358,0.0000,0.0000,0.8443 +0.5358,0.0000,0.0000,0.8443 +0.5358,0.0000,0.0000,0.8443 +0.5225,0.0000,0.0000,0.8526 +0.5225,0.0000,0.0000,0.8526 +0.5225,0.0000,0.0000,0.8526 +0.5225,0.0000,0.0000,0.8526 +0.5090,0.0000,0.0000,0.8607 +0.5090,0.0000,0.0000,0.8607 +0.5090,0.0000,0.0000,0.8607 +0.5090,0.0000,0.0000,0.8607 +0.4955,0.0000,0.0000,0.8686 +0.4955,0.0000,0.0000,0.8686 +0.4955,0.0000,0.0000,0.8686 +0.4955,0.0000,0.0000,0.8686 +0.4818,0.0000,0.0000,0.8763 +0.4818,0.0000,0.0000,0.8763 +0.4818,0.0000,0.0000,0.8763 +0.4818,0.0000,0.0000,0.8763 +0.4679,0.0000,0.0000,0.8838 +0.4679,0.0000,0.0000,0.8838 +0.4679,0.0000,0.0000,0.8838 +0.4679,0.0000,0.0000,0.8838 +0.4540,0.0000,0.0000,0.8910 +0.4540,0.0000,0.0000,0.8910 +0.4540,0.0000,0.0000,0.8910 +0.4540,0.0000,0.0000,0.8910 +0.4399,0.0000,0.0000,0.8980 +0.4399,0.0000,0.0000,0.8980 +0.4399,0.0000,0.0000,0.8980 +0.4399,0.0000,0.0000,0.8980 +0.4258,0.0000,0.0000,0.9048 +0.4258,0.0000,0.0000,0.9048 +0.4258,0.0000,0.0000,0.9048 +0.4258,0.0000,0.0000,0.9048 +0.4115,0.0000,0.0000,0.9114 +0.4115,0.0000,0.0000,0.9114 +0.4115,0.0000,0.0000,0.9114 +0.4115,0.0000,0.0000,0.9114 +0.3971,0.0000,0.0000,0.9178 +0.3971,0.0000,0.0000,0.9178 +0.3971,0.0000,0.0000,0.9178 +0.3971,0.0000,0.0000,0.9178 +0.3827,0.0000,0.0000,0.9239 +0.3827,0.0000,0.0000,0.9239 +0.3827,0.0000,0.0000,0.9239 +0.3827,0.0000,0.0000,0.9239 +0.3681,0.0000,0.0000,0.9298 +0.3681,0.0000,0.0000,0.9298 +0.3681,0.0000,0.0000,0.9298 +0.3681,0.0000,0.0000,0.9298 +0.3535,0.0000,0.0000,0.9354 +0.3535,0.0000,0.0000,0.9354 +0.3535,0.0000,0.0000,0.9354 +0.3535,0.0000,0.0000,0.9354 +0.3387,0.0000,0.0000,0.9409 +0.3387,0.0000,0.0000,0.9409 +0.3387,0.0000,0.0000,0.9409 +0.3387,0.0000,0.0000,0.9409 +0.3239,0.0000,0.0000,0.9461 +0.3239,0.0000,0.0000,0.9461 +0.3239,0.0000,0.0000,0.9461 +0.3239,0.0000,0.0000,0.9461 +0.3090,0.0000,0.0000,0.9511 +0.3090,0.0000,0.0000,0.9511 +0.3090,0.0000,0.0000,0.9511 +0.3090,0.0000,0.0000,0.9511 +0.2940,0.0000,0.0000,0.9558 +0.2940,0.0000,0.0000,0.9558 +0.2940,0.0000,0.0000,0.9558 +0.2940,0.0000,0.0000,0.9558 +0.2790,0.0000,0.0000,0.9603 +0.2790,0.0000,0.0000,0.9603 +0.2790,0.0000,0.0000,0.9603 +0.2790,0.0000,0.0000,0.9603 +0.2639,0.0000,0.0000,0.9646 +0.2639,0.0000,0.0000,0.9646 +0.2639,0.0000,0.0000,0.9646 +0.2639,0.0000,0.0000,0.9646 +0.2487,0.0000,0.0000,0.9686 +0.2487,0.0000,0.0000,0.9686 +0.2487,0.0000,0.0000,0.9686 +0.2487,0.0000,0.0000,0.9686 +0.2334,0.0000,0.0000,0.9724 +0.2334,0.0000,0.0000,0.9724 +0.2334,0.0000,0.0000,0.9724 +0.2334,0.0000,0.0000,0.9724 +0.2181,0.0000,0.0000,0.9759 +0.2181,0.0000,0.0000,0.9759 +0.2181,0.0000,0.0000,0.9759 +0.2181,0.0000,0.0000,0.9759 +0.2028,0.0000,0.0000,0.9792 +0.2028,0.0000,0.0000,0.9792 +0.2028,0.0000,0.0000,0.9792 +0.2028,0.0000,0.0000,0.9792 +0.1874,0.0000,0.0000,0.9823 +0.1874,0.0000,0.0000,0.9823 +0.1874,0.0000,0.0000,0.9823 +0.1874,0.0000,0.0000,0.9823 +0.1719,0.0000,0.0000,0.9851 +0.1719,0.0000,0.0000,0.9851 +0.1719,0.0000,0.0000,0.9851 +0.1719,0.0000,0.0000,0.9851 +0.1564,0.0000,0.0000,0.9877 +0.1564,0.0000,0.0000,0.9877 +0.1564,0.0000,0.0000,0.9877 +0.1564,0.0000,0.0000,0.9877 +0.1409,0.0000,0.0000,0.9900 +0.1409,0.0000,0.0000,0.9900 +0.1409,0.0000,0.0000,0.9900 +0.1409,0.0000,0.0000,0.9900 +0.1253,0.0000,0.0000,0.9921 +0.1253,0.0000,0.0000,0.9921 +0.1253,0.0000,0.0000,0.9921 +0.1253,0.0000,0.0000,0.9921 +0.1097,0.0000,0.0000,0.9940 +0.1097,0.0000,0.0000,0.9940 +0.1097,0.0000,0.0000,0.9940 +0.1097,0.0000,0.0000,0.9940 +0.0941,0.0000,0.0000,0.9956 +0.0941,0.0000,0.0000,0.9956 +0.0941,0.0000,0.0000,0.9956 +0.0941,0.0000,0.0000,0.9956 +0.0785,0.0000,0.0000,0.9969 +0.0785,0.0000,0.0000,0.9969 +0.0785,0.0000,0.0000,0.9969 +0.0785,0.0000,0.0000,0.9969 +0.0628,0.0000,0.0000,0.9980 +0.0628,0.0000,0.0000,0.9980 +0.0628,0.0000,0.0000,0.9980 +0.0628,0.0000,0.0000,0.9980 +0.0471,0.0000,0.0000,0.9989 +0.0471,0.0000,0.0000,0.9989 +0.0471,0.0000,0.0000,0.9989 +0.0471,0.0000,0.0000,0.9989 +0.0314,0.0000,0.0000,0.9995 +0.0314,0.0000,0.0000,0.9995 +0.0314,0.0000,0.0000,0.9995 +0.0314,0.0000,0.0000,0.9995 +0.0157,0.0000,0.0000,0.9999 +0.0157,0.0000,0.0000,0.9999 +0.0157,0.0000,0.0000,0.9999 +0.0157,0.0000,0.0000,0.9999 +-0.0000,0.0000,0.0000,1.0000 +-0.0000,0.0000,0.0000,1.0000 +-0.0000,0.0000,0.0000,1.0000 +-0.0000,0.0000,0.0000,1.0000 +-0.0157,0.0000,0.0000,0.9999 +-0.0157,0.0000,0.0000,0.9999 +-0.0157,0.0000,0.0000,0.9999 +-0.0157,0.0000,0.0000,0.9999 +-0.0314,0.0000,0.0000,0.9995 +-0.0314,0.0000,0.0000,0.9995 +-0.0314,0.0000,0.0000,0.9995 +-0.0314,0.0000,0.0000,0.9995 +-0.0471,0.0000,0.0000,0.9989 +-0.0471,0.0000,0.0000,0.9989 +-0.0471,0.0000,0.0000,0.9989 +-0.0471,0.0000,0.0000,0.9989 +-0.0628,0.0000,0.0000,0.9980 +-0.0628,0.0000,0.0000,0.9980 +-0.0628,0.0000,0.0000,0.9980 +-0.0628,0.0000,0.0000,0.9980 +-0.0785,0.0000,0.0000,0.9969 +-0.0785,0.0000,0.0000,0.9969 +-0.0785,0.0000,0.0000,0.9969 +-0.0785,0.0000,0.0000,0.9969 +-0.0941,0.0000,0.0000,0.9956 +-0.0941,0.0000,0.0000,0.9956 +-0.0941,0.0000,0.0000,0.9956 +-0.0941,0.0000,0.0000,0.9956 +-0.1097,0.0000,0.0000,0.9940 +-0.1097,0.0000,0.0000,0.9940 +-0.1097,0.0000,0.0000,0.9940 +-0.1097,0.0000,0.0000,0.9940 +-0.1253,0.0000,0.0000,0.9921 +-0.1253,0.0000,0.0000,0.9921 +-0.1253,0.0000,0.0000,0.9921 +-0.1253,0.0000,0.0000,0.9921 +-0.1409,0.0000,0.0000,0.9900 +-0.1409,0.0000,0.0000,0.9900 +-0.1409,0.0000,0.0000,0.9900 +-0.1409,0.0000,0.0000,0.9900 +-0.1564,0.0000,0.0000,0.9877 +-0.1564,0.0000,0.0000,0.9877 +-0.1564,0.0000,0.0000,0.9877 +-0.1564,0.0000,0.0000,0.9877 +-0.1719,0.0000,0.0000,0.9851 +-0.1719,0.0000,0.0000,0.9851 +-0.1719,0.0000,0.0000,0.9851 +-0.1719,0.0000,0.0000,0.9851 +-0.1874,0.0000,0.0000,0.9823 +-0.1874,0.0000,0.0000,0.9823 +-0.1874,0.0000,0.0000,0.9823 +-0.1874,0.0000,0.0000,0.9823 +-0.2028,0.0000,0.0000,0.9792 +-0.2028,0.0000,0.0000,0.9792 +-0.2028,0.0000,0.0000,0.9792 +-0.2028,0.0000,0.0000,0.9792 +-0.2181,0.0000,0.0000,0.9759 +-0.2181,0.0000,0.0000,0.9759 +-0.2181,0.0000,0.0000,0.9759 +-0.2181,0.0000,0.0000,0.9759 +-0.2334,0.0000,0.0000,0.9724 +-0.2334,0.0000,0.0000,0.9724 +-0.2334,0.0000,0.0000,0.9724 +-0.2334,0.0000,0.0000,0.9724 +-0.2487,0.0000,0.0000,0.9686 +-0.2487,0.0000,0.0000,0.9686 +-0.2487,0.0000,0.0000,0.9686 +-0.2487,0.0000,0.0000,0.9686 +-0.2639,0.0000,0.0000,0.9646 +-0.2639,0.0000,0.0000,0.9646 +-0.2639,0.0000,0.0000,0.9646 +-0.2639,0.0000,0.0000,0.9646 +-0.2790,0.0000,0.0000,0.9603 +-0.2790,0.0000,0.0000,0.9603 +-0.2790,0.0000,0.0000,0.9603 +-0.2790,0.0000,0.0000,0.9603 +-0.2940,0.0000,0.0000,0.9558 +-0.2940,0.0000,0.0000,0.9558 +-0.2940,0.0000,0.0000,0.9558 +-0.2940,0.0000,0.0000,0.9558 +-0.3090,0.0000,0.0000,0.9511 +-0.3090,0.0000,0.0000,0.9511 +-0.3090,0.0000,0.0000,0.9511 +-0.3090,0.0000,0.0000,0.9511 +-0.3239,0.0000,0.0000,0.9461 +-0.3239,0.0000,0.0000,0.9461 +-0.3239,0.0000,0.0000,0.9461 +-0.3239,0.0000,0.0000,0.9461 +-0.3387,0.0000,0.0000,0.9409 +-0.3387,0.0000,0.0000,0.9409 +-0.3387,0.0000,0.0000,0.9409 +-0.3387,0.0000,0.0000,0.9409 +-0.3535,0.0000,0.0000,0.9354 +-0.3535,0.0000,0.0000,0.9354 +-0.3535,0.0000,0.0000,0.9354 +-0.3535,0.0000,0.0000,0.9354 +-0.3681,0.0000,0.0000,0.9298 +-0.3681,0.0000,0.0000,0.9298 +-0.3681,0.0000,0.0000,0.9298 +-0.3681,0.0000,0.0000,0.9298 +-0.3827,0.0000,0.0000,0.9239 +-0.3827,0.0000,0.0000,0.9239 +-0.3827,0.0000,0.0000,0.9239 +-0.3827,0.0000,0.0000,0.9239 +-0.3971,0.0000,0.0000,0.9178 +-0.3971,0.0000,0.0000,0.9178 +-0.3971,0.0000,0.0000,0.9178 +-0.3971,0.0000,0.0000,0.9178 +-0.4115,0.0000,0.0000,0.9114 +-0.4115,0.0000,0.0000,0.9114 +-0.4115,0.0000,0.0000,0.9114 +-0.4115,0.0000,0.0000,0.9114 +-0.4258,0.0000,0.0000,0.9048 +-0.4258,0.0000,0.0000,0.9048 +-0.4258,0.0000,0.0000,0.9048 +-0.4258,0.0000,0.0000,0.9048 +-0.4399,0.0000,0.0000,0.8980 +-0.4399,0.0000,0.0000,0.8980 +-0.4399,0.0000,0.0000,0.8980 +-0.4399,0.0000,0.0000,0.8980 +-0.4540,0.0000,0.0000,0.8910 +-0.4540,0.0000,0.0000,0.8910 +-0.4540,0.0000,0.0000,0.8910 +-0.4540,0.0000,0.0000,0.8910 +-0.4679,0.0000,0.0000,0.8838 +-0.4679,0.0000,0.0000,0.8838 +-0.4679,0.0000,0.0000,0.8838 +-0.4679,0.0000,0.0000,0.8838 +-0.4818,0.0000,0.0000,0.8763 +-0.4818,0.0000,0.0000,0.8763 +-0.4818,0.0000,0.0000,0.8763 +-0.4818,0.0000,0.0000,0.8763 +-0.4955,0.0000,0.0000,0.8686 +-0.4955,0.0000,0.0000,0.8686 +-0.4955,0.0000,0.0000,0.8686 +-0.4955,0.0000,0.0000,0.8686 +-0.5090,0.0000,0.0000,0.8607 +-0.5090,0.0000,0.0000,0.8607 +-0.5090,0.0000,0.0000,0.8607 +-0.5090,0.0000,0.0000,0.8607 +-0.5225,0.0000,0.0000,0.8526 +-0.5225,0.0000,0.0000,0.8526 +-0.5225,0.0000,0.0000,0.8526 +-0.5225,0.0000,0.0000,0.8526 +-0.5358,0.0000,0.0000,0.8443 +-0.5358,0.0000,0.0000,0.8443 +-0.5358,0.0000,0.0000,0.8443 +-0.5358,0.0000,0.0000,0.8443 +-0.5490,0.0000,0.0000,0.8358 +-0.5490,0.0000,0.0000,0.8358 +-0.5490,0.0000,0.0000,0.8358 +-0.5490,0.0000,0.0000,0.8358 +-0.5621,0.0000,0.0000,0.8271 +-0.5621,0.0000,0.0000,0.8271 +-0.5621,0.0000,0.0000,0.8271 +-0.5621,0.0000,0.0000,0.8271 +-0.5750,0.0000,0.0000,0.8181 +-0.5750,0.0000,0.0000,0.8181 +-0.5750,0.0000,0.0000,0.8181 +-0.5750,0.0000,0.0000,0.8181 +-0.5878,0.0000,0.0000,0.8090 +-0.5878,0.0000,0.0000,0.8090 +-0.5878,0.0000,0.0000,0.8090 +-0.5878,0.0000,0.0000,0.8090 +-0.6004,0.0000,0.0000,0.7997 +-0.6004,0.0000,0.0000,0.7997 +-0.6004,0.0000,0.0000,0.7997 +-0.6004,0.0000,0.0000,0.7997 +-0.6129,0.0000,0.0000,0.7902 +-0.6129,0.0000,0.0000,0.7902 +-0.6129,0.0000,0.0000,0.7902 +-0.6129,0.0000,0.0000,0.7902 +-0.6252,0.0000,0.0000,0.7804 +-0.6252,0.0000,0.0000,0.7804 +-0.6252,0.0000,0.0000,0.7804 +-0.6252,0.0000,0.0000,0.7804 +-0.6374,0.0000,0.0000,0.7705 +-0.6374,0.0000,0.0000,0.7705 +-0.6374,0.0000,0.0000,0.7705 +-0.6374,0.0000,0.0000,0.7705 +-0.6494,0.0000,0.0000,0.7604 +-0.6494,0.0000,0.0000,0.7604 +-0.6494,0.0000,0.0000,0.7604 +-0.6494,0.0000,0.0000,0.7604 +-0.6613,0.0000,0.0000,0.7501 +-0.6613,0.0000,0.0000,0.7501 +-0.6613,0.0000,0.0000,0.7501 +-0.6613,0.0000,0.0000,0.7501 +-0.6730,0.0000,0.0000,0.7396 +-0.6730,0.0000,0.0000,0.7396 +-0.6730,0.0000,0.0000,0.7396 +-0.6730,0.0000,0.0000,0.7396 +-0.6845,0.0000,0.0000,0.7290 +-0.6845,0.0000,0.0000,0.7290 +-0.6845,0.0000,0.0000,0.7290 +-0.6845,0.0000,0.0000,0.7290 +-0.6959,0.0000,0.0000,0.7181 +-0.6959,0.0000,0.0000,0.7181 +-0.6959,0.0000,0.0000,0.7181 +-0.6959,0.0000,0.0000,0.7181 +-0.7071,0.0000,0.0000,0.7071 +-0.7071,0.0000,0.0000,0.7071 +-0.7071,0.0000,0.0000,0.7071 +-0.7071,0.0000,0.0000,0.7071 +-0.7181,0.0000,0.0000,0.6959 +-0.7181,0.0000,0.0000,0.6959 +-0.7181,0.0000,0.0000,0.6959 +-0.7181,0.0000,0.0000,0.6959 +-0.7290,0.0000,0.0000,0.6845 +-0.7290,0.0000,0.0000,0.6845 +-0.7290,0.0000,0.0000,0.6845 +-0.7290,0.0000,0.0000,0.6845 +-0.7396,0.0000,0.0000,0.6730 +-0.7396,0.0000,0.0000,0.6730 +-0.7396,0.0000,0.0000,0.6730 +-0.7396,0.0000,0.0000,0.6730 +-0.7501,0.0000,0.0000,0.6613 +-0.7501,0.0000,0.0000,0.6613 +-0.7501,0.0000,0.0000,0.6613 +-0.7501,0.0000,0.0000,0.6613 +-0.7604,0.0000,0.0000,0.6494 +-0.7604,0.0000,0.0000,0.6494 +-0.7604,0.0000,0.0000,0.6494 +-0.7604,0.0000,0.0000,0.6494 +-0.7705,0.0000,0.0000,0.6374 +-0.7705,0.0000,0.0000,0.6374 +-0.7705,0.0000,0.0000,0.6374 +-0.7705,0.0000,0.0000,0.6374 +-0.7804,0.0000,0.0000,0.6252 +-0.7804,0.0000,0.0000,0.6252 +-0.7804,0.0000,0.0000,0.6252 +-0.7804,0.0000,0.0000,0.6252 +-0.7902,0.0000,0.0000,0.6129 +-0.7902,0.0000,0.0000,0.6129 +-0.7902,0.0000,0.0000,0.6129 +-0.7902,0.0000,0.0000,0.6129 +-0.7997,0.0000,0.0000,0.6004 +-0.7997,0.0000,0.0000,0.6004 +-0.7997,0.0000,0.0000,0.6004 +-0.7997,0.0000,0.0000,0.6004 +-0.8090,0.0000,0.0000,0.5878 +-0.8090,0.0000,0.0000,0.5878 +-0.8090,0.0000,0.0000,0.5878 +-0.8090,0.0000,0.0000,0.5878 +-0.8182,0.0000,0.0000,0.5750 +-0.8182,0.0000,0.0000,0.5750 +-0.8182,0.0000,0.0000,0.5750 +-0.8182,0.0000,0.0000,0.5750 +-0.8271,0.0000,0.0000,0.5621 +-0.8271,0.0000,0.0000,0.5621 +-0.8271,0.0000,0.0000,0.5621 +-0.8271,0.0000,0.0000,0.5621 +-0.8358,0.0000,0.0000,0.5490 +-0.8358,0.0000,0.0000,0.5490 +-0.8358,0.0000,0.0000,0.5490 +-0.8358,0.0000,0.0000,0.5490 +-0.8443,0.0000,0.0000,0.5358 +-0.8443,0.0000,0.0000,0.5358 +-0.8443,0.0000,0.0000,0.5358 +-0.8443,0.0000,0.0000,0.5358 +-0.8526,0.0000,0.0000,0.5225 +-0.8526,0.0000,0.0000,0.5225 +-0.8526,0.0000,0.0000,0.5225 +-0.8526,0.0000,0.0000,0.5225 +-0.8607,0.0000,0.0000,0.5090 +-0.8607,0.0000,0.0000,0.5090 +-0.8607,0.0000,0.0000,0.5090 +-0.8607,0.0000,0.0000,0.5090 +-0.8686,0.0000,0.0000,0.4955 +-0.8686,0.0000,0.0000,0.4955 +-0.8686,0.0000,0.0000,0.4955 +-0.8686,0.0000,0.0000,0.4955 +-0.8763,0.0000,0.0000,0.4818 +-0.8763,0.0000,0.0000,0.4818 +-0.8763,0.0000,0.0000,0.4818 +-0.8763,0.0000,0.0000,0.4818 +-0.8838,0.0000,0.0000,0.4679 +-0.8838,0.0000,0.0000,0.4679 +-0.8838,0.0000,0.0000,0.4679 +-0.8838,0.0000,0.0000,0.4679 +-0.8910,0.0000,0.0000,0.4540 +-0.8910,0.0000,0.0000,0.4540 +-0.8910,0.0000,0.0000,0.4540 +-0.8910,0.0000,0.0000,0.4540 +-0.8980,0.0000,0.0000,0.4399 +-0.8980,0.0000,0.0000,0.4399 +-0.8980,0.0000,0.0000,0.4399 +-0.8980,0.0000,0.0000,0.4399 +-0.9048,0.0000,0.0000,0.4258 +-0.9048,0.0000,0.0000,0.4258 +-0.9048,0.0000,0.0000,0.4258 +-0.9048,0.0000,0.0000,0.4258 +-0.9114,0.0000,0.0000,0.4115 +-0.9114,0.0000,0.0000,0.4115 +-0.9114,0.0000,0.0000,0.4115 +-0.9114,0.0000,0.0000,0.4115 +-0.9178,0.0000,0.0000,0.3971 +-0.9178,0.0000,0.0000,0.3971 +-0.9178,0.0000,0.0000,0.3971 +-0.9178,0.0000,0.0000,0.3971 +-0.9239,0.0000,0.0000,0.3827 +-0.9239,0.0000,0.0000,0.3827 +-0.9239,0.0000,0.0000,0.3827 +-0.9239,0.0000,0.0000,0.3827 +-0.9298,0.0000,0.0000,0.3681 +-0.9298,0.0000,0.0000,0.3681 +-0.9298,0.0000,0.0000,0.3681 +-0.9298,0.0000,0.0000,0.3681 +-0.9354,0.0000,0.0000,0.3535 +-0.9354,0.0000,0.0000,0.3535 +-0.9354,0.0000,0.0000,0.3535 +-0.9354,0.0000,0.0000,0.3535 +-0.9409,0.0000,0.0000,0.3387 +-0.9409,0.0000,0.0000,0.3387 +-0.9409,0.0000,0.0000,0.3387 +-0.9409,0.0000,0.0000,0.3387 +-0.9461,0.0000,0.0000,0.3239 +-0.9461,0.0000,0.0000,0.3239 +-0.9461,0.0000,0.0000,0.3239 +-0.9461,0.0000,0.0000,0.3239 +-0.9511,0.0000,0.0000,0.3090 +-0.9511,0.0000,0.0000,0.3090 +-0.9511,0.0000,0.0000,0.3090 +-0.9511,0.0000,0.0000,0.3090 +-0.9558,0.0000,0.0000,0.2940 +-0.9558,0.0000,0.0000,0.2940 +-0.9558,0.0000,0.0000,0.2940 +-0.9558,0.0000,0.0000,0.2940 +-0.9603,0.0000,0.0000,0.2790 +-0.9603,0.0000,0.0000,0.2790 +-0.9603,0.0000,0.0000,0.2790 +-0.9603,0.0000,0.0000,0.2790 +-0.9646,0.0000,0.0000,0.2639 +-0.9646,0.0000,0.0000,0.2639 +-0.9646,0.0000,0.0000,0.2639 +-0.9646,0.0000,0.0000,0.2639 +-0.9686,0.0000,0.0000,0.2487 +-0.9686,0.0000,0.0000,0.2487 +-0.9686,0.0000,0.0000,0.2487 +-0.9686,0.0000,0.0000,0.2487 +-0.9724,0.0000,0.0000,0.2334 +-0.9724,0.0000,0.0000,0.2334 +-0.9724,0.0000,0.0000,0.2334 +-0.9724,0.0000,0.0000,0.2334 +-0.9759,0.0000,0.0000,0.2181 +-0.9759,0.0000,0.0000,0.2181 +-0.9759,0.0000,0.0000,0.2181 +-0.9759,0.0000,0.0000,0.2181 +-0.9792,0.0000,0.0000,0.2028 +-0.9792,0.0000,0.0000,0.2028 +-0.9792,0.0000,0.0000,0.2028 +-0.9792,0.0000,0.0000,0.2028 +-0.9823,0.0000,0.0000,0.1874 +-0.9823,0.0000,0.0000,0.1874 +-0.9823,0.0000,0.0000,0.1874 +-0.9823,0.0000,0.0000,0.1874 +-0.9851,0.0000,0.0000,0.1719 +-0.9851,0.0000,0.0000,0.1719 +-0.9851,0.0000,0.0000,0.1719 +-0.9851,0.0000,0.0000,0.1719 +-0.9877,0.0000,0.0000,0.1564 +-0.9877,0.0000,0.0000,0.1564 +-0.9877,0.0000,0.0000,0.1564 +-0.9877,0.0000,0.0000,0.1564 +-0.9900,0.0000,0.0000,0.1409 +-0.9900,0.0000,0.0000,0.1409 +-0.9900,0.0000,0.0000,0.1409 +-0.9900,0.0000,0.0000,0.1409 +-0.9921,0.0000,0.0000,0.1253 +-0.9921,0.0000,0.0000,0.1253 +-0.9921,0.0000,0.0000,0.1253 +-0.9921,0.0000,0.0000,0.1253 +-0.9940,0.0000,0.0000,0.1097 +-0.9940,0.0000,0.0000,0.1097 +-0.9940,0.0000,0.0000,0.1097 +-0.9940,0.0000,0.0000,0.1097 +-0.9956,0.0000,0.0000,0.0941 +-0.9956,0.0000,0.0000,0.0941 +-0.9956,0.0000,0.0000,0.0941 +-0.9956,0.0000,0.0000,0.0941 +-0.9969,0.0000,0.0000,0.0785 +-0.9969,0.0000,0.0000,0.0785 +-0.9969,0.0000,0.0000,0.0785 +-0.9969,0.0000,0.0000,0.0785 +-0.9980,0.0000,0.0000,0.0628 +-0.9980,0.0000,0.0000,0.0628 +-0.9980,0.0000,0.0000,0.0628 +-0.9980,0.0000,0.0000,0.0628 +-0.9989,0.0000,0.0000,0.0471 +-0.9989,0.0000,0.0000,0.0471 +-0.9989,0.0000,0.0000,0.0471 +-0.9989,0.0000,0.0000,0.0471 +-0.9995,0.0000,0.0000,0.0314 +-0.9995,0.0000,0.0000,0.0314 +-0.9995,0.0000,0.0000,0.0314 +-0.9995,0.0000,0.0000,0.0314 +-0.9999,0.0000,0.0000,0.0157 +-0.9999,0.0000,0.0000,0.0157 +-0.9999,0.0000,0.0000,0.0157 +-0.9999,0.0000,0.0000,0.0157 +1.0000,0.0000,0.0000,0.0000 +1.0000,0.0000,0.0000,0.0000 +1.0000,0.0000,0.0000,0.0000 +1.0000,0.0000,0.0000,0.0000 diff --git a/scripts/trajectories/full-circle-4s.csv b/scripts/trajectories/full-circle-4s.csv index b14297cf68fa46c1ef790582818de4f452ae7867..4174a531b7e4b7ed785105d18fcfe2d5d195c035 100644 --- a/scripts/trajectories/full-circle-4s.csv +++ b/scripts/trajectories/full-circle-4s.csv @@ -1,800 +1,800 @@ -0.9998766780,0.0000000000,0.0000000000,-0.0157073177 -0.9998766780,0.0000000000,0.0000000000,-0.0157073177 -0.9998766780,0.0000000000,0.0000000000,-0.0157073177 -0.9998766780,0.0000000000,0.0000000000,-0.0157073177 -0.9995065928,0.0000000000,0.0000000000,-0.0314107612 -0.9995065928,0.0000000000,0.0000000000,-0.0314107612 -0.9995065928,0.0000000000,0.0000000000,-0.0314107612 -0.9995065928,0.0000000000,0.0000000000,-0.0314107612 -0.9988898635,0.0000000000,0.0000000000,-0.0471064486 -0.9988898635,0.0000000000,0.0000000000,-0.0471064486 -0.9988898635,0.0000000000,0.0000000000,-0.0471064486 -0.9988898635,0.0000000000,0.0000000000,-0.0471064486 -0.9980267286,0.0000000000,0.0000000000,-0.0627905130 -0.9980267286,0.0000000000,0.0000000000,-0.0627905130 -0.9980267286,0.0000000000,0.0000000000,-0.0627905130 -0.9980267286,0.0000000000,0.0000000000,-0.0627905130 -0.9969173670,0.0000000000,0.0000000000,-0.0784590989 -0.9969173670,0.0000000000,0.0000000000,-0.0784590989 -0.9969173670,0.0000000000,0.0000000000,-0.0784590989 -0.9969173670,0.0000000000,0.0000000000,-0.0784590989 -0.9955620170,0.0000000000,0.0000000000,-0.0941083133 -0.9955620170,0.0000000000,0.0000000000,-0.0941083133 -0.9955620170,0.0000000000,0.0000000000,-0.0941083133 -0.9955620170,0.0000000000,0.0000000000,-0.0941083133 -0.9939609766,0.0000000000,0.0000000000,-0.1097343042 -0.9939609766,0.0000000000,0.0000000000,-0.1097343042 -0.9939609766,0.0000000000,0.0000000000,-0.1097343042 -0.9939609766,0.0000000000,0.0000000000,-0.1097343042 -0.9921147227,0.0000000000,0.0000000000,-0.1253332198 -0.9921147227,0.0000000000,0.0000000000,-0.1253332198 -0.9921147227,0.0000000000,0.0000000000,-0.1253332198 -0.9921147227,0.0000000000,0.0000000000,-0.1253332198 -0.9900236726,0.0000000000,0.0000000000,-0.1409012228 -0.9900236726,0.0000000000,0.0000000000,-0.1409012228 -0.9900236726,0.0000000000,0.0000000000,-0.1409012228 -0.9900236726,0.0000000000,0.0000000000,-0.1409012228 -0.9876883626,0.0000000000,0.0000000000,-0.1564344764 -0.9876883626,0.0000000000,0.0000000000,-0.1564344764 -0.9876883626,0.0000000000,0.0000000000,-0.1564344764 -0.9876883626,0.0000000000,0.0000000000,-0.1564344764 -0.9851093292,0.0000000000,0.0000000000,-0.1719291061 -0.9851093292,0.0000000000,0.0000000000,-0.1719291061 -0.9851093292,0.0000000000,0.0000000000,-0.1719291061 -0.9851093292,0.0000000000,0.0000000000,-0.1719291061 -0.9822872281,0.0000000000,0.0000000000,-0.1873813272 -0.9822872281,0.0000000000,0.0000000000,-0.1873813272 -0.9822872281,0.0000000000,0.0000000000,-0.1873813272 -0.9822872281,0.0000000000,0.0000000000,-0.1873813272 -0.9792228341,0.0000000000,0.0000000000,-0.2027873248 -0.9792228341,0.0000000000,0.0000000000,-0.2027873248 -0.9792228341,0.0000000000,0.0000000000,-0.2027873248 -0.9792228341,0.0000000000,0.0000000000,-0.2027873248 -0.9759167433,0.0000000000,0.0000000000,-0.2181432694 -0.9759167433,0.0000000000,0.0000000000,-0.2181432694 -0.9759167433,0.0000000000,0.0000000000,-0.2181432694 -0.9759167433,0.0000000000,0.0000000000,-0.2181432694 -0.9723699093,0.0000000000,0.0000000000,-0.2334454060 -0.9723699093,0.0000000000,0.0000000000,-0.2334454060 -0.9723699093,0.0000000000,0.0000000000,-0.2334454060 -0.9723699093,0.0000000000,0.0000000000,-0.2334454060 -0.9685831666,0.0000000000,0.0000000000,-0.2486899346 -0.9685831666,0.0000000000,0.0000000000,-0.2486899346 -0.9685831666,0.0000000000,0.0000000000,-0.2486899346 -0.9685831666,0.0000000000,0.0000000000,-0.2486899346 -0.9645574093,0.0000000000,0.0000000000,-0.2638731003 -0.9645574093,0.0000000000,0.0000000000,-0.2638731003 -0.9645574093,0.0000000000,0.0000000000,-0.2638731003 -0.9645574093,0.0000000000,0.0000000000,-0.2638731003 -0.9602936506,0.0000000000,0.0000000000,-0.2789911628 -0.9602936506,0.0000000000,0.0000000000,-0.2789911628 -0.9602936506,0.0000000000,0.0000000000,-0.2789911628 -0.9602936506,0.0000000000,0.0000000000,-0.2789911628 -0.9557930231,0.0000000000,0.0000000000,-0.2940403819 -0.9557930231,0.0000000000,0.0000000000,-0.2940403819 -0.9557930231,0.0000000000,0.0000000000,-0.2940403819 -0.9557930231,0.0000000000,0.0000000000,-0.2940403819 -0.9510565400,0.0000000000,0.0000000000,-0.3090170920 -0.9510565400,0.0000000000,0.0000000000,-0.3090170920 -0.9510565400,0.0000000000,0.0000000000,-0.3090170920 -0.9510565400,0.0000000000,0.0000000000,-0.3090170920 -0.9460853338,0.0000000000,0.0000000000,-0.3239174783 -0.9460853338,0.0000000000,0.0000000000,-0.3239174783 -0.9460853338,0.0000000000,0.0000000000,-0.3239174783 -0.9460853338,0.0000000000,0.0000000000,-0.3239174783 -0.9408807755,0.0000000000,0.0000000000,-0.3387380242 -0.9408807755,0.0000000000,0.0000000000,-0.3387380242 -0.9408807755,0.0000000000,0.0000000000,-0.3387380242 -0.9408807755,0.0000000000,0.0000000000,-0.3387380242 -0.9354439974,0.0000000000,0.0000000000,-0.3534749150 -0.9354439974,0.0000000000,0.0000000000,-0.3534749150 -0.9354439974,0.0000000000,0.0000000000,-0.3534749150 -0.9354439974,0.0000000000,0.0000000000,-0.3534749150 -0.9297764897,0.0000000000,0.0000000000,-0.3681246638 -0.9297764897,0.0000000000,0.0000000000,-0.3681246638 -0.9297764897,0.0000000000,0.0000000000,-0.3681246638 -0.9297764897,0.0000000000,0.0000000000,-0.3681246638 -0.9238795042,0.0000000000,0.0000000000,-0.3826835155 -0.9238795042,0.0000000000,0.0000000000,-0.3826835155 -0.9238795042,0.0000000000,0.0000000000,-0.3826835155 -0.9238795042,0.0000000000,0.0000000000,-0.3826835155 -0.9177545905,0.0000000000,0.0000000000,-0.3971479833 -0.9177545905,0.0000000000,0.0000000000,-0.3971479833 -0.9177545905,0.0000000000,0.0000000000,-0.3971479833 -0.9177545905,0.0000000000,0.0000000000,-0.3971479833 -0.9114032388,0.0000000000,0.0000000000,-0.4115144610 -0.9114032388,0.0000000000,0.0000000000,-0.4115144610 -0.9114032388,0.0000000000,0.0000000000,-0.4115144610 -0.9114032388,0.0000000000,0.0000000000,-0.4115144610 -0.9048269987,0.0000000000,0.0000000000,-0.4257794023 -0.9048269987,0.0000000000,0.0000000000,-0.4257794023 -0.9048269987,0.0000000000,0.0000000000,-0.4257794023 -0.9048269987,0.0000000000,0.0000000000,-0.4257794023 -0.8980275393,0.0000000000,0.0000000000,-0.4399392903 -0.8980275393,0.0000000000,0.0000000000,-0.4399392903 -0.8980275393,0.0000000000,0.0000000000,-0.4399392903 -0.8980275393,0.0000000000,0.0000000000,-0.4399392903 -0.8910064697,0.0000000000,0.0000000000,-0.4539906085 -0.8910064697,0.0000000000,0.0000000000,-0.4539906085 -0.8910064697,0.0000000000,0.0000000000,-0.4539906085 -0.8910064697,0.0000000000,0.0000000000,-0.4539906085 -0.8837655783,0.0000000000,0.0000000000,-0.4679299295 -0.8837655783,0.0000000000,0.0000000000,-0.4679299295 -0.8837655783,0.0000000000,0.0000000000,-0.4679299295 -0.8837655783,0.0000000000,0.0000000000,-0.4679299295 -0.8763066530,0.0000000000,0.0000000000,-0.4817538261 -0.8763066530,0.0000000000,0.0000000000,-0.4817538261 -0.8763066530,0.0000000000,0.0000000000,-0.4817538261 -0.8763066530,0.0000000000,0.0000000000,-0.4817538261 -0.8686314225,0.0000000000,0.0000000000,-0.4954588115 -0.8686314225,0.0000000000,0.0000000000,-0.4954588115 -0.8686314225,0.0000000000,0.0000000000,-0.4954588115 -0.8686314225,0.0000000000,0.0000000000,-0.4954588115 -0.8607419729,0.0000000000,0.0000000000,-0.5090415478 -0.8607419729,0.0000000000,0.0000000000,-0.5090415478 -0.8607419729,0.0000000000,0.0000000000,-0.5090415478 -0.8607419729,0.0000000000,0.0000000000,-0.5090415478 -0.8526400924,0.0000000000,0.0000000000,-0.5224987268 -0.8526400924,0.0000000000,0.0000000000,-0.5224987268 -0.8526400924,0.0000000000,0.0000000000,-0.5224987268 -0.8526400924,0.0000000000,0.0000000000,-0.5224987268 -0.8443278670,0.0000000000,0.0000000000,-0.5358269811 -0.8443278670,0.0000000000,0.0000000000,-0.5358269811 -0.8443278670,0.0000000000,0.0000000000,-0.5358269811 -0.8443278670,0.0000000000,0.0000000000,-0.5358269811 -0.8358072639,0.0000000000,0.0000000000,-0.5490229726 -0.8358072639,0.0000000000,0.0000000000,-0.5490229726 -0.8358072639,0.0000000000,0.0000000000,-0.5490229726 -0.8358072639,0.0000000000,0.0000000000,-0.5490229726 -0.8270804882,0.0000000000,0.0000000000,-0.5620835423 -0.8270804882,0.0000000000,0.0000000000,-0.5620835423 -0.8270804882,0.0000000000,0.0000000000,-0.5620835423 -0.8270804882,0.0000000000,0.0000000000,-0.5620835423 -0.8181496263,0.0000000000,0.0000000000,-0.5750054121 -0.8181496263,0.0000000000,0.0000000000,-0.5750054121 -0.8181496263,0.0000000000,0.0000000000,-0.5750054121 -0.8181496263,0.0000000000,0.0000000000,-0.5750054121 -0.8090168834,0.0000000000,0.0000000000,-0.5877854228 -0.8090168834,0.0000000000,0.0000000000,-0.5877854228 -0.8090168834,0.0000000000,0.0000000000,-0.5877854228 -0.8090168834,0.0000000000,0.0000000000,-0.5877854228 -0.7996845245,0.0000000000,0.0000000000,-0.6004204154 -0.7996845245,0.0000000000,0.0000000000,-0.6004204154 -0.7996845245,0.0000000000,0.0000000000,-0.6004204154 -0.7996845245,0.0000000000,0.0000000000,-0.6004204154 -0.7901548743,0.0000000000,0.0000000000,-0.6129072309 -0.7901548743,0.0000000000,0.0000000000,-0.6129072309 -0.7901548743,0.0000000000,0.0000000000,-0.6129072309 -0.7901548743,0.0000000000,0.0000000000,-0.6129072309 -0.7804302573,0.0000000000,0.0000000000,-0.6252428293 -0.7804302573,0.0000000000,0.0000000000,-0.6252428293 -0.7804302573,0.0000000000,0.0000000000,-0.6252428293 -0.7804302573,0.0000000000,0.0000000000,-0.6252428293 -0.7705131173,0.0000000000,0.0000000000,-0.6374241710 -0.7705131173,0.0000000000,0.0000000000,-0.6374241710 -0.7705131173,0.0000000000,0.0000000000,-0.6374241710 -0.7705131173,0.0000000000,0.0000000000,-0.6374241710 -0.7604058385,0.0000000000,0.0000000000,-0.6494482160 -0.7604058385,0.0000000000,0.0000000000,-0.6494482160 -0.7604058385,0.0000000000,0.0000000000,-0.6494482160 -0.7604058385,0.0000000000,0.0000000000,-0.6494482160 -0.7501109242,0.0000000000,0.0000000000,-0.6613120437 -0.7501109242,0.0000000000,0.0000000000,-0.6613120437 -0.7501109242,0.0000000000,0.0000000000,-0.6613120437 -0.7501109242,0.0000000000,0.0000000000,-0.6613120437 -0.7396309376,0.0000000000,0.0000000000,-0.6730126739 -0.7396309376,0.0000000000,0.0000000000,-0.6730126739 -0.7396309376,0.0000000000,0.0000000000,-0.6730126739 -0.7396309376,0.0000000000,0.0000000000,-0.6730126739 -0.7289684415,0.0000000000,0.0000000000,-0.6845473051 -0.7289684415,0.0000000000,0.0000000000,-0.6845473051 -0.7289684415,0.0000000000,0.0000000000,-0.6845473051 -0.7289684415,0.0000000000,0.0000000000,-0.6845473051 -0.7181261778,0.0000000000,0.0000000000,-0.6959130168 -0.7181261778,0.0000000000,0.0000000000,-0.6959130168 -0.7181261778,0.0000000000,0.0000000000,-0.6959130168 -0.7181261778,0.0000000000,0.0000000000,-0.6959130168 -0.7071065903,0.0000000000,0.0000000000,-0.7071069479 -0.7071065903,0.0000000000,0.0000000000,-0.7071069479 -0.7071065903,0.0000000000,0.0000000000,-0.7071069479 -0.7071065903,0.0000000000,0.0000000000,-0.7071069479 -0.6959125996,0.0000000000,0.0000000000,-0.7181264758 -0.6959125996,0.0000000000,0.0000000000,-0.7181264758 -0.6959125996,0.0000000000,0.0000000000,-0.7181264758 -0.6959125996,0.0000000000,0.0000000000,-0.7181264758 -0.6845469475,0.0000000000,0.0000000000,-0.7289688587 -0.6845469475,0.0000000000,0.0000000000,-0.7289688587 -0.6845469475,0.0000000000,0.0000000000,-0.7289688587 -0.6845469475,0.0000000000,0.0000000000,-0.7289688587 -0.6730123162,0.0000000000,0.0000000000,-0.7396312952 -0.6730123162,0.0000000000,0.0000000000,-0.7396312952 -0.6730123162,0.0000000000,0.0000000000,-0.7396312952 -0.6730123162,0.0000000000,0.0000000000,-0.7396312952 -0.6613116264,0.0000000000,0.0000000000,-0.7501112819 -0.6613116264,0.0000000000,0.0000000000,-0.7501112819 -0.6613116264,0.0000000000,0.0000000000,-0.7501112819 -0.6613116264,0.0000000000,0.0000000000,-0.7501112819 -0.6494478583,0.0000000000,0.0000000000,-0.7604061961 -0.6494478583,0.0000000000,0.0000000000,-0.7604061961 -0.6494478583,0.0000000000,0.0000000000,-0.7604061961 -0.6494478583,0.0000000000,0.0000000000,-0.7604061961 -0.6374237537,0.0000000000,0.0000000000,-0.7705134153 -0.6374237537,0.0000000000,0.0000000000,-0.7705134153 -0.6374237537,0.0000000000,0.0000000000,-0.7705134153 -0.6374237537,0.0000000000,0.0000000000,-0.7705134153 -0.6252424121,0.0000000000,0.0000000000,-0.7804306149 -0.6252424121,0.0000000000,0.0000000000,-0.7804306149 -0.6252424121,0.0000000000,0.0000000000,-0.7804306149 -0.6252424121,0.0000000000,0.0000000000,-0.7804306149 -0.6129068136,0.0000000000,0.0000000000,-0.7901552320 -0.6129068136,0.0000000000,0.0000000000,-0.7901552320 -0.6129068136,0.0000000000,0.0000000000,-0.7901552320 -0.6129068136,0.0000000000,0.0000000000,-0.7901552320 -0.6004199982,0.0000000000,0.0000000000,-0.7996848226 -0.6004199982,0.0000000000,0.0000000000,-0.7996848226 -0.6004199982,0.0000000000,0.0000000000,-0.7996848226 -0.6004199982,0.0000000000,0.0000000000,-0.7996848226 -0.5877850056,0.0000000000,0.0000000000,-0.8090171814 -0.5877850056,0.0000000000,0.0000000000,-0.8090171814 -0.5877850056,0.0000000000,0.0000000000,-0.8090171814 -0.5877850056,0.0000000000,0.0000000000,-0.8090171814 -0.5750049949,0.0000000000,0.0000000000,-0.8181499243 -0.5750049949,0.0000000000,0.0000000000,-0.8181499243 -0.5750049949,0.0000000000,0.0000000000,-0.8181499243 -0.5750049949,0.0000000000,0.0000000000,-0.8181499243 -0.5620831251,0.0000000000,0.0000000000,-0.8270807862 -0.5620831251,0.0000000000,0.0000000000,-0.8270807862 -0.5620831251,0.0000000000,0.0000000000,-0.8270807862 -0.5620831251,0.0000000000,0.0000000000,-0.8270807862 -0.5490225554,0.0000000000,0.0000000000,-0.8358075619 -0.5490225554,0.0000000000,0.0000000000,-0.8358075619 -0.5490225554,0.0000000000,0.0000000000,-0.8358075619 -0.5490225554,0.0000000000,0.0000000000,-0.8358075619 -0.5358265638,0.0000000000,0.0000000000,-0.8443281054 -0.5358265638,0.0000000000,0.0000000000,-0.8443281054 -0.5358265638,0.0000000000,0.0000000000,-0.8443281054 -0.5358265638,0.0000000000,0.0000000000,-0.8443281054 -0.5224983096,0.0000000000,0.0000000000,-0.8526403308 -0.5224983096,0.0000000000,0.0000000000,-0.8526403308 -0.5224983096,0.0000000000,0.0000000000,-0.8526403308 -0.5224983096,0.0000000000,0.0000000000,-0.8526403308 -0.5090411901,0.0000000000,0.0000000000,-0.8607422113 -0.5090411901,0.0000000000,0.0000000000,-0.8607422113 -0.5090411901,0.0000000000,0.0000000000,-0.8607422113 -0.5090411901,0.0000000000,0.0000000000,-0.8607422113 -0.4954583943,0.0000000000,0.0000000000,-0.8686316609 -0.4954583943,0.0000000000,0.0000000000,-0.8686316609 -0.4954583943,0.0000000000,0.0000000000,-0.8686316609 -0.4954583943,0.0000000000,0.0000000000,-0.8686316609 -0.4817534089,0.0000000000,0.0000000000,-0.8763068318 -0.4817534089,0.0000000000,0.0000000000,-0.8763068318 -0.4817534089,0.0000000000,0.0000000000,-0.8763068318 -0.4817534089,0.0000000000,0.0000000000,-0.8763068318 -0.4679295421,0.0000000000,0.0000000000,-0.8837657571 -0.4679295421,0.0000000000,0.0000000000,-0.8837657571 -0.4679295421,0.0000000000,0.0000000000,-0.8837657571 -0.4679295421,0.0000000000,0.0000000000,-0.8837657571 -0.4539902210,0.0000000000,0.0000000000,-0.8910066485 -0.4539902210,0.0000000000,0.0000000000,-0.8910066485 -0.4539902210,0.0000000000,0.0000000000,-0.8910066485 -0.4539902210,0.0000000000,0.0000000000,-0.8910066485 -0.4399388731,0.0000000000,0.0000000000,-0.8980277181 -0.4399388731,0.0000000000,0.0000000000,-0.8980277181 -0.4399388731,0.0000000000,0.0000000000,-0.8980277181 -0.4399388731,0.0000000000,0.0000000000,-0.8980277181 -0.4257789850,0.0000000000,0.0000000000,-0.9048271775 -0.4257789850,0.0000000000,0.0000000000,-0.9048271775 -0.4257789850,0.0000000000,0.0000000000,-0.9048271775 -0.4257789850,0.0000000000,0.0000000000,-0.9048271775 -0.4115140438,0.0000000000,0.0000000000,-0.9114034176 -0.4115140438,0.0000000000,0.0000000000,-0.9114034176 -0.4115140438,0.0000000000,0.0000000000,-0.9114034176 -0.4115140438,0.0000000000,0.0000000000,-0.9114034176 -0.3971475661,0.0000000000,0.0000000000,-0.9177547693 -0.3971475661,0.0000000000,0.0000000000,-0.9177547693 -0.3971475661,0.0000000000,0.0000000000,-0.9177547693 -0.3971475661,0.0000000000,0.0000000000,-0.9177547693 -0.3826830983,0.0000000000,0.0000000000,-0.9238796830 -0.3826830983,0.0000000000,0.0000000000,-0.9238796830 -0.3826830983,0.0000000000,0.0000000000,-0.9238796830 -0.3826830983,0.0000000000,0.0000000000,-0.9238796830 -0.3681242168,0.0000000000,0.0000000000,-0.9297766089 -0.3681242168,0.0000000000,0.0000000000,-0.9297766089 -0.3681242168,0.0000000000,0.0000000000,-0.9297766089 -0.3681242168,0.0000000000,0.0000000000,-0.9297766089 -0.3534744978,0.0000000000,0.0000000000,-0.9354441762 -0.3534744978,0.0000000000,0.0000000000,-0.9354441762 -0.3534744978,0.0000000000,0.0000000000,-0.9354441762 -0.3534744978,0.0000000000,0.0000000000,-0.9354441762 -0.3387375772,0.0000000000,0.0000000000,-0.9408808947 -0.3387375772,0.0000000000,0.0000000000,-0.9408808947 -0.3387375772,0.0000000000,0.0000000000,-0.9408808947 -0.3387375772,0.0000000000,0.0000000000,-0.9408808947 -0.3239170611,0.0000000000,0.0000000000,-0.9460855126 -0.3239170611,0.0000000000,0.0000000000,-0.9460855126 -0.3239170611,0.0000000000,0.0000000000,-0.9460855126 -0.3239170611,0.0000000000,0.0000000000,-0.9460855126 -0.3090166152,0.0000000000,0.0000000000,-0.9510566592 -0.3090166152,0.0000000000,0.0000000000,-0.9510566592 -0.3090166152,0.0000000000,0.0000000000,-0.9510566592 -0.3090166152,0.0000000000,0.0000000000,-0.9510566592 -0.2940399349,0.0000000000,0.0000000000,-0.9557931423 -0.2940399349,0.0000000000,0.0000000000,-0.9557931423 -0.2940399349,0.0000000000,0.0000000000,-0.9557931423 -0.2940399349,0.0000000000,0.0000000000,-0.9557931423 -0.2789907455,0.0000000000,0.0000000000,-0.9602938294 -0.2789907455,0.0000000000,0.0000000000,-0.9602938294 -0.2789907455,0.0000000000,0.0000000000,-0.9602938294 -0.2789907455,0.0000000000,0.0000000000,-0.9602938294 -0.2638726532,0.0000000000,0.0000000000,-0.9645575285 -0.2638726532,0.0000000000,0.0000000000,-0.9645575285 -0.2638726532,0.0000000000,0.0000000000,-0.9645575285 -0.2638726532,0.0000000000,0.0000000000,-0.9645575285 -0.2486894876,0.0000000000,0.0000000000,-0.9685832858 -0.2486894876,0.0000000000,0.0000000000,-0.9685832858 -0.2486894876,0.0000000000,0.0000000000,-0.9685832858 -0.2486894876,0.0000000000,0.0000000000,-0.9685832858 -0.2334449440,0.0000000000,0.0000000000,-0.9723700285 -0.2334449440,0.0000000000,0.0000000000,-0.9723700285 -0.2334449440,0.0000000000,0.0000000000,-0.9723700285 -0.2334449440,0.0000000000,0.0000000000,-0.9723700285 -0.2181428224,0.0000000000,0.0000000000,-0.9759168625 -0.2181428224,0.0000000000,0.0000000000,-0.9759168625 -0.2181428224,0.0000000000,0.0000000000,-0.9759168625 -0.2181428224,0.0000000000,0.0000000000,-0.9759168625 -0.2027868629,0.0000000000,0.0000000000,-0.9792228937 -0.2027868629,0.0000000000,0.0000000000,-0.9792228937 -0.2027868629,0.0000000000,0.0000000000,-0.9792228937 -0.2027868629,0.0000000000,0.0000000000,-0.9792228937 -0.1873808801,0.0000000000,0.0000000000,-0.9822873473 -0.1873808801,0.0000000000,0.0000000000,-0.9822873473 -0.1873808801,0.0000000000,0.0000000000,-0.9822873473 -0.1873808801,0.0000000000,0.0000000000,-0.9822873473 -0.1719286591,0.0000000000,0.0000000000,-0.9851093888 -0.1719286591,0.0000000000,0.0000000000,-0.9851093888 -0.1719286591,0.0000000000,0.0000000000,-0.9851093888 -0.1719286591,0.0000000000,0.0000000000,-0.9851093888 -0.1564340144,0.0000000000,0.0000000000,-0.9876884222 -0.1564340144,0.0000000000,0.0000000000,-0.9876884222 -0.1564340144,0.0000000000,0.0000000000,-0.9876884222 -0.1564340144,0.0000000000,0.0000000000,-0.9876884222 -0.1409007758,0.0000000000,0.0000000000,-0.9900237322 -0.1409007758,0.0000000000,0.0000000000,-0.9900237322 -0.1409007758,0.0000000000,0.0000000000,-0.9900237322 -0.1409007758,0.0000000000,0.0000000000,-0.9900237322 -0.1253327727,0.0000000000,0.0000000000,-0.9921147823 -0.1253327727,0.0000000000,0.0000000000,-0.9921147823 -0.1253327727,0.0000000000,0.0000000000,-0.9921147823 -0.1253327727,0.0000000000,0.0000000000,-0.9921147823 -0.1097338349,0.0000000000,0.0000000000,-0.9939610362 -0.1097338349,0.0000000000,0.0000000000,-0.9939610362 -0.1097338349,0.0000000000,0.0000000000,-0.9939610362 -0.1097338349,0.0000000000,0.0000000000,-0.9939610362 -0.0941078365,0.0000000000,0.0000000000,-0.9955620170 -0.0941078365,0.0000000000,0.0000000000,-0.9955620170 -0.0941078365,0.0000000000,0.0000000000,-0.9955620170 -0.0941078365,0.0000000000,0.0000000000,-0.9955620170 -0.0784586146,0.0000000000,0.0000000000,-0.9969174266 -0.0784586146,0.0000000000,0.0000000000,-0.9969174266 -0.0784586146,0.0000000000,0.0000000000,-0.9969174266 -0.0784586146,0.0000000000,0.0000000000,-0.9969174266 -0.0627900288,0.0000000000,0.0000000000,-0.9980267882 -0.0627900288,0.0000000000,0.0000000000,-0.9980267882 -0.0627900288,0.0000000000,0.0000000000,-0.9980267882 -0.0627900288,0.0000000000,0.0000000000,-0.9980267882 -0.0471059494,0.0000000000,0.0000000000,-0.9988899231 -0.0471059494,0.0000000000,0.0000000000,-0.9988899231 -0.0471059494,0.0000000000,0.0000000000,-0.9988899231 -0.0471059494,0.0000000000,0.0000000000,-0.9988899231 -0.0314102508,0.0000000000,0.0000000000,-0.9995065928 -0.0314102508,0.0000000000,0.0000000000,-0.9995065928 -0.0314102508,0.0000000000,0.0000000000,-0.9995065928 -0.0314102508,0.0000000000,0.0000000000,-0.9995065928 -0.0157068055,0.0000000000,0.0000000000,-0.9998766780 -0.0157068055,0.0000000000,0.0000000000,-0.9998766780 -0.0157068055,0.0000000000,0.0000000000,-0.9998766780 -0.0157068055,0.0000000000,0.0000000000,-0.9998766780 --0.0000005205,0.0000000000,0.0000000000,-1.0000000000 --0.0000005205,0.0000000000,0.0000000000,-1.0000000000 --0.0000005205,0.0000000000,0.0000000000,-1.0000000000 --0.0000005205,0.0000000000,0.0000000000,-1.0000000000 --0.0157078449,0.0000000000,0.0000000000,-0.9998766184 --0.0157078449,0.0000000000,0.0000000000,-0.9998766184 --0.0157078449,0.0000000000,0.0000000000,-0.9998766184 --0.0157078449,0.0000000000,0.0000000000,-0.9998766184 --0.0314112939,0.0000000000,0.0000000000,-0.9995065331 --0.0314112939,0.0000000000,0.0000000000,-0.9995065331 --0.0314112939,0.0000000000,0.0000000000,-0.9995065331 --0.0314112939,0.0000000000,0.0000000000,-0.9995065331 --0.0471069887,0.0000000000,0.0000000000,-0.9988898635 --0.0471069887,0.0000000000,0.0000000000,-0.9988898635 --0.0471069887,0.0000000000,0.0000000000,-0.9988898635 --0.0471069887,0.0000000000,0.0000000000,-0.9988898635 --0.0627910718,0.0000000000,0.0000000000,-0.9980267286 --0.0627910718,0.0000000000,0.0000000000,-0.9980267286 --0.0627910718,0.0000000000,0.0000000000,-0.9980267286 --0.0627910718,0.0000000000,0.0000000000,-0.9980267286 --0.0784596503,0.0000000000,0.0000000000,-0.9969173074 --0.0784596503,0.0000000000,0.0000000000,-0.9969173074 --0.0784596503,0.0000000000,0.0000000000,-0.9969173074 --0.0784596503,0.0000000000,0.0000000000,-0.9969173074 --0.0941088796,0.0000000000,0.0000000000,-0.9955619574 --0.0941088796,0.0000000000,0.0000000000,-0.9955619574 --0.0941088796,0.0000000000,0.0000000000,-0.9955619574 --0.0941088796,0.0000000000,0.0000000000,-0.9955619574 --0.1097348705,0.0000000000,0.0000000000,-0.9939609170 --0.1097348705,0.0000000000,0.0000000000,-0.9939609170 --0.1097348705,0.0000000000,0.0000000000,-0.9939609170 --0.1097348705,0.0000000000,0.0000000000,-0.9939609170 --0.1253338158,0.0000000000,0.0000000000,-0.9921146631 --0.1253338158,0.0000000000,0.0000000000,-0.9921146631 --0.1253338158,0.0000000000,0.0000000000,-0.9921146631 --0.1253338158,0.0000000000,0.0000000000,-0.9921146631 --0.1409018189,0.0000000000,0.0000000000,-0.9900236130 --0.1409018189,0.0000000000,0.0000000000,-0.9900236130 --0.1409018189,0.0000000000,0.0000000000,-0.9900236130 --0.1409018189,0.0000000000,0.0000000000,-0.9900236130 --0.1564350426,0.0000000000,0.0000000000,-0.9876882434 --0.1564350426,0.0000000000,0.0000000000,-0.9876882434 --0.1564350426,0.0000000000,0.0000000000,-0.9876882434 --0.1564350426,0.0000000000,0.0000000000,-0.9876882434 --0.1719297022,0.0000000000,0.0000000000,-0.9851092696 --0.1719297022,0.0000000000,0.0000000000,-0.9851092696 --0.1719297022,0.0000000000,0.0000000000,-0.9851092696 --0.1719297022,0.0000000000,0.0000000000,-0.9851092696 --0.1873819083,0.0000000000,0.0000000000,-0.9822871685 --0.1873819083,0.0000000000,0.0000000000,-0.9822871685 --0.1873819083,0.0000000000,0.0000000000,-0.9822871685 --0.1873819083,0.0000000000,0.0000000000,-0.9822871685 --0.2027878910,0.0000000000,0.0000000000,-0.9792227149 --0.2027878910,0.0000000000,0.0000000000,-0.9792227149 --0.2027878910,0.0000000000,0.0000000000,-0.9792227149 --0.2027878910,0.0000000000,0.0000000000,-0.9792227149 --0.2181438357,0.0000000000,0.0000000000,-0.9759166241 --0.2181438357,0.0000000000,0.0000000000,-0.9759166241 --0.2181438357,0.0000000000,0.0000000000,-0.9759166241 --0.2181438357,0.0000000000,0.0000000000,-0.9759166241 --0.2334459573,0.0000000000,0.0000000000,-0.9723697901 --0.2334459573,0.0000000000,0.0000000000,-0.9723697901 --0.2334459573,0.0000000000,0.0000000000,-0.9723697901 --0.2334459573,0.0000000000,0.0000000000,-0.9723697901 --0.2486904860,0.0000000000,0.0000000000,-0.9685829878 --0.2486904860,0.0000000000,0.0000000000,-0.9685829878 --0.2486904860,0.0000000000,0.0000000000,-0.9685829878 --0.2486904860,0.0000000000,0.0000000000,-0.9685829878 --0.2638736963,0.0000000000,0.0000000000,-0.9645572901 --0.2638736963,0.0000000000,0.0000000000,-0.9645572901 --0.2638736963,0.0000000000,0.0000000000,-0.9645572901 --0.2638736963,0.0000000000,0.0000000000,-0.9645572901 --0.2789917290,0.0000000000,0.0000000000,-0.9602935314 --0.2789917290,0.0000000000,0.0000000000,-0.9602935314 --0.2789917290,0.0000000000,0.0000000000,-0.9602935314 --0.2789917290,0.0000000000,0.0000000000,-0.9602935314 --0.2940409482,0.0000000000,0.0000000000,-0.9557928443 --0.2940409482,0.0000000000,0.0000000000,-0.9557928443 --0.2940409482,0.0000000000,0.0000000000,-0.9557928443 --0.2940409482,0.0000000000,0.0000000000,-0.9557928443 --0.3090175986,0.0000000000,0.0000000000,-0.9510563016 --0.3090175986,0.0000000000,0.0000000000,-0.9510563016 --0.3090175986,0.0000000000,0.0000000000,-0.9510563016 --0.3090175986,0.0000000000,0.0000000000,-0.9510563016 --0.3239180446,0.0000000000,0.0000000000,-0.9460851550 --0.3239180446,0.0000000000,0.0000000000,-0.9460851550 --0.3239180446,0.0000000000,0.0000000000,-0.9460851550 --0.3239180446,0.0000000000,0.0000000000,-0.9460851550 --0.3387385607,0.0000000000,0.0000000000,-0.9408805966 --0.3387385607,0.0000000000,0.0000000000,-0.9408805966 --0.3387385607,0.0000000000,0.0000000000,-0.9408805966 --0.3387385607,0.0000000000,0.0000000000,-0.9408805966 --0.3534754813,0.0000000000,0.0000000000,-0.9354438186 --0.3534754813,0.0000000000,0.0000000000,-0.9354438186 --0.3534754813,0.0000000000,0.0000000000,-0.9354438186 --0.3534754813,0.0000000000,0.0000000000,-0.9354438186 --0.3681251705,0.0000000000,0.0000000000,-0.9297762513 --0.3681251705,0.0000000000,0.0000000000,-0.9297762513 --0.3681251705,0.0000000000,0.0000000000,-0.9297762513 --0.3681251705,0.0000000000,0.0000000000,-0.9297762513 --0.3826840818,0.0000000000,0.0000000000,-0.9238793254 --0.3826840818,0.0000000000,0.0000000000,-0.9238793254 --0.3826840818,0.0000000000,0.0000000000,-0.9238793254 --0.3826840818,0.0000000000,0.0000000000,-0.9238793254 --0.3971485198,0.0000000000,0.0000000000,-0.9177543521 --0.3971485198,0.0000000000,0.0000000000,-0.9177543521 --0.3971485198,0.0000000000,0.0000000000,-0.9177543521 --0.3971485198,0.0000000000,0.0000000000,-0.9177543521 --0.4115149975,0.0000000000,0.0000000000,-0.9114030004 --0.4115149975,0.0000000000,0.0000000000,-0.9114030004 --0.4115149975,0.0000000000,0.0000000000,-0.9114030004 --0.4115149975,0.0000000000,0.0000000000,-0.9114030004 --0.4257798195,0.0000000000,0.0000000000,-0.9048268199 --0.4257798195,0.0000000000,0.0000000000,-0.9048268199 --0.4257798195,0.0000000000,0.0000000000,-0.9048268199 --0.4257798195,0.0000000000,0.0000000000,-0.9048268199 --0.4399397075,0.0000000000,0.0000000000,-0.8980273008 --0.4399397075,0.0000000000,0.0000000000,-0.8980273008 --0.4399397075,0.0000000000,0.0000000000,-0.8980273008 --0.4399397075,0.0000000000,0.0000000000,-0.8980273008 --0.4539910555,0.0000000000,0.0000000000,-0.8910062909 --0.4539910555,0.0000000000,0.0000000000,-0.8910062909 --0.4539910555,0.0000000000,0.0000000000,-0.8910062909 --0.4539910555,0.0000000000,0.0000000000,-0.8910062909 --0.4679303467,0.0000000000,0.0000000000,-0.8837653399 --0.4679303467,0.0000000000,0.0000000000,-0.8837653399 --0.4679303467,0.0000000000,0.0000000000,-0.8837653399 --0.4679303467,0.0000000000,0.0000000000,-0.8837653399 --0.4817542136,0.0000000000,0.0000000000,-0.8763064146 --0.4817542136,0.0000000000,0.0000000000,-0.8763064146 --0.4817542136,0.0000000000,0.0000000000,-0.8763064146 --0.4817542136,0.0000000000,0.0000000000,-0.8763064146 --0.4954592288,0.0000000000,0.0000000000,-0.8686312437 --0.4954592288,0.0000000000,0.0000000000,-0.8686312437 --0.4954592288,0.0000000000,0.0000000000,-0.8686312437 --0.4954592288,0.0000000000,0.0000000000,-0.8686312437 --0.5090419650,0.0000000000,0.0000000000,-0.8607417345 --0.5090419650,0.0000000000,0.0000000000,-0.8607417345 --0.5090419650,0.0000000000,0.0000000000,-0.8607417345 --0.5090419650,0.0000000000,0.0000000000,-0.8607417345 --0.5224990845,0.0000000000,0.0000000000,-0.8526398540 --0.5224990845,0.0000000000,0.0000000000,-0.8526398540 --0.5224990845,0.0000000000,0.0000000000,-0.8526398540 --0.5224990845,0.0000000000,0.0000000000,-0.8526398540 --0.5358273983,0.0000000000,0.0000000000,-0.8443276286 --0.5358273983,0.0000000000,0.0000000000,-0.8443276286 --0.5358273983,0.0000000000,0.0000000000,-0.8443276286 --0.5358273983,0.0000000000,0.0000000000,-0.8443276286 --0.5490233302,0.0000000000,0.0000000000,-0.8358070254 --0.5490233302,0.0000000000,0.0000000000,-0.8358070254 --0.5490233302,0.0000000000,0.0000000000,-0.8358070254 --0.5490233302,0.0000000000,0.0000000000,-0.8358070254 --0.5620839000,0.0000000000,0.0000000000,-0.8270801902 --0.5620839000,0.0000000000,0.0000000000,-0.8270801902 --0.5620839000,0.0000000000,0.0000000000,-0.8270801902 --0.5620839000,0.0000000000,0.0000000000,-0.8270801902 --0.5750057697,0.0000000000,0.0000000000,-0.8181493282 --0.5750057697,0.0000000000,0.0000000000,-0.8181493282 --0.5750057697,0.0000000000,0.0000000000,-0.8181493282 --0.5750057697,0.0000000000,0.0000000000,-0.8181493282 --0.5877858400,0.0000000000,0.0000000000,-0.8090166450 --0.5877858400,0.0000000000,0.0000000000,-0.8090166450 --0.5877858400,0.0000000000,0.0000000000,-0.8090166450 --0.5877858400,0.0000000000,0.0000000000,-0.8090166450 --0.6004207730,0.0000000000,0.0000000000,-0.7996842861 --0.6004207730,0.0000000000,0.0000000000,-0.7996842861 --0.6004207730,0.0000000000,0.0000000000,-0.7996842861 --0.6004207730,0.0000000000,0.0000000000,-0.7996842861 --0.6129076481,0.0000000000,0.0000000000,-0.7901546359 --0.6129076481,0.0000000000,0.0000000000,-0.7901546359 --0.6129076481,0.0000000000,0.0000000000,-0.7901546359 --0.6129076481,0.0000000000,0.0000000000,-0.7901546359 --0.6252432466,0.0000000000,0.0000000000,-0.7804300189 --0.6252432466,0.0000000000,0.0000000000,-0.7804300189 --0.6252432466,0.0000000000,0.0000000000,-0.7804300189 --0.6252432466,0.0000000000,0.0000000000,-0.7804300189 --0.6374245286,0.0000000000,0.0000000000,-0.7705128193 --0.6374245286,0.0000000000,0.0000000000,-0.7705128193 --0.6374245286,0.0000000000,0.0000000000,-0.7705128193 --0.6374245286,0.0000000000,0.0000000000,-0.7705128193 --0.6494485736,0.0000000000,0.0000000000,-0.7604055405 --0.6494485736,0.0000000000,0.0000000000,-0.7604055405 --0.6494485736,0.0000000000,0.0000000000,-0.7604055405 --0.6494485736,0.0000000000,0.0000000000,-0.7604055405 --0.6613124013,0.0000000000,0.0000000000,-0.7501106262 --0.6613124013,0.0000000000,0.0000000000,-0.7501106262 --0.6613124013,0.0000000000,0.0000000000,-0.7501106262 --0.6613124013,0.0000000000,0.0000000000,-0.7501106262 --0.6730130315,0.0000000000,0.0000000000,-0.7396306396 --0.6730130315,0.0000000000,0.0000000000,-0.7396306396 --0.6730130315,0.0000000000,0.0000000000,-0.7396306396 --0.6730130315,0.0000000000,0.0000000000,-0.7396306396 --0.6845476031,0.0000000000,0.0000000000,-0.7289681435 --0.6845476031,0.0000000000,0.0000000000,-0.7289681435 --0.6845476031,0.0000000000,0.0000000000,-0.7289681435 --0.6845476031,0.0000000000,0.0000000000,-0.7289681435 --0.6959133148,0.0000000000,0.0000000000,-0.7181258202 --0.6959133148,0.0000000000,0.0000000000,-0.7181258202 --0.6959133148,0.0000000000,0.0000000000,-0.7181258202 --0.6959133148,0.0000000000,0.0000000000,-0.7181258202 --0.7071073055,0.0000000000,0.0000000000,-0.7071062922 --0.7071073055,0.0000000000,0.0000000000,-0.7071062922 --0.7071073055,0.0000000000,0.0000000000,-0.7071062922 --0.7071073055,0.0000000000,0.0000000000,-0.7071062922 --0.7181268334,0.0000000000,0.0000000000,-0.6959123015 --0.7181268334,0.0000000000,0.0000000000,-0.6959123015 --0.7181268334,0.0000000000,0.0000000000,-0.6959123015 --0.7181268334,0.0000000000,0.0000000000,-0.6959123015 --0.7289691567,0.0000000000,0.0000000000,-0.6845465899 --0.7289691567,0.0000000000,0.0000000000,-0.6845465899 --0.7289691567,0.0000000000,0.0000000000,-0.6845465899 --0.7289691567,0.0000000000,0.0000000000,-0.6845465899 --0.7396315932,0.0000000000,0.0000000000,-0.6730119586 --0.7396315932,0.0000000000,0.0000000000,-0.6730119586 --0.7396315932,0.0000000000,0.0000000000,-0.6730119586 --0.7396315932,0.0000000000,0.0000000000,-0.6730119586 --0.7501115799,0.0000000000,0.0000000000,-0.6613113284 --0.7501115799,0.0000000000,0.0000000000,-0.6613113284 --0.7501115799,0.0000000000,0.0000000000,-0.6613113284 --0.7501115799,0.0000000000,0.0000000000,-0.6613113284 --0.7604064345,0.0000000000,0.0000000000,-0.6494475007 --0.7604064345,0.0000000000,0.0000000000,-0.6494475007 --0.7604064345,0.0000000000,0.0000000000,-0.6494475007 --0.7604064345,0.0000000000,0.0000000000,-0.6494475007 --0.7705137134,0.0000000000,0.0000000000,-0.6374233961 --0.7705137134,0.0000000000,0.0000000000,-0.6374233961 --0.7705137134,0.0000000000,0.0000000000,-0.6374233961 --0.7705137134,0.0000000000,0.0000000000,-0.6374233961 --0.7804309130,0.0000000000,0.0000000000,-0.6252420545 --0.7804309130,0.0000000000,0.0000000000,-0.6252420545 --0.7804309130,0.0000000000,0.0000000000,-0.6252420545 --0.7804309130,0.0000000000,0.0000000000,-0.6252420545 --0.7901554704,0.0000000000,0.0000000000,-0.6129064560 --0.7901554704,0.0000000000,0.0000000000,-0.6129064560 --0.7901554704,0.0000000000,0.0000000000,-0.6129064560 --0.7901554704,0.0000000000,0.0000000000,-0.6129064560 --0.7996851802,0.0000000000,0.0000000000,-0.6004196405 --0.7996851802,0.0000000000,0.0000000000,-0.6004196405 --0.7996851802,0.0000000000,0.0000000000,-0.6004196405 --0.7996851802,0.0000000000,0.0000000000,-0.6004196405 --0.8090174794,0.0000000000,0.0000000000,-0.5877845883 --0.8090174794,0.0000000000,0.0000000000,-0.5877845883 --0.8090174794,0.0000000000,0.0000000000,-0.5877845883 --0.8090174794,0.0000000000,0.0000000000,-0.5877845883 --0.8181501627,0.0000000000,0.0000000000,-0.5750045776 --0.8181501627,0.0000000000,0.0000000000,-0.5750045776 --0.8181501627,0.0000000000,0.0000000000,-0.5750045776 --0.8181501627,0.0000000000,0.0000000000,-0.5750045776 --0.8270810246,0.0000000000,0.0000000000,-0.5620827079 --0.8270810246,0.0000000000,0.0000000000,-0.5620827079 --0.8270810246,0.0000000000,0.0000000000,-0.5620827079 --0.8270810246,0.0000000000,0.0000000000,-0.5620827079 --0.8358078003,0.0000000000,0.0000000000,-0.5490221381 --0.8358078003,0.0000000000,0.0000000000,-0.5490221381 --0.8358078003,0.0000000000,0.0000000000,-0.5490221381 --0.8358078003,0.0000000000,0.0000000000,-0.5490221381 --0.8443284035,0.0000000000,0.0000000000,-0.5358261466 --0.8443284035,0.0000000000,0.0000000000,-0.5358261466 --0.8443284035,0.0000000000,0.0000000000,-0.5358261466 --0.8443284035,0.0000000000,0.0000000000,-0.5358261466 --0.8526405692,0.0000000000,0.0000000000,-0.5224978924 --0.8526405692,0.0000000000,0.0000000000,-0.5224978924 --0.8526405692,0.0000000000,0.0000000000,-0.5224978924 --0.8526405692,0.0000000000,0.0000000000,-0.5224978924 --0.8607424498,0.0000000000,0.0000000000,-0.5090407133 --0.8607424498,0.0000000000,0.0000000000,-0.5090407133 --0.8607424498,0.0000000000,0.0000000000,-0.5090407133 --0.8607424498,0.0000000000,0.0000000000,-0.5090407133 --0.8686319590,0.0000000000,0.0000000000,-0.4954579771 --0.8686319590,0.0000000000,0.0000000000,-0.4954579771 --0.8686319590,0.0000000000,0.0000000000,-0.4954579771 --0.8686319590,0.0000000000,0.0000000000,-0.4954579771 --0.8763071299,0.0000000000,0.0000000000,-0.4817529619 --0.8763071299,0.0000000000,0.0000000000,-0.4817529619 --0.8763071299,0.0000000000,0.0000000000,-0.4817529619 --0.8763071299,0.0000000000,0.0000000000,-0.4817529619 --0.8837660551,0.0000000000,0.0000000000,-0.4679290950 --0.8837660551,0.0000000000,0.0000000000,-0.4679290950 --0.8837660551,0.0000000000,0.0000000000,-0.4679290950 --0.8837660551,0.0000000000,0.0000000000,-0.4679290950 --0.8910068870,0.0000000000,0.0000000000,-0.4539897442 --0.8910068870,0.0000000000,0.0000000000,-0.4539897442 --0.8910068870,0.0000000000,0.0000000000,-0.4539897442 --0.8910068870,0.0000000000,0.0000000000,-0.4539897442 --0.8980279565,0.0000000000,0.0000000000,-0.4399383962 --0.8980279565,0.0000000000,0.0000000000,-0.4399383962 --0.8980279565,0.0000000000,0.0000000000,-0.4399383962 --0.8980279565,0.0000000000,0.0000000000,-0.4399383962 --0.9048274159,0.0000000000,0.0000000000,-0.4257785082 --0.9048274159,0.0000000000,0.0000000000,-0.4257785082 --0.9048274159,0.0000000000,0.0000000000,-0.4257785082 --0.9048274159,0.0000000000,0.0000000000,-0.4257785082 --0.9114036560,0.0000000000,0.0000000000,-0.4115135670 --0.9114036560,0.0000000000,0.0000000000,-0.4115135670 --0.9114036560,0.0000000000,0.0000000000,-0.4115135670 --0.9114036560,0.0000000000,0.0000000000,-0.4115135670 --0.9177550077,0.0000000000,0.0000000000,-0.3971471190 --0.9177550077,0.0000000000,0.0000000000,-0.3971471190 --0.9177550077,0.0000000000,0.0000000000,-0.3971471190 --0.9177550077,0.0000000000,0.0000000000,-0.3971471190 --0.9238798618,0.0000000000,0.0000000000,-0.3826826215 --0.9238798618,0.0000000000,0.0000000000,-0.3826826215 --0.9238798618,0.0000000000,0.0000000000,-0.3826826215 --0.9238798618,0.0000000000,0.0000000000,-0.3826826215 --0.9297768474,0.0000000000,0.0000000000,-0.3681237698 --0.9297768474,0.0000000000,0.0000000000,-0.3681237698 --0.9297768474,0.0000000000,0.0000000000,-0.3681237698 --0.9297768474,0.0000000000,0.0000000000,-0.3681237698 --0.9354443550,0.0000000000,0.0000000000,-0.3534740210 --0.9354443550,0.0000000000,0.0000000000,-0.3534740210 --0.9354443550,0.0000000000,0.0000000000,-0.3534740210 --0.9354443550,0.0000000000,0.0000000000,-0.3534740210 --0.9408810735,0.0000000000,0.0000000000,-0.3387370706 --0.9408810735,0.0000000000,0.0000000000,-0.3387370706 --0.9408810735,0.0000000000,0.0000000000,-0.3387370706 --0.9408810735,0.0000000000,0.0000000000,-0.3387370706 --0.9460856915,0.0000000000,0.0000000000,-0.3239165843 --0.9460856915,0.0000000000,0.0000000000,-0.3239165843 --0.9460856915,0.0000000000,0.0000000000,-0.3239165843 --0.9460856915,0.0000000000,0.0000000000,-0.3239165843 --0.9510567784,0.0000000000,0.0000000000,-0.3090161383 --0.9510567784,0.0000000000,0.0000000000,-0.3090161383 --0.9510567784,0.0000000000,0.0000000000,-0.3090161383 --0.9510567784,0.0000000000,0.0000000000,-0.3090161383 --0.9557932615,0.0000000000,0.0000000000,-0.2940394580 --0.9557932615,0.0000000000,0.0000000000,-0.2940394580 --0.9557932615,0.0000000000,0.0000000000,-0.2940394580 --0.9557932615,0.0000000000,0.0000000000,-0.2940394580 --0.9602939487,0.0000000000,0.0000000000,-0.2789902091 --0.9602939487,0.0000000000,0.0000000000,-0.2789902091 --0.9602939487,0.0000000000,0.0000000000,-0.2789902091 --0.9602939487,0.0000000000,0.0000000000,-0.2789902091 --0.9645576477,0.0000000000,0.0000000000,-0.2638721466 --0.9645576477,0.0000000000,0.0000000000,-0.2638721466 --0.9645576477,0.0000000000,0.0000000000,-0.2638721466 --0.9645576477,0.0000000000,0.0000000000,-0.2638721466 --0.9685834050,0.0000000000,0.0000000000,-0.2486889809 --0.9685834050,0.0000000000,0.0000000000,-0.2486889809 --0.9685834050,0.0000000000,0.0000000000,-0.2486889809 --0.9685834050,0.0000000000,0.0000000000,-0.2486889809 --0.9723701477,0.0000000000,0.0000000000,-0.2334444523 --0.9723701477,0.0000000000,0.0000000000,-0.2334444523 --0.9723701477,0.0000000000,0.0000000000,-0.2334444523 --0.9723701477,0.0000000000,0.0000000000,-0.2334444523 --0.9759169817,0.0000000000,0.0000000000,-0.2181423157 --0.9759169817,0.0000000000,0.0000000000,-0.2181423157 --0.9759169817,0.0000000000,0.0000000000,-0.2181423157 --0.9759169817,0.0000000000,0.0000000000,-0.2181423157 --0.9792230129,0.0000000000,0.0000000000,-0.2027863562 --0.9792230129,0.0000000000,0.0000000000,-0.2027863562 --0.9792230129,0.0000000000,0.0000000000,-0.2027863562 --0.9792230129,0.0000000000,0.0000000000,-0.2027863562 --0.9822874069,0.0000000000,0.0000000000,-0.1873803735 --0.9822874069,0.0000000000,0.0000000000,-0.1873803735 --0.9822874069,0.0000000000,0.0000000000,-0.1873803735 --0.9822874069,0.0000000000,0.0000000000,-0.1873803735 --0.9851095080,0.0000000000,0.0000000000,-0.1719281375 --0.9851095080,0.0000000000,0.0000000000,-0.1719281375 --0.9851095080,0.0000000000,0.0000000000,-0.1719281375 --0.9851095080,0.0000000000,0.0000000000,-0.1719281375 --0.9876884818,0.0000000000,0.0000000000,-0.1564334929 --0.9876884818,0.0000000000,0.0000000000,-0.1564334929 --0.9876884818,0.0000000000,0.0000000000,-0.1564334929 --0.9876884818,0.0000000000,0.0000000000,-0.1564334929 --0.9900237918,0.0000000000,0.0000000000,-0.1409002542 --0.9900237918,0.0000000000,0.0000000000,-0.1409002542 --0.9900237918,0.0000000000,0.0000000000,-0.1409002542 --0.9900237918,0.0000000000,0.0000000000,-0.1409002542 --0.9921148419,0.0000000000,0.0000000000,-0.1253322512 --0.9921148419,0.0000000000,0.0000000000,-0.1253322512 --0.9921148419,0.0000000000,0.0000000000,-0.1253322512 --0.9921148419,0.0000000000,0.0000000000,-0.1253322512 --0.9939610958,0.0000000000,0.0000000000,-0.1097333282 --0.9939610958,0.0000000000,0.0000000000,-0.1097333282 --0.9939610958,0.0000000000,0.0000000000,-0.1097333282 --0.9939610958,0.0000000000,0.0000000000,-0.1097333282 --0.9955620766,0.0000000000,0.0000000000,-0.0941073149 --0.9955620766,0.0000000000,0.0000000000,-0.0941073149 --0.9955620766,0.0000000000,0.0000000000,-0.0941073149 --0.9955620766,0.0000000000,0.0000000000,-0.0941073149 --0.9969174266,0.0000000000,0.0000000000,-0.0784580931 --0.9969174266,0.0000000000,0.0000000000,-0.0784580931 --0.9969174266,0.0000000000,0.0000000000,-0.0784580931 --0.9969174266,0.0000000000,0.0000000000,-0.0784580931 --0.9980267882,0.0000000000,0.0000000000,-0.0627895072 --0.9980267882,0.0000000000,0.0000000000,-0.0627895072 --0.9980267882,0.0000000000,0.0000000000,-0.0627895072 --0.9980267882,0.0000000000,0.0000000000,-0.0627895072 --0.9988899231,0.0000000000,0.0000000000,-0.0471054316 --0.9988899231,0.0000000000,0.0000000000,-0.0471054316 --0.9988899231,0.0000000000,0.0000000000,-0.0471054316 --0.9988899231,0.0000000000,0.0000000000,-0.0471054316 --0.9995065928,0.0000000000,0.0000000000,-0.0314097330 --0.9995065928,0.0000000000,0.0000000000,-0.0314097330 --0.9995065928,0.0000000000,0.0000000000,-0.0314097330 --0.9995065928,0.0000000000,0.0000000000,-0.0314097330 --0.9998766780,0.0000000000,0.0000000000,-0.0157062821 --0.9998766780,0.0000000000,0.0000000000,-0.0157062821 --0.9998766780,0.0000000000,0.0000000000,-0.0157062821 --0.9998766780,0.0000000000,0.0000000000,-0.0157062821 -1.0000000000,0.0000000000,0.0000000000,-0.0000010411 -1.0000000000,0.0000000000,0.0000000000,-0.0000010411 -1.0000000000,0.0000000000,0.0000000000,-0.0000010411 -1.0000000000,0.0000000000,0.0000000000,-0.0000010411 +0.9999,0.0000,0.0000,-0.0157 +0.9999,0.0000,0.0000,-0.0157 +0.9999,0.0000,0.0000,-0.0157 +0.9999,0.0000,0.0000,-0.0157 +0.9995,0.0000,0.0000,-0.0314 +0.9995,0.0000,0.0000,-0.0314 +0.9995,0.0000,0.0000,-0.0314 +0.9995,0.0000,0.0000,-0.0314 +0.9989,0.0000,0.0000,-0.0471 +0.9989,0.0000,0.0000,-0.0471 +0.9989,0.0000,0.0000,-0.0471 +0.9989,0.0000,0.0000,-0.0471 +0.9980,0.0000,0.0000,-0.0628 +0.9980,0.0000,0.0000,-0.0628 +0.9980,0.0000,0.0000,-0.0628 +0.9980,0.0000,0.0000,-0.0628 +0.9969,0.0000,0.0000,-0.0785 +0.9969,0.0000,0.0000,-0.0785 +0.9969,0.0000,0.0000,-0.0785 +0.9969,0.0000,0.0000,-0.0785 +0.9956,0.0000,0.0000,-0.0941 +0.9956,0.0000,0.0000,-0.0941 +0.9956,0.0000,0.0000,-0.0941 +0.9956,0.0000,0.0000,-0.0941 +0.9940,0.0000,0.0000,-0.1097 +0.9940,0.0000,0.0000,-0.1097 +0.9940,0.0000,0.0000,-0.1097 +0.9940,0.0000,0.0000,-0.1097 +0.9921,0.0000,0.0000,-0.1253 +0.9921,0.0000,0.0000,-0.1253 +0.9921,0.0000,0.0000,-0.1253 +0.9921,0.0000,0.0000,-0.1253 +0.9900,0.0000,0.0000,-0.1409 +0.9900,0.0000,0.0000,-0.1409 +0.9900,0.0000,0.0000,-0.1409 +0.9900,0.0000,0.0000,-0.1409 +0.9877,0.0000,0.0000,-0.1564 +0.9877,0.0000,0.0000,-0.1564 +0.9877,0.0000,0.0000,-0.1564 +0.9877,0.0000,0.0000,-0.1564 +0.9851,0.0000,0.0000,-0.1719 +0.9851,0.0000,0.0000,-0.1719 +0.9851,0.0000,0.0000,-0.1719 +0.9851,0.0000,0.0000,-0.1719 +0.9823,0.0000,0.0000,-0.1874 +0.9823,0.0000,0.0000,-0.1874 +0.9823,0.0000,0.0000,-0.1874 +0.9823,0.0000,0.0000,-0.1874 +0.9792,0.0000,0.0000,-0.2028 +0.9792,0.0000,0.0000,-0.2028 +0.9792,0.0000,0.0000,-0.2028 +0.9792,0.0000,0.0000,-0.2028 +0.9759,0.0000,0.0000,-0.2181 +0.9759,0.0000,0.0000,-0.2181 +0.9759,0.0000,0.0000,-0.2181 +0.9759,0.0000,0.0000,-0.2181 +0.9724,0.0000,0.0000,-0.2334 +0.9724,0.0000,0.0000,-0.2334 +0.9724,0.0000,0.0000,-0.2334 +0.9724,0.0000,0.0000,-0.2334 +0.9686,0.0000,0.0000,-0.2487 +0.9686,0.0000,0.0000,-0.2487 +0.9686,0.0000,0.0000,-0.2487 +0.9686,0.0000,0.0000,-0.2487 +0.9646,0.0000,0.0000,-0.2639 +0.9646,0.0000,0.0000,-0.2639 +0.9646,0.0000,0.0000,-0.2639 +0.9646,0.0000,0.0000,-0.2639 +0.9603,0.0000,0.0000,-0.2790 +0.9603,0.0000,0.0000,-0.2790 +0.9603,0.0000,0.0000,-0.2790 +0.9603,0.0000,0.0000,-0.2790 +0.9558,0.0000,0.0000,-0.2940 +0.9558,0.0000,0.0000,-0.2940 +0.9558,0.0000,0.0000,-0.2940 +0.9558,0.0000,0.0000,-0.2940 +0.9511,0.0000,0.0000,-0.3090 +0.9511,0.0000,0.0000,-0.3090 +0.9511,0.0000,0.0000,-0.3090 +0.9511,0.0000,0.0000,-0.3090 +0.9461,0.0000,0.0000,-0.3239 +0.9461,0.0000,0.0000,-0.3239 +0.9461,0.0000,0.0000,-0.3239 +0.9461,0.0000,0.0000,-0.3239 +0.9409,0.0000,0.0000,-0.3387 +0.9409,0.0000,0.0000,-0.3387 +0.9409,0.0000,0.0000,-0.3387 +0.9409,0.0000,0.0000,-0.3387 +0.9354,0.0000,0.0000,-0.3535 +0.9354,0.0000,0.0000,-0.3535 +0.9354,0.0000,0.0000,-0.3535 +0.9354,0.0000,0.0000,-0.3535 +0.9298,0.0000,0.0000,-0.3681 +0.9298,0.0000,0.0000,-0.3681 +0.9298,0.0000,0.0000,-0.3681 +0.9298,0.0000,0.0000,-0.3681 +0.9239,0.0000,0.0000,-0.3827 +0.9239,0.0000,0.0000,-0.3827 +0.9239,0.0000,0.0000,-0.3827 +0.9239,0.0000,0.0000,-0.3827 +0.9178,0.0000,0.0000,-0.3971 +0.9178,0.0000,0.0000,-0.3971 +0.9178,0.0000,0.0000,-0.3971 +0.9178,0.0000,0.0000,-0.3971 +0.9114,0.0000,0.0000,-0.4115 +0.9114,0.0000,0.0000,-0.4115 +0.9114,0.0000,0.0000,-0.4115 +0.9114,0.0000,0.0000,-0.4115 +0.9048,0.0000,0.0000,-0.4258 +0.9048,0.0000,0.0000,-0.4258 +0.9048,0.0000,0.0000,-0.4258 +0.9048,0.0000,0.0000,-0.4258 +0.8980,0.0000,0.0000,-0.4399 +0.8980,0.0000,0.0000,-0.4399 +0.8980,0.0000,0.0000,-0.4399 +0.8980,0.0000,0.0000,-0.4399 +0.8910,0.0000,0.0000,-0.4540 +0.8910,0.0000,0.0000,-0.4540 +0.8910,0.0000,0.0000,-0.4540 +0.8910,0.0000,0.0000,-0.4540 +0.8838,0.0000,0.0000,-0.4679 +0.8838,0.0000,0.0000,-0.4679 +0.8838,0.0000,0.0000,-0.4679 +0.8838,0.0000,0.0000,-0.4679 +0.8763,0.0000,0.0000,-0.4818 +0.8763,0.0000,0.0000,-0.4818 +0.8763,0.0000,0.0000,-0.4818 +0.8763,0.0000,0.0000,-0.4818 +0.8686,0.0000,0.0000,-0.4955 +0.8686,0.0000,0.0000,-0.4955 +0.8686,0.0000,0.0000,-0.4955 +0.8686,0.0000,0.0000,-0.4955 +0.8607,0.0000,0.0000,-0.5090 +0.8607,0.0000,0.0000,-0.5090 +0.8607,0.0000,0.0000,-0.5090 +0.8607,0.0000,0.0000,-0.5090 +0.8526,0.0000,0.0000,-0.5225 +0.8526,0.0000,0.0000,-0.5225 +0.8526,0.0000,0.0000,-0.5225 +0.8526,0.0000,0.0000,-0.5225 +0.8443,0.0000,0.0000,-0.5358 +0.8443,0.0000,0.0000,-0.5358 +0.8443,0.0000,0.0000,-0.5358 +0.8443,0.0000,0.0000,-0.5358 +0.8358,0.0000,0.0000,-0.5490 +0.8358,0.0000,0.0000,-0.5490 +0.8358,0.0000,0.0000,-0.5490 +0.8358,0.0000,0.0000,-0.5490 +0.8271,0.0000,0.0000,-0.5621 +0.8271,0.0000,0.0000,-0.5621 +0.8271,0.0000,0.0000,-0.5621 +0.8271,0.0000,0.0000,-0.5621 +0.8181,0.0000,0.0000,-0.5750 +0.8181,0.0000,0.0000,-0.5750 +0.8181,0.0000,0.0000,-0.5750 +0.8181,0.0000,0.0000,-0.5750 +0.8090,0.0000,0.0000,-0.5878 +0.8090,0.0000,0.0000,-0.5878 +0.8090,0.0000,0.0000,-0.5878 +0.8090,0.0000,0.0000,-0.5878 +0.7997,0.0000,0.0000,-0.6004 +0.7997,0.0000,0.0000,-0.6004 +0.7997,0.0000,0.0000,-0.6004 +0.7997,0.0000,0.0000,-0.6004 +0.7902,0.0000,0.0000,-0.6129 +0.7902,0.0000,0.0000,-0.6129 +0.7902,0.0000,0.0000,-0.6129 +0.7902,0.0000,0.0000,-0.6129 +0.7804,0.0000,0.0000,-0.6252 +0.7804,0.0000,0.0000,-0.6252 +0.7804,0.0000,0.0000,-0.6252 +0.7804,0.0000,0.0000,-0.6252 +0.7705,0.0000,0.0000,-0.6374 +0.7705,0.0000,0.0000,-0.6374 +0.7705,0.0000,0.0000,-0.6374 +0.7705,0.0000,0.0000,-0.6374 +0.7604,0.0000,0.0000,-0.6494 +0.7604,0.0000,0.0000,-0.6494 +0.7604,0.0000,0.0000,-0.6494 +0.7604,0.0000,0.0000,-0.6494 +0.7501,0.0000,0.0000,-0.6613 +0.7501,0.0000,0.0000,-0.6613 +0.7501,0.0000,0.0000,-0.6613 +0.7501,0.0000,0.0000,-0.6613 +0.7396,0.0000,0.0000,-0.6730 +0.7396,0.0000,0.0000,-0.6730 +0.7396,0.0000,0.0000,-0.6730 +0.7396,0.0000,0.0000,-0.6730 +0.7290,0.0000,0.0000,-0.6845 +0.7290,0.0000,0.0000,-0.6845 +0.7290,0.0000,0.0000,-0.6845 +0.7290,0.0000,0.0000,-0.6845 +0.7181,0.0000,0.0000,-0.6959 +0.7181,0.0000,0.0000,-0.6959 +0.7181,0.0000,0.0000,-0.6959 +0.7181,0.0000,0.0000,-0.6959 +0.7071,0.0000,0.0000,-0.7071 +0.7071,0.0000,0.0000,-0.7071 +0.7071,0.0000,0.0000,-0.7071 +0.7071,0.0000,0.0000,-0.7071 +0.6959,0.0000,0.0000,-0.7181 +0.6959,0.0000,0.0000,-0.7181 +0.6959,0.0000,0.0000,-0.7181 +0.6959,0.0000,0.0000,-0.7181 +0.6845,0.0000,0.0000,-0.7290 +0.6845,0.0000,0.0000,-0.7290 +0.6845,0.0000,0.0000,-0.7290 +0.6845,0.0000,0.0000,-0.7290 +0.6730,0.0000,0.0000,-0.7396 +0.6730,0.0000,0.0000,-0.7396 +0.6730,0.0000,0.0000,-0.7396 +0.6730,0.0000,0.0000,-0.7396 +0.6613,0.0000,0.0000,-0.7501 +0.6613,0.0000,0.0000,-0.7501 +0.6613,0.0000,0.0000,-0.7501 +0.6613,0.0000,0.0000,-0.7501 +0.6494,0.0000,0.0000,-0.7604 +0.6494,0.0000,0.0000,-0.7604 +0.6494,0.0000,0.0000,-0.7604 +0.6494,0.0000,0.0000,-0.7604 +0.6374,0.0000,0.0000,-0.7705 +0.6374,0.0000,0.0000,-0.7705 +0.6374,0.0000,0.0000,-0.7705 +0.6374,0.0000,0.0000,-0.7705 +0.6252,0.0000,0.0000,-0.7804 +0.6252,0.0000,0.0000,-0.7804 +0.6252,0.0000,0.0000,-0.7804 +0.6252,0.0000,0.0000,-0.7804 +0.6129,0.0000,0.0000,-0.7902 +0.6129,0.0000,0.0000,-0.7902 +0.6129,0.0000,0.0000,-0.7902 +0.6129,0.0000,0.0000,-0.7902 +0.6004,0.0000,0.0000,-0.7997 +0.6004,0.0000,0.0000,-0.7997 +0.6004,0.0000,0.0000,-0.7997 +0.6004,0.0000,0.0000,-0.7997 +0.5878,0.0000,0.0000,-0.8090 +0.5878,0.0000,0.0000,-0.8090 +0.5878,0.0000,0.0000,-0.8090 +0.5878,0.0000,0.0000,-0.8090 +0.5750,0.0000,0.0000,-0.8181 +0.5750,0.0000,0.0000,-0.8181 +0.5750,0.0000,0.0000,-0.8181 +0.5750,0.0000,0.0000,-0.8181 +0.5621,0.0000,0.0000,-0.8271 +0.5621,0.0000,0.0000,-0.8271 +0.5621,0.0000,0.0000,-0.8271 +0.5621,0.0000,0.0000,-0.8271 +0.5490,0.0000,0.0000,-0.8358 +0.5490,0.0000,0.0000,-0.8358 +0.5490,0.0000,0.0000,-0.8358 +0.5490,0.0000,0.0000,-0.8358 +0.5358,0.0000,0.0000,-0.8443 +0.5358,0.0000,0.0000,-0.8443 +0.5358,0.0000,0.0000,-0.8443 +0.5358,0.0000,0.0000,-0.8443 +0.5225,0.0000,0.0000,-0.8526 +0.5225,0.0000,0.0000,-0.8526 +0.5225,0.0000,0.0000,-0.8526 +0.5225,0.0000,0.0000,-0.8526 +0.5090,0.0000,0.0000,-0.8607 +0.5090,0.0000,0.0000,-0.8607 +0.5090,0.0000,0.0000,-0.8607 +0.5090,0.0000,0.0000,-0.8607 +0.4955,0.0000,0.0000,-0.8686 +0.4955,0.0000,0.0000,-0.8686 +0.4955,0.0000,0.0000,-0.8686 +0.4955,0.0000,0.0000,-0.8686 +0.4818,0.0000,0.0000,-0.8763 +0.4818,0.0000,0.0000,-0.8763 +0.4818,0.0000,0.0000,-0.8763 +0.4818,0.0000,0.0000,-0.8763 +0.4679,0.0000,0.0000,-0.8838 +0.4679,0.0000,0.0000,-0.8838 +0.4679,0.0000,0.0000,-0.8838 +0.4679,0.0000,0.0000,-0.8838 +0.4540,0.0000,0.0000,-0.8910 +0.4540,0.0000,0.0000,-0.8910 +0.4540,0.0000,0.0000,-0.8910 +0.4540,0.0000,0.0000,-0.8910 +0.4399,0.0000,0.0000,-0.8980 +0.4399,0.0000,0.0000,-0.8980 +0.4399,0.0000,0.0000,-0.8980 +0.4399,0.0000,0.0000,-0.8980 +0.4258,0.0000,0.0000,-0.9048 +0.4258,0.0000,0.0000,-0.9048 +0.4258,0.0000,0.0000,-0.9048 +0.4258,0.0000,0.0000,-0.9048 +0.4115,0.0000,0.0000,-0.9114 +0.4115,0.0000,0.0000,-0.9114 +0.4115,0.0000,0.0000,-0.9114 +0.4115,0.0000,0.0000,-0.9114 +0.3971,0.0000,0.0000,-0.9178 +0.3971,0.0000,0.0000,-0.9178 +0.3971,0.0000,0.0000,-0.9178 +0.3971,0.0000,0.0000,-0.9178 +0.3827,0.0000,0.0000,-0.9239 +0.3827,0.0000,0.0000,-0.9239 +0.3827,0.0000,0.0000,-0.9239 +0.3827,0.0000,0.0000,-0.9239 +0.3681,0.0000,0.0000,-0.9298 +0.3681,0.0000,0.0000,-0.9298 +0.3681,0.0000,0.0000,-0.9298 +0.3681,0.0000,0.0000,-0.9298 +0.3535,0.0000,0.0000,-0.9354 +0.3535,0.0000,0.0000,-0.9354 +0.3535,0.0000,0.0000,-0.9354 +0.3535,0.0000,0.0000,-0.9354 +0.3387,0.0000,0.0000,-0.9409 +0.3387,0.0000,0.0000,-0.9409 +0.3387,0.0000,0.0000,-0.9409 +0.3387,0.0000,0.0000,-0.9409 +0.3239,0.0000,0.0000,-0.9461 +0.3239,0.0000,0.0000,-0.9461 +0.3239,0.0000,0.0000,-0.9461 +0.3239,0.0000,0.0000,-0.9461 +0.3090,0.0000,0.0000,-0.9511 +0.3090,0.0000,0.0000,-0.9511 +0.3090,0.0000,0.0000,-0.9511 +0.3090,0.0000,0.0000,-0.9511 +0.2940,0.0000,0.0000,-0.9558 +0.2940,0.0000,0.0000,-0.9558 +0.2940,0.0000,0.0000,-0.9558 +0.2940,0.0000,0.0000,-0.9558 +0.2790,0.0000,0.0000,-0.9603 +0.2790,0.0000,0.0000,-0.9603 +0.2790,0.0000,0.0000,-0.9603 +0.2790,0.0000,0.0000,-0.9603 +0.2639,0.0000,0.0000,-0.9646 +0.2639,0.0000,0.0000,-0.9646 +0.2639,0.0000,0.0000,-0.9646 +0.2639,0.0000,0.0000,-0.9646 +0.2487,0.0000,0.0000,-0.9686 +0.2487,0.0000,0.0000,-0.9686 +0.2487,0.0000,0.0000,-0.9686 +0.2487,0.0000,0.0000,-0.9686 +0.2334,0.0000,0.0000,-0.9724 +0.2334,0.0000,0.0000,-0.9724 +0.2334,0.0000,0.0000,-0.9724 +0.2334,0.0000,0.0000,-0.9724 +0.2181,0.0000,0.0000,-0.9759 +0.2181,0.0000,0.0000,-0.9759 +0.2181,0.0000,0.0000,-0.9759 +0.2181,0.0000,0.0000,-0.9759 +0.2028,0.0000,0.0000,-0.9792 +0.2028,0.0000,0.0000,-0.9792 +0.2028,0.0000,0.0000,-0.9792 +0.2028,0.0000,0.0000,-0.9792 +0.1874,0.0000,0.0000,-0.9823 +0.1874,0.0000,0.0000,-0.9823 +0.1874,0.0000,0.0000,-0.9823 +0.1874,0.0000,0.0000,-0.9823 +0.1719,0.0000,0.0000,-0.9851 +0.1719,0.0000,0.0000,-0.9851 +0.1719,0.0000,0.0000,-0.9851 +0.1719,0.0000,0.0000,-0.9851 +0.1564,0.0000,0.0000,-0.9877 +0.1564,0.0000,0.0000,-0.9877 +0.1564,0.0000,0.0000,-0.9877 +0.1564,0.0000,0.0000,-0.9877 +0.1409,0.0000,0.0000,-0.9900 +0.1409,0.0000,0.0000,-0.9900 +0.1409,0.0000,0.0000,-0.9900 +0.1409,0.0000,0.0000,-0.9900 +0.1253,0.0000,0.0000,-0.9921 +0.1253,0.0000,0.0000,-0.9921 +0.1253,0.0000,0.0000,-0.9921 +0.1253,0.0000,0.0000,-0.9921 +0.1097,0.0000,0.0000,-0.9940 +0.1097,0.0000,0.0000,-0.9940 +0.1097,0.0000,0.0000,-0.9940 +0.1097,0.0000,0.0000,-0.9940 +0.0941,0.0000,0.0000,-0.9956 +0.0941,0.0000,0.0000,-0.9956 +0.0941,0.0000,0.0000,-0.9956 +0.0941,0.0000,0.0000,-0.9956 +0.0785,0.0000,0.0000,-0.9969 +0.0785,0.0000,0.0000,-0.9969 +0.0785,0.0000,0.0000,-0.9969 +0.0785,0.0000,0.0000,-0.9969 +0.0628,0.0000,0.0000,-0.9980 +0.0628,0.0000,0.0000,-0.9980 +0.0628,0.0000,0.0000,-0.9980 +0.0628,0.0000,0.0000,-0.9980 +0.0471,0.0000,0.0000,-0.9989 +0.0471,0.0000,0.0000,-0.9989 +0.0471,0.0000,0.0000,-0.9989 +0.0471,0.0000,0.0000,-0.9989 +0.0314,0.0000,0.0000,-0.9995 +0.0314,0.0000,0.0000,-0.9995 +0.0314,0.0000,0.0000,-0.9995 +0.0314,0.0000,0.0000,-0.9995 +0.0157,0.0000,0.0000,-0.9999 +0.0157,0.0000,0.0000,-0.9999 +0.0157,0.0000,0.0000,-0.9999 +0.0157,0.0000,0.0000,-0.9999 +-0.0000,0.0000,0.0000,-1.0000 +-0.0000,0.0000,0.0000,-1.0000 +-0.0000,0.0000,0.0000,-1.0000 +-0.0000,0.0000,0.0000,-1.0000 +-0.0157,0.0000,0.0000,-0.9999 +-0.0157,0.0000,0.0000,-0.9999 +-0.0157,0.0000,0.0000,-0.9999 +-0.0157,0.0000,0.0000,-0.9999 +-0.0314,0.0000,0.0000,-0.9995 +-0.0314,0.0000,0.0000,-0.9995 +-0.0314,0.0000,0.0000,-0.9995 +-0.0314,0.0000,0.0000,-0.9995 +-0.0471,0.0000,0.0000,-0.9989 +-0.0471,0.0000,0.0000,-0.9989 +-0.0471,0.0000,0.0000,-0.9989 +-0.0471,0.0000,0.0000,-0.9989 +-0.0628,0.0000,0.0000,-0.9980 +-0.0628,0.0000,0.0000,-0.9980 +-0.0628,0.0000,0.0000,-0.9980 +-0.0628,0.0000,0.0000,-0.9980 +-0.0785,0.0000,0.0000,-0.9969 +-0.0785,0.0000,0.0000,-0.9969 +-0.0785,0.0000,0.0000,-0.9969 +-0.0785,0.0000,0.0000,-0.9969 +-0.0941,0.0000,0.0000,-0.9956 +-0.0941,0.0000,0.0000,-0.9956 +-0.0941,0.0000,0.0000,-0.9956 +-0.0941,0.0000,0.0000,-0.9956 +-0.1097,0.0000,0.0000,-0.9940 +-0.1097,0.0000,0.0000,-0.9940 +-0.1097,0.0000,0.0000,-0.9940 +-0.1097,0.0000,0.0000,-0.9940 +-0.1253,0.0000,0.0000,-0.9921 +-0.1253,0.0000,0.0000,-0.9921 +-0.1253,0.0000,0.0000,-0.9921 +-0.1253,0.0000,0.0000,-0.9921 +-0.1409,0.0000,0.0000,-0.9900 +-0.1409,0.0000,0.0000,-0.9900 +-0.1409,0.0000,0.0000,-0.9900 +-0.1409,0.0000,0.0000,-0.9900 +-0.1564,0.0000,0.0000,-0.9877 +-0.1564,0.0000,0.0000,-0.9877 +-0.1564,0.0000,0.0000,-0.9877 +-0.1564,0.0000,0.0000,-0.9877 +-0.1719,0.0000,0.0000,-0.9851 +-0.1719,0.0000,0.0000,-0.9851 +-0.1719,0.0000,0.0000,-0.9851 +-0.1719,0.0000,0.0000,-0.9851 +-0.1874,0.0000,0.0000,-0.9823 +-0.1874,0.0000,0.0000,-0.9823 +-0.1874,0.0000,0.0000,-0.9823 +-0.1874,0.0000,0.0000,-0.9823 +-0.2028,0.0000,0.0000,-0.9792 +-0.2028,0.0000,0.0000,-0.9792 +-0.2028,0.0000,0.0000,-0.9792 +-0.2028,0.0000,0.0000,-0.9792 +-0.2181,0.0000,0.0000,-0.9759 +-0.2181,0.0000,0.0000,-0.9759 +-0.2181,0.0000,0.0000,-0.9759 +-0.2181,0.0000,0.0000,-0.9759 +-0.2334,0.0000,0.0000,-0.9724 +-0.2334,0.0000,0.0000,-0.9724 +-0.2334,0.0000,0.0000,-0.9724 +-0.2334,0.0000,0.0000,-0.9724 +-0.2487,0.0000,0.0000,-0.9686 +-0.2487,0.0000,0.0000,-0.9686 +-0.2487,0.0000,0.0000,-0.9686 +-0.2487,0.0000,0.0000,-0.9686 +-0.2639,0.0000,0.0000,-0.9646 +-0.2639,0.0000,0.0000,-0.9646 +-0.2639,0.0000,0.0000,-0.9646 +-0.2639,0.0000,0.0000,-0.9646 +-0.2790,0.0000,0.0000,-0.9603 +-0.2790,0.0000,0.0000,-0.9603 +-0.2790,0.0000,0.0000,-0.9603 +-0.2790,0.0000,0.0000,-0.9603 +-0.2940,0.0000,0.0000,-0.9558 +-0.2940,0.0000,0.0000,-0.9558 +-0.2940,0.0000,0.0000,-0.9558 +-0.2940,0.0000,0.0000,-0.9558 +-0.3090,0.0000,0.0000,-0.9511 +-0.3090,0.0000,0.0000,-0.9511 +-0.3090,0.0000,0.0000,-0.9511 +-0.3090,0.0000,0.0000,-0.9511 +-0.3239,0.0000,0.0000,-0.9461 +-0.3239,0.0000,0.0000,-0.9461 +-0.3239,0.0000,0.0000,-0.9461 +-0.3239,0.0000,0.0000,-0.9461 +-0.3387,0.0000,0.0000,-0.9409 +-0.3387,0.0000,0.0000,-0.9409 +-0.3387,0.0000,0.0000,-0.9409 +-0.3387,0.0000,0.0000,-0.9409 +-0.3535,0.0000,0.0000,-0.9354 +-0.3535,0.0000,0.0000,-0.9354 +-0.3535,0.0000,0.0000,-0.9354 +-0.3535,0.0000,0.0000,-0.9354 +-0.3681,0.0000,0.0000,-0.9298 +-0.3681,0.0000,0.0000,-0.9298 +-0.3681,0.0000,0.0000,-0.9298 +-0.3681,0.0000,0.0000,-0.9298 +-0.3827,0.0000,0.0000,-0.9239 +-0.3827,0.0000,0.0000,-0.9239 +-0.3827,0.0000,0.0000,-0.9239 +-0.3827,0.0000,0.0000,-0.9239 +-0.3971,0.0000,0.0000,-0.9178 +-0.3971,0.0000,0.0000,-0.9178 +-0.3971,0.0000,0.0000,-0.9178 +-0.3971,0.0000,0.0000,-0.9178 +-0.4115,0.0000,0.0000,-0.9114 +-0.4115,0.0000,0.0000,-0.9114 +-0.4115,0.0000,0.0000,-0.9114 +-0.4115,0.0000,0.0000,-0.9114 +-0.4258,0.0000,0.0000,-0.9048 +-0.4258,0.0000,0.0000,-0.9048 +-0.4258,0.0000,0.0000,-0.9048 +-0.4258,0.0000,0.0000,-0.9048 +-0.4399,0.0000,0.0000,-0.8980 +-0.4399,0.0000,0.0000,-0.8980 +-0.4399,0.0000,0.0000,-0.8980 +-0.4399,0.0000,0.0000,-0.8980 +-0.4540,0.0000,0.0000,-0.8910 +-0.4540,0.0000,0.0000,-0.8910 +-0.4540,0.0000,0.0000,-0.8910 +-0.4540,0.0000,0.0000,-0.8910 +-0.4679,0.0000,0.0000,-0.8838 +-0.4679,0.0000,0.0000,-0.8838 +-0.4679,0.0000,0.0000,-0.8838 +-0.4679,0.0000,0.0000,-0.8838 +-0.4818,0.0000,0.0000,-0.8763 +-0.4818,0.0000,0.0000,-0.8763 +-0.4818,0.0000,0.0000,-0.8763 +-0.4818,0.0000,0.0000,-0.8763 +-0.4955,0.0000,0.0000,-0.8686 +-0.4955,0.0000,0.0000,-0.8686 +-0.4955,0.0000,0.0000,-0.8686 +-0.4955,0.0000,0.0000,-0.8686 +-0.5090,0.0000,0.0000,-0.8607 +-0.5090,0.0000,0.0000,-0.8607 +-0.5090,0.0000,0.0000,-0.8607 +-0.5090,0.0000,0.0000,-0.8607 +-0.5225,0.0000,0.0000,-0.8526 +-0.5225,0.0000,0.0000,-0.8526 +-0.5225,0.0000,0.0000,-0.8526 +-0.5225,0.0000,0.0000,-0.8526 +-0.5358,0.0000,0.0000,-0.8443 +-0.5358,0.0000,0.0000,-0.8443 +-0.5358,0.0000,0.0000,-0.8443 +-0.5358,0.0000,0.0000,-0.8443 +-0.5490,0.0000,0.0000,-0.8358 +-0.5490,0.0000,0.0000,-0.8358 +-0.5490,0.0000,0.0000,-0.8358 +-0.5490,0.0000,0.0000,-0.8358 +-0.5621,0.0000,0.0000,-0.8271 +-0.5621,0.0000,0.0000,-0.8271 +-0.5621,0.0000,0.0000,-0.8271 +-0.5621,0.0000,0.0000,-0.8271 +-0.5750,0.0000,0.0000,-0.8181 +-0.5750,0.0000,0.0000,-0.8181 +-0.5750,0.0000,0.0000,-0.8181 +-0.5750,0.0000,0.0000,-0.8181 +-0.5878,0.0000,0.0000,-0.8090 +-0.5878,0.0000,0.0000,-0.8090 +-0.5878,0.0000,0.0000,-0.8090 +-0.5878,0.0000,0.0000,-0.8090 +-0.6004,0.0000,0.0000,-0.7997 +-0.6004,0.0000,0.0000,-0.7997 +-0.6004,0.0000,0.0000,-0.7997 +-0.6004,0.0000,0.0000,-0.7997 +-0.6129,0.0000,0.0000,-0.7902 +-0.6129,0.0000,0.0000,-0.7902 +-0.6129,0.0000,0.0000,-0.7902 +-0.6129,0.0000,0.0000,-0.7902 +-0.6252,0.0000,0.0000,-0.7804 +-0.6252,0.0000,0.0000,-0.7804 +-0.6252,0.0000,0.0000,-0.7804 +-0.6252,0.0000,0.0000,-0.7804 +-0.6374,0.0000,0.0000,-0.7705 +-0.6374,0.0000,0.0000,-0.7705 +-0.6374,0.0000,0.0000,-0.7705 +-0.6374,0.0000,0.0000,-0.7705 +-0.6494,0.0000,0.0000,-0.7604 +-0.6494,0.0000,0.0000,-0.7604 +-0.6494,0.0000,0.0000,-0.7604 +-0.6494,0.0000,0.0000,-0.7604 +-0.6613,0.0000,0.0000,-0.7501 +-0.6613,0.0000,0.0000,-0.7501 +-0.6613,0.0000,0.0000,-0.7501 +-0.6613,0.0000,0.0000,-0.7501 +-0.6730,0.0000,0.0000,-0.7396 +-0.6730,0.0000,0.0000,-0.7396 +-0.6730,0.0000,0.0000,-0.7396 +-0.6730,0.0000,0.0000,-0.7396 +-0.6845,0.0000,0.0000,-0.7290 +-0.6845,0.0000,0.0000,-0.7290 +-0.6845,0.0000,0.0000,-0.7290 +-0.6845,0.0000,0.0000,-0.7290 +-0.6959,0.0000,0.0000,-0.7181 +-0.6959,0.0000,0.0000,-0.7181 +-0.6959,0.0000,0.0000,-0.7181 +-0.6959,0.0000,0.0000,-0.7181 +-0.7071,0.0000,0.0000,-0.7071 +-0.7071,0.0000,0.0000,-0.7071 +-0.7071,0.0000,0.0000,-0.7071 +-0.7071,0.0000,0.0000,-0.7071 +-0.7181,0.0000,0.0000,-0.6959 +-0.7181,0.0000,0.0000,-0.6959 +-0.7181,0.0000,0.0000,-0.6959 +-0.7181,0.0000,0.0000,-0.6959 +-0.7290,0.0000,0.0000,-0.6845 +-0.7290,0.0000,0.0000,-0.6845 +-0.7290,0.0000,0.0000,-0.6845 +-0.7290,0.0000,0.0000,-0.6845 +-0.7396,0.0000,0.0000,-0.6730 +-0.7396,0.0000,0.0000,-0.6730 +-0.7396,0.0000,0.0000,-0.6730 +-0.7396,0.0000,0.0000,-0.6730 +-0.7501,0.0000,0.0000,-0.6613 +-0.7501,0.0000,0.0000,-0.6613 +-0.7501,0.0000,0.0000,-0.6613 +-0.7501,0.0000,0.0000,-0.6613 +-0.7604,0.0000,0.0000,-0.6494 +-0.7604,0.0000,0.0000,-0.6494 +-0.7604,0.0000,0.0000,-0.6494 +-0.7604,0.0000,0.0000,-0.6494 +-0.7705,0.0000,0.0000,-0.6374 +-0.7705,0.0000,0.0000,-0.6374 +-0.7705,0.0000,0.0000,-0.6374 +-0.7705,0.0000,0.0000,-0.6374 +-0.7804,0.0000,0.0000,-0.6252 +-0.7804,0.0000,0.0000,-0.6252 +-0.7804,0.0000,0.0000,-0.6252 +-0.7804,0.0000,0.0000,-0.6252 +-0.7902,0.0000,0.0000,-0.6129 +-0.7902,0.0000,0.0000,-0.6129 +-0.7902,0.0000,0.0000,-0.6129 +-0.7902,0.0000,0.0000,-0.6129 +-0.7997,0.0000,0.0000,-0.6004 +-0.7997,0.0000,0.0000,-0.6004 +-0.7997,0.0000,0.0000,-0.6004 +-0.7997,0.0000,0.0000,-0.6004 +-0.8090,0.0000,0.0000,-0.5878 +-0.8090,0.0000,0.0000,-0.5878 +-0.8090,0.0000,0.0000,-0.5878 +-0.8090,0.0000,0.0000,-0.5878 +-0.8182,0.0000,0.0000,-0.5750 +-0.8182,0.0000,0.0000,-0.5750 +-0.8182,0.0000,0.0000,-0.5750 +-0.8182,0.0000,0.0000,-0.5750 +-0.8271,0.0000,0.0000,-0.5621 +-0.8271,0.0000,0.0000,-0.5621 +-0.8271,0.0000,0.0000,-0.5621 +-0.8271,0.0000,0.0000,-0.5621 +-0.8358,0.0000,0.0000,-0.5490 +-0.8358,0.0000,0.0000,-0.5490 +-0.8358,0.0000,0.0000,-0.5490 +-0.8358,0.0000,0.0000,-0.5490 +-0.8443,0.0000,0.0000,-0.5358 +-0.8443,0.0000,0.0000,-0.5358 +-0.8443,0.0000,0.0000,-0.5358 +-0.8443,0.0000,0.0000,-0.5358 +-0.8526,0.0000,0.0000,-0.5225 +-0.8526,0.0000,0.0000,-0.5225 +-0.8526,0.0000,0.0000,-0.5225 +-0.8526,0.0000,0.0000,-0.5225 +-0.8607,0.0000,0.0000,-0.5090 +-0.8607,0.0000,0.0000,-0.5090 +-0.8607,0.0000,0.0000,-0.5090 +-0.8607,0.0000,0.0000,-0.5090 +-0.8686,0.0000,0.0000,-0.4955 +-0.8686,0.0000,0.0000,-0.4955 +-0.8686,0.0000,0.0000,-0.4955 +-0.8686,0.0000,0.0000,-0.4955 +-0.8763,0.0000,0.0000,-0.4818 +-0.8763,0.0000,0.0000,-0.4818 +-0.8763,0.0000,0.0000,-0.4818 +-0.8763,0.0000,0.0000,-0.4818 +-0.8838,0.0000,0.0000,-0.4679 +-0.8838,0.0000,0.0000,-0.4679 +-0.8838,0.0000,0.0000,-0.4679 +-0.8838,0.0000,0.0000,-0.4679 +-0.8910,0.0000,0.0000,-0.4540 +-0.8910,0.0000,0.0000,-0.4540 +-0.8910,0.0000,0.0000,-0.4540 +-0.8910,0.0000,0.0000,-0.4540 +-0.8980,0.0000,0.0000,-0.4399 +-0.8980,0.0000,0.0000,-0.4399 +-0.8980,0.0000,0.0000,-0.4399 +-0.8980,0.0000,0.0000,-0.4399 +-0.9048,0.0000,0.0000,-0.4258 +-0.9048,0.0000,0.0000,-0.4258 +-0.9048,0.0000,0.0000,-0.4258 +-0.9048,0.0000,0.0000,-0.4258 +-0.9114,0.0000,0.0000,-0.4115 +-0.9114,0.0000,0.0000,-0.4115 +-0.9114,0.0000,0.0000,-0.4115 +-0.9114,0.0000,0.0000,-0.4115 +-0.9178,0.0000,0.0000,-0.3971 +-0.9178,0.0000,0.0000,-0.3971 +-0.9178,0.0000,0.0000,-0.3971 +-0.9178,0.0000,0.0000,-0.3971 +-0.9239,0.0000,0.0000,-0.3827 +-0.9239,0.0000,0.0000,-0.3827 +-0.9239,0.0000,0.0000,-0.3827 +-0.9239,0.0000,0.0000,-0.3827 +-0.9298,0.0000,0.0000,-0.3681 +-0.9298,0.0000,0.0000,-0.3681 +-0.9298,0.0000,0.0000,-0.3681 +-0.9298,0.0000,0.0000,-0.3681 +-0.9354,0.0000,0.0000,-0.3535 +-0.9354,0.0000,0.0000,-0.3535 +-0.9354,0.0000,0.0000,-0.3535 +-0.9354,0.0000,0.0000,-0.3535 +-0.9409,0.0000,0.0000,-0.3387 +-0.9409,0.0000,0.0000,-0.3387 +-0.9409,0.0000,0.0000,-0.3387 +-0.9409,0.0000,0.0000,-0.3387 +-0.9461,0.0000,0.0000,-0.3239 +-0.9461,0.0000,0.0000,-0.3239 +-0.9461,0.0000,0.0000,-0.3239 +-0.9461,0.0000,0.0000,-0.3239 +-0.9511,0.0000,0.0000,-0.3090 +-0.9511,0.0000,0.0000,-0.3090 +-0.9511,0.0000,0.0000,-0.3090 +-0.9511,0.0000,0.0000,-0.3090 +-0.9558,0.0000,0.0000,-0.2940 +-0.9558,0.0000,0.0000,-0.2940 +-0.9558,0.0000,0.0000,-0.2940 +-0.9558,0.0000,0.0000,-0.2940 +-0.9603,0.0000,0.0000,-0.2790 +-0.9603,0.0000,0.0000,-0.2790 +-0.9603,0.0000,0.0000,-0.2790 +-0.9603,0.0000,0.0000,-0.2790 +-0.9646,0.0000,0.0000,-0.2639 +-0.9646,0.0000,0.0000,-0.2639 +-0.9646,0.0000,0.0000,-0.2639 +-0.9646,0.0000,0.0000,-0.2639 +-0.9686,0.0000,0.0000,-0.2487 +-0.9686,0.0000,0.0000,-0.2487 +-0.9686,0.0000,0.0000,-0.2487 +-0.9686,0.0000,0.0000,-0.2487 +-0.9724,0.0000,0.0000,-0.2334 +-0.9724,0.0000,0.0000,-0.2334 +-0.9724,0.0000,0.0000,-0.2334 +-0.9724,0.0000,0.0000,-0.2334 +-0.9759,0.0000,0.0000,-0.2181 +-0.9759,0.0000,0.0000,-0.2181 +-0.9759,0.0000,0.0000,-0.2181 +-0.9759,0.0000,0.0000,-0.2181 +-0.9792,0.0000,0.0000,-0.2028 +-0.9792,0.0000,0.0000,-0.2028 +-0.9792,0.0000,0.0000,-0.2028 +-0.9792,0.0000,0.0000,-0.2028 +-0.9823,0.0000,0.0000,-0.1874 +-0.9823,0.0000,0.0000,-0.1874 +-0.9823,0.0000,0.0000,-0.1874 +-0.9823,0.0000,0.0000,-0.1874 +-0.9851,0.0000,0.0000,-0.1719 +-0.9851,0.0000,0.0000,-0.1719 +-0.9851,0.0000,0.0000,-0.1719 +-0.9851,0.0000,0.0000,-0.1719 +-0.9877,0.0000,0.0000,-0.1564 +-0.9877,0.0000,0.0000,-0.1564 +-0.9877,0.0000,0.0000,-0.1564 +-0.9877,0.0000,0.0000,-0.1564 +-0.9900,0.0000,0.0000,-0.1409 +-0.9900,0.0000,0.0000,-0.1409 +-0.9900,0.0000,0.0000,-0.1409 +-0.9900,0.0000,0.0000,-0.1409 +-0.9921,0.0000,0.0000,-0.1253 +-0.9921,0.0000,0.0000,-0.1253 +-0.9921,0.0000,0.0000,-0.1253 +-0.9921,0.0000,0.0000,-0.1253 +-0.9940,0.0000,0.0000,-0.1097 +-0.9940,0.0000,0.0000,-0.1097 +-0.9940,0.0000,0.0000,-0.1097 +-0.9940,0.0000,0.0000,-0.1097 +-0.9956,0.0000,0.0000,-0.0941 +-0.9956,0.0000,0.0000,-0.0941 +-0.9956,0.0000,0.0000,-0.0941 +-0.9956,0.0000,0.0000,-0.0941 +-0.9969,0.0000,0.0000,-0.0785 +-0.9969,0.0000,0.0000,-0.0785 +-0.9969,0.0000,0.0000,-0.0785 +-0.9969,0.0000,0.0000,-0.0785 +-0.9980,0.0000,0.0000,-0.0628 +-0.9980,0.0000,0.0000,-0.0628 +-0.9980,0.0000,0.0000,-0.0628 +-0.9980,0.0000,0.0000,-0.0628 +-0.9989,0.0000,0.0000,-0.0471 +-0.9989,0.0000,0.0000,-0.0471 +-0.9989,0.0000,0.0000,-0.0471 +-0.9989,0.0000,0.0000,-0.0471 +-0.9995,0.0000,0.0000,-0.0314 +-0.9995,0.0000,0.0000,-0.0314 +-0.9995,0.0000,0.0000,-0.0314 +-0.9995,0.0000,0.0000,-0.0314 +-0.9999,0.0000,0.0000,-0.0157 +-0.9999,0.0000,0.0000,-0.0157 +-0.9999,0.0000,0.0000,-0.0157 +-0.9999,0.0000,0.0000,-0.0157 +1.0000,0.0000,0.0000,-0.0000 +1.0000,0.0000,0.0000,-0.0000 +1.0000,0.0000,0.0000,-0.0000 +1.0000,0.0000,0.0000,-0.0000 diff --git a/scripts/trajectories/full-circle-with-up-and-down-4s-Vector3.csv b/scripts/trajectories/full-circle-with-up-and-down-4s-Vector3.csv index 029e1ccae1ea9c76e0e823347b4af5059a7314aa..8fe2d2fe05d8e71170104a79cf3d50315ea722c8 100644 --- a/scripts/trajectories/full-circle-with-up-and-down-4s-Vector3.csv +++ b/scripts/trajectories/full-circle-with-up-and-down-4s-Vector3.csv @@ -1,200 +1,200 @@ -0.0000000000,0.0000000000,0.0000000000,0.7011852264,-0.0220356323,-0.7126384974 -0.0000000000,0.0000000000,0.0000000000,0.7057114840,-0.0443995968,-0.7071067691 -0.0000000000,0.0000000000,0.0000000000,0.7094757557,-0.0670652017,-0.7015314102 -0.0000000000,0.0000000000,0.0000000000,0.7124636769,-0.0900050774,-0.6959127784 -0.0000000000,0.0000000000,0.0000000000,0.7146614790,-0.1131912544,-0.6902512312 -0.0000000000,0.0000000000,0.0000000000,0.7160565853,-0.1365950853,-0.6845471263 -0.0000000000,0.0000000000,0.0000000000,0.7166376114,-0.1601874828,-0.6788007617 -0.0000000000,0.0000000000,0.0000000000,0.7163942456,-0.1839387715,-0.6730124950 -0.0000000000,0.0000000000,0.0000000000,0.7153171301,-0.2078188211,-0.6671827435 -0.0000000000,0.0000000000,0.0000000000,0.7133980989,-0.2317970842,-0.6613118649 -0.0000000000,0.0000000000,0.0000000000,0.7106301188,-0.2558425963,-0.6554001570 -0.0000000000,0.0000000000,0.0000000000,0.7070075870,-0.2799241245,-0.6494480371 -0.0000000000,0.0000000000,0.0000000000,0.7025257945,-0.3040100932,-0.6434558630 -0.0000000000,0.0000000000,0.0000000000,0.6971811652,-0.3280686140,-0.6374239922 -0.0000000000,0.0000000000,0.0000000000,0.6909717321,-0.3520677686,-0.6313527822 -0.0000000000,0.0000000000,0.0000000000,0.6838963628,-0.3759752810,-0.6252426505 -0.0000000000,0.0000000000,0.0000000000,0.6759552360,-0.3997589052,-0.6190938950 -0.0000000000,0.0000000000,0.0000000000,0.6671499014,-0.4233863056,-0.6129069924 -0.0000000000,0.0000000000,0.0000000000,0.6574829817,-0.4468251169,-0.6066823006 -0.0000000000,0.0000000000,0.0000000000,0.6469584703,-0.4700429738,-0.6004201770 -0.0000000000,0.0000000000,0.0000000000,0.6355813742,-0.4930076003,-0.5941210389 -0.0000000000,0.0000000000,0.0000000000,0.6233581901,-0.5156869292,-0.5877851844 -0.0000000000,0.0000000000,0.0000000000,0.6102966070,-0.5380490422,-0.5814131498 -0.0000000000,0.0000000000,0.0000000000,0.5964053869,-0.5600621700,-0.5750051737 -0.0000000000,0.0000000000,0.0000000000,0.5816946030,-0.5816948414,-0.5685617924 -0.0000000000,0.0000000000,0.0000000000,0.5661755204,-0.6029159427,-0.5620833039 -0.0000000000,0.0000000000,0.0000000000,0.5498605967,-0.6236947179,-0.5555701852 -0.0000000000,0.0000000000,0.0000000000,0.5327635407,-0.6440008283,-0.5490227342 -0.0000000000,0.0000000000,0.0000000000,0.5148991346,-0.6638042927,-0.5424414873 -0.0000000000,0.0000000000,0.0000000000,0.4962833822,-0.6830757856,-0.5358267426 -0.0000000000,0.0000000000,0.0000000000,0.4769333005,-0.7017864585,-0.5291789174 -0.0000000000,0.0000000000,0.0000000000,0.4568672776,-0.7199081182,-0.5224984884 -0.0000000000,0.0000000000,0.0000000000,0.4361044765,-0.7374129295,-0.5157858133 -0.0000000000,0.0000000000,0.0000000000,0.4146654308,-0.7542741895,-0.5090413094 -0.0000000000,0.0000000000,0.0000000000,0.3925714791,-0.7704654932,-0.5022654533 -0.0000000000,0.0000000000,0.0000000000,0.3698450625,-0.7859614491,-0.4954585731 -0.0000000000,0.0000000000,0.0000000000,0.3465096951,-0.8007374406,-0.4886211455 -0.0000000000,0.0000000000,0.0000000000,0.3225897253,-0.8147695065,-0.4817535877 -0.0000000000,0.0000000000,0.0000000000,0.2981105149,-0.8280348182,-0.4748562872 -0.0000000000,0.0000000000,0.0000000000,0.2730982900,-0.8405112624,-0.4679297209 -0.0000000000,0.0000000000,0.0000000000,0.2475801259,-0.8521776795,-0.4609742761 -0.0000000000,0.0000000000,0.0000000000,0.2215839773,-0.8630141020,-0.4539903998 -0.0000000000,0.0000000000,0.0000000000,0.1951385140,-0.8730012774,-0.4469785094 -0.0000000000,0.0000000000,0.0000000000,0.1682732105,-0.8821212053,-0.4399390519 -0.0000000000,0.0000000000,0.0000000000,0.1410182565,-0.8903568387,-0.4328724742 -0.0000000000,0.0000000000,0.0000000000,0.1134044901,-0.8976923823,-0.4257791638 -0.0000000000,0.0000000000,0.0000000000,0.0854633972,-0.9041128755,-0.4186595976 -0.0000000000,0.0000000000,0.0000000000,0.0572270416,-0.9096049666,-0.4115142226 -0.0000000000,0.0000000000,0.0000000000,0.0287280418,-0.9141559601,-0.4043434560 -0.0000000000,0.0000000000,0.0000000000,-0.0000004777,-0.9177547097,-0.3971477449 -0.0000000000,0.0000000000,0.0000000000,-0.0289249513,-0.9203911424,-0.3899275362 -0.0000000000,0.0000000000,0.0000000000,-0.0580113828,-0.9220564365,-0.3826832771 -0.0000000000,0.0000000000,0.0000000000,-0.0872254297,-0.9227431417,-0.3754154146 -0.0000000000,0.0000000000,0.0000000000,-0.1165324301,-0.9224448800,-0.3681243956 -0.0000000000,0.0000000000,0.0000000000,-0.1458974332,-0.9211566448,-0.3608106673 -0.0000000000,0.0000000000,0.0000000000,-0.1752853096,-0.9188747406,-0.3534746766 -0.0000000000,0.0000000000,0.0000000000,-0.2046606690,-0.9155966043,-0.3461169004 -0.0000000000,0.0000000000,0.0000000000,-0.2339881063,-0.9113211632,-0.3387377560 -0.0000000000,0.0000000000,0.0000000000,-0.2632321119,-0.9060486555,-0.3313377202 -0.0000000000,0.0000000000,0.0000000000,-0.2923570275,-0.8997804523,-0.3239172399 -0.0000000000,0.0000000000,0.0000000000,-0.3213274479,-0.8925194740,-0.3164767921 -0.0000000000,0.0000000000,0.0000000000,-0.3501078784,-0.8842698336,-0.3090168238 -0.0000000000,0.0000000000,0.0000000000,-0.3786629438,-0.8750367761,-0.3015377820 -0.0000000000,0.0000000000,0.0000000000,-0.4069574177,-0.8648272157,-0.2940401435 -0.0000000000,0.0000000000,0.0000000000,-0.4349565208,-0.8536489606,-0.2865243554 -0.0000000000,0.0000000000,0.0000000000,-0.4626255631,-0.8415116072,-0.2789909244 -0.0000000000,0.0000000000,0.0000000000,-0.4899301231,-0.8284254074,-0.2714402676 -0.0000000000,0.0000000000,0.0000000000,-0.5168362856,-0.8144024611,-0.2638728619 -0.0000000000,0.0000000000,0.0000000000,-0.5433104038,-0.7994558811,-0.2562891841 -0.0000000000,0.0000000000,0.0000000000,-0.5693194270,-0.7835999131,-0.2486896813 -0.0000000000,0.0000000000,0.0000000000,-0.5948308110,-0.7668501735,-0.2410748452 -0.0000000000,0.0000000000,0.0000000000,-0.6198124886,-0.7492235303,-0.2334451526 -0.0000000000,0.0000000000,0.0000000000,-0.6442329884,-0.7307378650,-0.2258010507 -0.0000000000,0.0000000000,0.0000000000,-0.6680614948,-0.7114122510,-0.2181430161 -0.0000000000,0.0000000000,0.0000000000,-0.6912680864,-0.6912670732,-0.2104715407 -0.0000000000,0.0000000000,0.0000000000,-0.7138232589,-0.6703236699,-0.2027870715 -0.0000000000,0.0000000000,0.0000000000,-0.7356984019,-0.6486044526,-0.1950900853 -0.0000000000,0.0000000000,0.0000000000,-0.7568657994,-0.6261329055,-0.1873810887 -0.0000000000,0.0000000000,0.0000000000,-0.7772985697,-0.6029336452,-0.1796605140 -0.0000000000,0.0000000000,0.0000000000,-0.7969707251,-0.5790321231,-0.1719288677 -0.0000000000,0.0000000000,0.0000000000,-0.8158569336,-0.5544548631,-0.1641865969 -0.0000000000,0.0000000000,0.0000000000,-0.8339332938,-0.5292291641,-0.1564342231 -0.0000000000,0.0000000000,0.0000000000,-0.8511766195,-0.5033835173,-0.1486721784 -0.0000000000,0.0000000000,0.0000000000,-0.8675647378,-0.4769468009,-0.1409009844 -0.0000000000,0.0000000000,0.0000000000,-0.8830767274,-0.4499491453,-0.1331210881 -0.0000000000,0.0000000000,0.0000000000,-0.8976926208,-0.4224211276,-0.1253329664 -0.0000000000,0.0000000000,0.0000000000,-0.9113935232,-0.3943942785,-0.1175371334 -0.0000000000,0.0000000000,0.0000000000,-0.9241618514,-0.3659006357,-0.1097340435 -0.0000000000,0.0000000000,0.0000000000,-0.9359810948,-0.3369729817,-0.1019241884 -0.0000000000,0.0000000000,0.0000000000,-0.9468359947,-0.3076447248,-0.0941080377 -0.0000000000,0.0000000000,0.0000000000,-0.9567124248,-0.2779496908,-0.0862860903 -0.0000000000,0.0000000000,0.0000000000,-0.9655976295,-0.2479223609,-0.0784588158 -0.0000000000,0.0000000000,0.0000000000,-0.9734799266,-0.2175975740,-0.0706266984 -0.0000000000,0.0000000000,0.0000000000,-0.9803490639,-0.1870106161,-0.0627902299 -0.0000000000,0.0000000000,0.0000000000,-0.9861962199,-0.1561971456,-0.0549498871 -0.0000000000,0.0000000000,0.0000000000,-0.9910134673,-0.1251931190,-0.0471061580 -0.0000000000,0.0000000000,0.0000000000,-0.9947945476,-0.0940347686,-0.0392595194 -0.0000000000,0.0000000000,0.0000000000,-0.9975343347,-0.0627585277,-0.0314104594 -0.0000000000,0.0000000000,0.0000000000,-0.9992291331,-0.0314010158,-0.0235594604 -0.0000000000,0.0000000000,0.0000000000,-0.9998766184,0.0000010410,-0.0157070104 -0.0000000000,0.0000000000,0.0000000000,-0.9994757175,0.0314108431,-0.0078535900 -0.0000000000,0.0000000000,0.0000000000,-0.9980266690,0.0627915859,0.0000003139 -0.0000000000,0.0000000000,0.0000000000,-0.9955311418,0.0941064879,0.0078542177 -0.0000000000,0.0000000000,0.0000000000,-0.9919921160,0.1253188550,0.0157076381 -0.0000000000,0.0000000000,0.0000000000,-0.9874140024,0.1563921273,0.0235600881 -0.0000000000,0.0000000000,0.0000000000,-0.9818023443,0.1872899532,0.0314110853 -0.0000000000,0.0000000000,0.0000000000,-0.9751641154,0.2179761529,0.0392601453 -0.0000000000,0.0000000000,0.0000000000,-0.9675076008,0.2484149188,0.0471067838 -0.0000000000,0.0000000000,0.0000000000,-0.9588424563,0.2785706818,0.0549505167 -0.0000000000,0.0000000000,0.0000000000,-0.9491794705,0.3084083200,0.0627908558 -0.0000000000,0.0000000000,0.0000000000,-0.9385307431,0.3378931284,0.0706273243 -0.0000000000,0.0000000000,0.0000000000,-0.9269098639,0.3669908643,0.0784594417 -0.0000000000,0.0000000000,0.0000000000,-0.9143312573,0.3956677616,0.0862867162 -0.0000000000,0.0000000000,0.0000000000,-0.9008108377,0.4238907397,0.0941086635 -0.0000000000,0.0000000000,0.0000000000,-0.8863657117,0.4516272545,0.1019248068 -0.0000000000,0.0000000000,0.0000000000,-0.8710139990,0.4788454175,0.1097346693 -0.0000000000,0.0000000000,0.0000000000,-0.8547750711,0.5055140257,0.1175377592 -0.0000000000,0.0000000000,0.0000000000,-0.8376694918,0.5316026807,0.1253335923 -0.0000000000,0.0000000000,0.0000000000,-0.8197185993,0.5570816994,0.1331216991 -0.0000000000,0.0000000000,0.0000000000,-0.8009451628,0.5819223523,0.1409015954 -0.0000000000,0.0000000000,0.0000000000,-0.7813727856,0.6060964465,0.1486728042 -0.0000000000,0.0000000000,0.0000000000,-0.7610260844,0.6295772195,0.1564348340 -0.0000000000,0.0000000000,0.0000000000,-0.7399306297,0.6523383260,0.1641872227 -0.0000000000,0.0000000000,0.0000000000,-0.7181128860,0.6743546724,0.1719294786 -0.0000000000,0.0000000000,0.0000000000,-0.6956002116,0.6956020594,0.1796611249 -0.0000000000,0.0000000000,0.0000000000,-0.6724208593,0.7160574794,0.1873816997 -0.0000000000,0.0000000000,0.0000000000,-0.6486039162,0.7356987596,0.1950907111 -0.0000000000,0.0000000000,0.0000000000,-0.6241791844,0.7545047998,0.2027876824 -0.0000000000,0.0000000000,0.0000000000,-0.5991769433,0.7724561095,0.2104721516 -0.0000000000,0.0000000000,0.0000000000,-0.5736284852,0.7895339131,0.2181436419 -0.0000000000,0.0000000000,0.0000000000,-0.5475656986,0.8057205081,0.2258016616 -0.0000000000,0.0000000000,0.0000000000,-0.5210208297,0.8209996819,0.2334457636 -0.0000000000,0.0000000000,0.0000000000,-0.4940268993,0.8353561759,0.2410754561 -0.0000000000,0.0000000000,0.0000000000,-0.4666174054,0.8487763405,0.2486902922 -0.0000000000,0.0000000000,0.0000000000,-0.4388261437,0.8612474203,0.2562897801 -0.0000000000,0.0000000000,0.0000000000,-0.4106874168,0.8727580309,0.2638734579 -0.0000000000,0.0000000000,0.0000000000,-0.3822358847,0.8832980990,0.2714408636 -0.0000000000,0.0000000000,0.0000000000,-0.3535065055,0.8928588629,0.2789915204 -0.0000000000,0.0000000000,0.0000000000,-0.3245343864,0.9014326334,0.2865249813 -0.0000000000,0.0000000000,0.0000000000,-0.2953550518,0.9090134501,0.2940407395 -0.0000000000,0.0000000000,0.0000000000,-0.2660039663,0.9155962467,0.3015383780 -0.0000000000,0.0000000000,0.0000000000,-0.2365168631,0.9211775064,0.3090174198 -0.0000000000,0.0000000000,0.0000000000,-0.2069294453,0.9257549644,0.3164773881 -0.0000000000,0.0000000000,0.0000000000,-0.1772774160,0.9293277264,0.3239178360 -0.0000000000,0.0000000000,0.0000000000,-0.1475965232,0.9318960309,0.3313383162 -0.0000000000,0.0000000000,0.0000000000,-0.1179223061,0.9334616661,0.3387383521 -0.0000000000,0.0000000000,0.0000000000,-0.0882902741,0.9340275526,0.3461174965 -0.0000000000,0.0000000000,0.0000000000,-0.0587356836,0.9335980415,0.3534752727 -0.0000000000,0.0000000000,0.0000000000,-0.0292935632,0.9321787357,0.3608112633 -0.0000000000,0.0000000000,0.0000000000,0.0000013411,0.9297763109,0.3681249917 -0.0000000000,0.0000000000,0.0000000000,0.0291146114,0.9263990521,0.3754160106 -0.0000000000,0.0000000000,0.0000000000,0.0580122210,0.9220561385,0.3826838732 -0.0000000000,0.0000000000,0.0000000000,0.0866605565,0.9167584181,0.3899281323 -0.0000000000,0.0000000000,0.0000000000,0.1150264814,0.9105175138,0.3971483409 -0.0000000000,0.0000000000,0.0000000000,0.1430774182,0.9033464789,0.4043440521 -0.0000000000,0.0000000000,0.0000000000,0.1707812548,0.8952593803,0.4115147889 -0.0000000000,0.0000000000,0.0000000000,0.1981066018,0.8862716556,0.4186601937 -0.0000000000,0.0000000000,0.0000000000,0.2250226289,0.8763996363,0.4257797301 -0.0000000000,0.0000000000,0.0000000000,0.2514992356,0.8656610847,0.4328730404 -0.0000000000,0.0000000000,0.0000000000,0.2775070667,0.8540742993,0.4399396181 -0.0000000000,0.0000000000,0.0000000000,0.3030174375,0.8416591883,0.4469790757 -0.0000000000,0.0000000000,0.0000000000,0.3280026019,0.8284361959,0.4539909363 -0.0000000000,0.0000000000,0.0000000000,0.3524355888,0.8144270182,0.4609748125 -0.0000000000,0.0000000000,0.0000000000,0.3762903214,0.7996541858,0.4679302573 -0.0000000000,0.0000000000,0.0000000000,0.3995415568,0.7841412425,0.4748568535 -0.0000000000,0.0000000000,0.0000000000,0.4221650958,0.7679124475,0.4817541242 -0.0000000000,0.0000000000,0.0000000000,0.4441377521,0.7509930730,0.4886216819 -0.0000000000,0.0000000000,0.0000000000,0.4654371440,0.7334088683,0.4954591393 -0.0000000000,0.0000000000,0.0000000000,0.4860421419,0.7151867151,0.5022659898 -0.0000000000,0.0000000000,0.0000000000,0.5059324503,0.6963538527,0.5090418458 -0.0000000000,0.0000000000,0.0000000000,0.5250892043,0.6769385338,0.5157863498 -0.0000000000,0.0000000000,0.0000000000,0.5434942245,0.6569693685,0.5224990249 -0.0000000000,0.0000000000,0.0000000000,0.5611307621,0.6364756823,0.5291794538 -0.0000000000,0.0000000000,0.0000000000,0.5779830813,0.6154873371,0.5358272791 -0.0000000000,0.0000000000,0.0000000000,0.5940366983,0.5940345526,0.5424420238 -0.0000000000,0.0000000000,0.0000000000,0.6092782021,0.5721482635,0.5490232706 -0.0000000000,0.0000000000,0.0000000000,0.6236953139,0.5498594046,0.5555707216 -0.0000000000,0.0000000000,0.0000000000,0.6372772455,0.5271996856,0.5620838404 -0.0000000000,0.0000000000,0.0000000000,0.6500141621,0.5042008162,0.5685623288 -0.0000000000,0.0000000000,0.0000000000,0.6618976593,0.4808949232,0.5750057101 -0.0000000000,0.0000000000,0.0000000000,0.6729202867,0.4573143721,0.5814136267 -0.0000000000,0.0000000000,0.0000000000,0.6830761433,0.4334915578,0.5877857208 -0.0000000000,0.0000000000,0.0000000000,0.6923604012,0.4094590545,0.5941215158 -0.0000000000,0.0000000000,0.0000000000,0.7007694244,0.3852495253,0.6004207134 -0.0000000000,0.0000000000,0.0000000000,0.7083009481,0.3608956933,0.6066828370 -0.0000000000,0.0000000000,0.0000000000,0.7149538994,0.3364301324,0.6129075289 -0.0000000000,0.0000000000,0.0000000000,0.7207285166,0.3118854463,0.6190944314 -0.0000000000,0.0000000000,0.0000000000,0.7256260514,0.2872940600,0.6252431273 -0.0000000000,0.0000000000,0.0000000000,0.7296491861,0.2626882493,0.6313532591 -0.0000000000,0.0000000000,0.0000000000,0.7328017950,0.2381001264,0.6374244690 -0.0000000000,0.0000000000,0.0000000000,0.7350887656,0.2135614604,0.6434563398 -0.0000000000,0.0000000000,0.0000000000,0.7365164161,0.1891037226,0.6494485140 -0.0000000000,0.0000000000,0.0000000000,0.7370921373,0.1647580713,0.6554006338 -0.0000000000,0.0000000000,0.0000000000,0.7368244529,0.1405552477,0.6613123417 -0.0000000000,0.0000000000,0.0000000000,0.7357230186,0.1165255532,0.6671832204 -0.0000000000,0.0000000000,0.0000000000,0.7337986827,0.0926988199,0.6730129719 -0.0000000000,0.0000000000,0.0000000000,0.7310632467,0.0691043213,0.6788011789 -0.0000000000,0.0000000000,0.0000000000,0.7275298238,0.0457707942,0.6845475435 -0.0000000000,0.0000000000,0.0000000000,0.7232123613,0.0227263644,0.6902517080 -0.0000000000,0.0000000000,0.0000000000,0.7181258798,-0.0000014953,0.6959132552 +0.0000,0.0000,0.0000,0.7012,-0.0220,-0.7126 +0.0000,0.0000,0.0000,0.7057,-0.0444,-0.7071 +0.0000,0.0000,0.0000,0.7095,-0.0671,-0.7015 +0.0000,0.0000,0.0000,0.7125,-0.0900,-0.6959 +0.0000,0.0000,0.0000,0.7147,-0.1132,-0.6903 +0.0000,0.0000,0.0000,0.7161,-0.1366,-0.6845 +0.0000,0.0000,0.0000,0.7166,-0.1602,-0.6788 +0.0000,0.0000,0.0000,0.7164,-0.1839,-0.6730 +0.0000,0.0000,0.0000,0.7153,-0.2078,-0.6672 +0.0000,0.0000,0.0000,0.7134,-0.2318,-0.6613 +0.0000,0.0000,0.0000,0.7106,-0.2558,-0.6554 +0.0000,0.0000,0.0000,0.7070,-0.2799,-0.6494 +0.0000,0.0000,0.0000,0.7025,-0.3040,-0.6435 +0.0000,0.0000,0.0000,0.6972,-0.3281,-0.6374 +0.0000,0.0000,0.0000,0.6910,-0.3521,-0.6314 +0.0000,0.0000,0.0000,0.6839,-0.3760,-0.6252 +0.0000,0.0000,0.0000,0.6760,-0.3998,-0.6191 +0.0000,0.0000,0.0000,0.6671,-0.4234,-0.6129 +0.0000,0.0000,0.0000,0.6575,-0.4468,-0.6067 +0.0000,0.0000,0.0000,0.6470,-0.4700,-0.6004 +0.0000,0.0000,0.0000,0.6356,-0.4930,-0.5941 +0.0000,0.0000,0.0000,0.6234,-0.5157,-0.5878 +0.0000,0.0000,0.0000,0.6103,-0.5380,-0.5814 +0.0000,0.0000,0.0000,0.5964,-0.5601,-0.5750 +0.0000,0.0000,0.0000,0.5817,-0.5817,-0.5686 +0.0000,0.0000,0.0000,0.5662,-0.6029,-0.5621 +0.0000,0.0000,0.0000,0.5499,-0.6237,-0.5556 +0.0000,0.0000,0.0000,0.5328,-0.6440,-0.5490 +0.0000,0.0000,0.0000,0.5149,-0.6638,-0.5424 +0.0000,0.0000,0.0000,0.4963,-0.6831,-0.5358 +0.0000,0.0000,0.0000,0.4769,-0.7018,-0.5292 +0.0000,0.0000,0.0000,0.4569,-0.7199,-0.5225 +0.0000,0.0000,0.0000,0.4361,-0.7374,-0.5158 +0.0000,0.0000,0.0000,0.4147,-0.7543,-0.5090 +0.0000,0.0000,0.0000,0.3926,-0.7705,-0.5023 +0.0000,0.0000,0.0000,0.3698,-0.7860,-0.4955 +0.0000,0.0000,0.0000,0.3465,-0.8007,-0.4886 +0.0000,0.0000,0.0000,0.3226,-0.8148,-0.4818 +0.0000,0.0000,0.0000,0.2981,-0.8280,-0.4749 +0.0000,0.0000,0.0000,0.2731,-0.8405,-0.4679 +0.0000,0.0000,0.0000,0.2476,-0.8522,-0.4610 +0.0000,0.0000,0.0000,0.2216,-0.8630,-0.4540 +0.0000,0.0000,0.0000,0.1951,-0.8730,-0.4470 +0.0000,0.0000,0.0000,0.1683,-0.8821,-0.4399 +0.0000,0.0000,0.0000,0.1410,-0.8904,-0.4329 +0.0000,0.0000,0.0000,0.1134,-0.8977,-0.4258 +0.0000,0.0000,0.0000,0.0855,-0.9041,-0.4187 +0.0000,0.0000,0.0000,0.0572,-0.9096,-0.4115 +0.0000,0.0000,0.0000,0.0287,-0.9142,-0.4043 +0.0000,0.0000,0.0000,-0.0000,-0.9178,-0.3971 +0.0000,0.0000,0.0000,-0.0289,-0.9204,-0.3899 +0.0000,0.0000,0.0000,-0.0580,-0.9221,-0.3827 +0.0000,0.0000,0.0000,-0.0872,-0.9227,-0.3754 +0.0000,0.0000,0.0000,-0.1165,-0.9224,-0.3681 +0.0000,0.0000,0.0000,-0.1459,-0.9212,-0.3608 +0.0000,0.0000,0.0000,-0.1753,-0.9189,-0.3535 +0.0000,0.0000,0.0000,-0.2047,-0.9156,-0.3461 +0.0000,0.0000,0.0000,-0.2340,-0.9113,-0.3387 +0.0000,0.0000,0.0000,-0.2632,-0.9060,-0.3313 +0.0000,0.0000,0.0000,-0.2924,-0.8998,-0.3239 +0.0000,0.0000,0.0000,-0.3213,-0.8925,-0.3165 +0.0000,0.0000,0.0000,-0.3501,-0.8843,-0.3090 +0.0000,0.0000,0.0000,-0.3787,-0.8750,-0.3015 +0.0000,0.0000,0.0000,-0.4070,-0.8648,-0.2940 +0.0000,0.0000,0.0000,-0.4350,-0.8536,-0.2865 +0.0000,0.0000,0.0000,-0.4626,-0.8415,-0.2790 +0.0000,0.0000,0.0000,-0.4899,-0.8284,-0.2714 +0.0000,0.0000,0.0000,-0.5168,-0.8144,-0.2639 +0.0000,0.0000,0.0000,-0.5433,-0.7995,-0.2563 +0.0000,0.0000,0.0000,-0.5693,-0.7836,-0.2487 +0.0000,0.0000,0.0000,-0.5948,-0.7669,-0.2411 +0.0000,0.0000,0.0000,-0.6198,-0.7492,-0.2334 +0.0000,0.0000,0.0000,-0.6442,-0.7307,-0.2258 +0.0000,0.0000,0.0000,-0.6681,-0.7114,-0.2181 +0.0000,0.0000,0.0000,-0.6913,-0.6913,-0.2105 +0.0000,0.0000,0.0000,-0.7138,-0.6703,-0.2028 +0.0000,0.0000,0.0000,-0.7357,-0.6486,-0.1951 +0.0000,0.0000,0.0000,-0.7569,-0.6261,-0.1874 +0.0000,0.0000,0.0000,-0.7773,-0.6029,-0.1797 +0.0000,0.0000,0.0000,-0.7970,-0.5790,-0.1719 +0.0000,0.0000,0.0000,-0.8159,-0.5545,-0.1642 +0.0000,0.0000,0.0000,-0.8339,-0.5292,-0.1564 +0.0000,0.0000,0.0000,-0.8512,-0.5034,-0.1487 +0.0000,0.0000,0.0000,-0.8676,-0.4769,-0.1409 +0.0000,0.0000,0.0000,-0.8831,-0.4499,-0.1331 +0.0000,0.0000,0.0000,-0.8977,-0.4224,-0.1253 +0.0000,0.0000,0.0000,-0.9114,-0.3944,-0.1175 +0.0000,0.0000,0.0000,-0.9242,-0.3659,-0.1097 +0.0000,0.0000,0.0000,-0.9360,-0.3370,-0.1019 +0.0000,0.0000,0.0000,-0.9468,-0.3076,-0.0941 +0.0000,0.0000,0.0000,-0.9567,-0.2779,-0.0863 +0.0000,0.0000,0.0000,-0.9656,-0.2479,-0.0785 +0.0000,0.0000,0.0000,-0.9735,-0.2176,-0.0706 +0.0000,0.0000,0.0000,-0.9803,-0.1870,-0.0628 +0.0000,0.0000,0.0000,-0.9862,-0.1562,-0.0549 +0.0000,0.0000,0.0000,-0.9910,-0.1252,-0.0471 +0.0000,0.0000,0.0000,-0.9948,-0.0940,-0.0393 +0.0000,0.0000,0.0000,-0.9975,-0.0628,-0.0314 +0.0000,0.0000,0.0000,-0.9992,-0.0314,-0.0236 +0.0000,0.0000,0.0000,-0.9999,0.0000,-0.0157 +0.0000,0.0000,0.0000,-0.9995,0.0314,-0.0079 +0.0000,0.0000,0.0000,-0.9980,0.0628,0.0000 +0.0000,0.0000,0.0000,-0.9955,0.0941,0.0079 +0.0000,0.0000,0.0000,-0.9920,0.1253,0.0157 +0.0000,0.0000,0.0000,-0.9874,0.1564,0.0236 +0.0000,0.0000,0.0000,-0.9818,0.1873,0.0314 +0.0000,0.0000,0.0000,-0.9752,0.2180,0.0393 +0.0000,0.0000,0.0000,-0.9675,0.2484,0.0471 +0.0000,0.0000,0.0000,-0.9588,0.2786,0.0550 +0.0000,0.0000,0.0000,-0.9492,0.3084,0.0628 +0.0000,0.0000,0.0000,-0.9385,0.3379,0.0706 +0.0000,0.0000,0.0000,-0.9269,0.3670,0.0785 +0.0000,0.0000,0.0000,-0.9143,0.3957,0.0863 +0.0000,0.0000,0.0000,-0.9008,0.4239,0.0941 +0.0000,0.0000,0.0000,-0.8864,0.4516,0.1019 +0.0000,0.0000,0.0000,-0.8710,0.4788,0.1097 +0.0000,0.0000,0.0000,-0.8548,0.5055,0.1175 +0.0000,0.0000,0.0000,-0.8377,0.5316,0.1253 +0.0000,0.0000,0.0000,-0.8197,0.5571,0.1331 +0.0000,0.0000,0.0000,-0.8009,0.5819,0.1409 +0.0000,0.0000,0.0000,-0.7814,0.6061,0.1487 +0.0000,0.0000,0.0000,-0.7610,0.6296,0.1564 +0.0000,0.0000,0.0000,-0.7399,0.6523,0.1642 +0.0000,0.0000,0.0000,-0.7181,0.6744,0.1719 +0.0000,0.0000,0.0000,-0.6956,0.6956,0.1797 +0.0000,0.0000,0.0000,-0.6724,0.7161,0.1874 +0.0000,0.0000,0.0000,-0.6486,0.7357,0.1951 +0.0000,0.0000,0.0000,-0.6242,0.7545,0.2028 +0.0000,0.0000,0.0000,-0.5992,0.7725,0.2105 +0.0000,0.0000,0.0000,-0.5736,0.7895,0.2181 +0.0000,0.0000,0.0000,-0.5476,0.8057,0.2258 +0.0000,0.0000,0.0000,-0.5210,0.8210,0.2334 +0.0000,0.0000,0.0000,-0.4940,0.8354,0.2411 +0.0000,0.0000,0.0000,-0.4666,0.8488,0.2487 +0.0000,0.0000,0.0000,-0.4388,0.8612,0.2563 +0.0000,0.0000,0.0000,-0.4107,0.8728,0.2639 +0.0000,0.0000,0.0000,-0.3822,0.8833,0.2714 +0.0000,0.0000,0.0000,-0.3535,0.8929,0.2790 +0.0000,0.0000,0.0000,-0.3245,0.9014,0.2865 +0.0000,0.0000,0.0000,-0.2954,0.9090,0.2940 +0.0000,0.0000,0.0000,-0.2660,0.9156,0.3015 +0.0000,0.0000,0.0000,-0.2365,0.9212,0.3090 +0.0000,0.0000,0.0000,-0.2069,0.9258,0.3165 +0.0000,0.0000,0.0000,-0.1773,0.9293,0.3239 +0.0000,0.0000,0.0000,-0.1476,0.9319,0.3313 +0.0000,0.0000,0.0000,-0.1179,0.9335,0.3387 +0.0000,0.0000,0.0000,-0.0883,0.9340,0.3461 +0.0000,0.0000,0.0000,-0.0587,0.9336,0.3535 +0.0000,0.0000,0.0000,-0.0293,0.9322,0.3608 +0.0000,0.0000,0.0000,0.0000,0.9298,0.3681 +0.0000,0.0000,0.0000,0.0291,0.9264,0.3754 +0.0000,0.0000,0.0000,0.0580,0.9221,0.3827 +0.0000,0.0000,0.0000,0.0867,0.9168,0.3899 +0.0000,0.0000,0.0000,0.1150,0.9105,0.3971 +0.0000,0.0000,0.0000,0.1431,0.9033,0.4043 +0.0000,0.0000,0.0000,0.1708,0.8953,0.4115 +0.0000,0.0000,0.0000,0.1981,0.8863,0.4187 +0.0000,0.0000,0.0000,0.2250,0.8764,0.4258 +0.0000,0.0000,0.0000,0.2515,0.8657,0.4329 +0.0000,0.0000,0.0000,0.2775,0.8541,0.4399 +0.0000,0.0000,0.0000,0.3030,0.8417,0.4470 +0.0000,0.0000,0.0000,0.3280,0.8284,0.4540 +0.0000,0.0000,0.0000,0.3524,0.8144,0.4610 +0.0000,0.0000,0.0000,0.3763,0.7997,0.4679 +0.0000,0.0000,0.0000,0.3995,0.7841,0.4749 +0.0000,0.0000,0.0000,0.4222,0.7679,0.4818 +0.0000,0.0000,0.0000,0.4441,0.7510,0.4886 +0.0000,0.0000,0.0000,0.4654,0.7334,0.4955 +0.0000,0.0000,0.0000,0.4860,0.7152,0.5023 +0.0000,0.0000,0.0000,0.5059,0.6964,0.5090 +0.0000,0.0000,0.0000,0.5251,0.6769,0.5158 +0.0000,0.0000,0.0000,0.5435,0.6570,0.5225 +0.0000,0.0000,0.0000,0.5611,0.6365,0.5292 +0.0000,0.0000,0.0000,0.5780,0.6155,0.5358 +0.0000,0.0000,0.0000,0.5940,0.5940,0.5424 +0.0000,0.0000,0.0000,0.6093,0.5721,0.5490 +0.0000,0.0000,0.0000,0.6237,0.5499,0.5556 +0.0000,0.0000,0.0000,0.6373,0.5272,0.5621 +0.0000,0.0000,0.0000,0.6500,0.5042,0.5686 +0.0000,0.0000,0.0000,0.6619,0.4809,0.5750 +0.0000,0.0000,0.0000,0.6729,0.4573,0.5814 +0.0000,0.0000,0.0000,0.6831,0.4335,0.5878 +0.0000,0.0000,0.0000,0.6924,0.4095,0.5941 +0.0000,0.0000,0.0000,0.7008,0.3852,0.6004 +0.0000,0.0000,0.0000,0.7083,0.3609,0.6067 +0.0000,0.0000,0.0000,0.7150,0.3364,0.6129 +0.0000,0.0000,0.0000,0.7207,0.3119,0.6191 +0.0000,0.0000,0.0000,0.7256,0.2873,0.6252 +0.0000,0.0000,0.0000,0.7296,0.2627,0.6314 +0.0000,0.0000,0.0000,0.7328,0.2381,0.6374 +0.0000,0.0000,0.0000,0.7351,0.2136,0.6435 +0.0000,0.0000,0.0000,0.7365,0.1891,0.6494 +0.0000,0.0000,0.0000,0.7371,0.1648,0.6554 +0.0000,0.0000,0.0000,0.7368,0.1406,0.6613 +0.0000,0.0000,0.0000,0.7357,0.1165,0.6672 +0.0000,0.0000,0.0000,0.7338,0.0927,0.6730 +0.0000,0.0000,0.0000,0.7311,0.0691,0.6788 +0.0000,0.0000,0.0000,0.7275,0.0458,0.6845 +0.0000,0.0000,0.0000,0.7232,0.0227,0.6903 +0.0000,0.0000,0.0000,0.7181,-0.0000,0.6959 diff --git a/scripts/trajectories/full-circle-with-up-and-down-4s-ccw-Vector3.csv b/scripts/trajectories/full-circle-with-up-and-down-4s-ccw-Vector3.csv index 651aa6091cd1f68524ee7a062fc2af2c4ae0e6a8..63108890206963dbde169465283d8eb28796fc68 100644 --- a/scripts/trajectories/full-circle-with-up-and-down-4s-ccw-Vector3.csv +++ b/scripts/trajectories/full-circle-with-up-and-down-4s-ccw-Vector3.csv @@ -1,200 +1,200 @@ -0.0000000000,0.0000000000,0.0000000000,0.7011852264,0.0220356323,0.7126384974 -0.0000000000,0.0000000000,0.0000000000,0.7057114840,0.0443995968,0.7071067691 -0.0000000000,0.0000000000,0.0000000000,0.7094757557,0.0670652017,0.7015314102 -0.0000000000,0.0000000000,0.0000000000,0.7124636769,0.0900050774,0.6959127784 -0.0000000000,0.0000000000,0.0000000000,0.7146614790,0.1131912544,0.6902512312 -0.0000000000,0.0000000000,0.0000000000,0.7160565853,0.1365950853,0.6845471263 -0.0000000000,0.0000000000,0.0000000000,0.7166376114,0.1601874828,0.6788007617 -0.0000000000,0.0000000000,0.0000000000,0.7163942456,0.1839387715,0.6730124950 -0.0000000000,0.0000000000,0.0000000000,0.7153171301,0.2078188211,0.6671827435 -0.0000000000,0.0000000000,0.0000000000,0.7133980989,0.2317970842,0.6613118649 -0.0000000000,0.0000000000,0.0000000000,0.7106301188,0.2558425963,0.6554001570 -0.0000000000,0.0000000000,0.0000000000,0.7070075870,0.2799241245,0.6494480371 -0.0000000000,0.0000000000,0.0000000000,0.7025257945,0.3040100932,0.6434558630 -0.0000000000,0.0000000000,0.0000000000,0.6971811652,0.3280686140,0.6374239922 -0.0000000000,0.0000000000,0.0000000000,0.6909717321,0.3520677686,0.6313527822 -0.0000000000,0.0000000000,0.0000000000,0.6838963628,0.3759752810,0.6252426505 -0.0000000000,0.0000000000,0.0000000000,0.6759552360,0.3997589052,0.6190938950 -0.0000000000,0.0000000000,0.0000000000,0.6671499014,0.4233863056,0.6129069924 -0.0000000000,0.0000000000,0.0000000000,0.6574829817,0.4468251169,0.6066823006 -0.0000000000,0.0000000000,0.0000000000,0.6469584703,0.4700429738,0.6004201770 -0.0000000000,0.0000000000,0.0000000000,0.6355813742,0.4930076003,0.5941210389 -0.0000000000,0.0000000000,0.0000000000,0.6233581901,0.5156869292,0.5877851844 -0.0000000000,0.0000000000,0.0000000000,0.6102966070,0.5380490422,0.5814131498 -0.0000000000,0.0000000000,0.0000000000,0.5964053869,0.5600621700,0.5750051737 -0.0000000000,0.0000000000,0.0000000000,0.5816946030,0.5816948414,0.5685617924 -0.0000000000,0.0000000000,0.0000000000,0.5661755204,0.6029159427,0.5620833039 -0.0000000000,0.0000000000,0.0000000000,0.5498605967,0.6236947179,0.5555701852 -0.0000000000,0.0000000000,0.0000000000,0.5327635407,0.6440008283,0.5490227342 -0.0000000000,0.0000000000,0.0000000000,0.5148991346,0.6638042927,0.5424414873 -0.0000000000,0.0000000000,0.0000000000,0.4962833822,0.6830757856,0.5358267426 -0.0000000000,0.0000000000,0.0000000000,0.4769333005,0.7017864585,0.5291789174 -0.0000000000,0.0000000000,0.0000000000,0.4568672776,0.7199081182,0.5224984884 -0.0000000000,0.0000000000,0.0000000000,0.4361044765,0.7374129295,0.5157858133 -0.0000000000,0.0000000000,0.0000000000,0.4146654308,0.7542741895,0.5090413094 -0.0000000000,0.0000000000,0.0000000000,0.3925714791,0.7704654932,0.5022654533 -0.0000000000,0.0000000000,0.0000000000,0.3698450625,0.7859614491,0.4954585731 -0.0000000000,0.0000000000,0.0000000000,0.3465096951,0.8007374406,0.4886211455 -0.0000000000,0.0000000000,0.0000000000,0.3225897253,0.8147695065,0.4817535877 -0.0000000000,0.0000000000,0.0000000000,0.2981105149,0.8280348182,0.4748562872 -0.0000000000,0.0000000000,0.0000000000,0.2730982900,0.8405112624,0.4679297209 -0.0000000000,0.0000000000,0.0000000000,0.2475801259,0.8521776795,0.4609742761 -0.0000000000,0.0000000000,0.0000000000,0.2215839773,0.8630141020,0.4539903998 -0.0000000000,0.0000000000,0.0000000000,0.1951385140,0.8730012774,0.4469785094 -0.0000000000,0.0000000000,0.0000000000,0.1682732105,0.8821212053,0.4399390519 -0.0000000000,0.0000000000,0.0000000000,0.1410182565,0.8903568387,0.4328724742 -0.0000000000,0.0000000000,0.0000000000,0.1134044901,0.8976923823,0.4257791638 -0.0000000000,0.0000000000,0.0000000000,0.0854633972,0.9041128755,0.4186595976 -0.0000000000,0.0000000000,0.0000000000,0.0572270416,0.9096049666,0.4115142226 -0.0000000000,0.0000000000,0.0000000000,0.0287280418,0.9141559601,0.4043434560 -0.0000000000,0.0000000000,0.0000000000,-0.0000004777,0.9177547097,0.3971477449 -0.0000000000,0.0000000000,0.0000000000,-0.0289249513,0.9203911424,0.3899275362 -0.0000000000,0.0000000000,0.0000000000,-0.0580113828,0.9220564365,0.3826832771 -0.0000000000,0.0000000000,0.0000000000,-0.0872254297,0.9227431417,0.3754154146 -0.0000000000,0.0000000000,0.0000000000,-0.1165324301,0.9224448800,0.3681243956 -0.0000000000,0.0000000000,0.0000000000,-0.1458974332,0.9211566448,0.3608106673 -0.0000000000,0.0000000000,0.0000000000,-0.1752853096,0.9188747406,0.3534746766 -0.0000000000,0.0000000000,0.0000000000,-0.2046606690,0.9155966043,0.3461169004 -0.0000000000,0.0000000000,0.0000000000,-0.2339881063,0.9113211632,0.3387377560 -0.0000000000,0.0000000000,0.0000000000,-0.2632321119,0.9060486555,0.3313377202 -0.0000000000,0.0000000000,0.0000000000,-0.2923570275,0.8997804523,0.3239172399 -0.0000000000,0.0000000000,0.0000000000,-0.3213274479,0.8925194740,0.3164767921 -0.0000000000,0.0000000000,0.0000000000,-0.3501078784,0.8842698336,0.3090168238 -0.0000000000,0.0000000000,0.0000000000,-0.3786629438,0.8750367761,0.3015377820 -0.0000000000,0.0000000000,0.0000000000,-0.4069574177,0.8648272157,0.2940401435 -0.0000000000,0.0000000000,0.0000000000,-0.4349565208,0.8536489606,0.2865243554 -0.0000000000,0.0000000000,0.0000000000,-0.4626255631,0.8415116072,0.2789909244 -0.0000000000,0.0000000000,0.0000000000,-0.4899301231,0.8284254074,0.2714402676 -0.0000000000,0.0000000000,0.0000000000,-0.5168362856,0.8144024611,0.2638728619 -0.0000000000,0.0000000000,0.0000000000,-0.5433104038,0.7994558811,0.2562891841 -0.0000000000,0.0000000000,0.0000000000,-0.5693194270,0.7835999131,0.2486896813 -0.0000000000,0.0000000000,0.0000000000,-0.5948308110,0.7668501735,0.2410748452 -0.0000000000,0.0000000000,0.0000000000,-0.6198124886,0.7492235303,0.2334451526 -0.0000000000,0.0000000000,0.0000000000,-0.6442329884,0.7307378650,0.2258010507 -0.0000000000,0.0000000000,0.0000000000,-0.6680614948,0.7114122510,0.2181430161 -0.0000000000,0.0000000000,0.0000000000,-0.6912680864,0.6912670732,0.2104715407 -0.0000000000,0.0000000000,0.0000000000,-0.7138232589,0.6703236699,0.2027870715 -0.0000000000,0.0000000000,0.0000000000,-0.7356984019,0.6486044526,0.1950900853 -0.0000000000,0.0000000000,0.0000000000,-0.7568657994,0.6261329055,0.1873810887 -0.0000000000,0.0000000000,0.0000000000,-0.7772985697,0.6029336452,0.1796605140 -0.0000000000,0.0000000000,0.0000000000,-0.7969707251,0.5790321231,0.1719288677 -0.0000000000,0.0000000000,0.0000000000,-0.8158569336,0.5544548631,0.1641865969 -0.0000000000,0.0000000000,0.0000000000,-0.8339332938,0.5292291641,0.1564342231 -0.0000000000,0.0000000000,0.0000000000,-0.8511766195,0.5033835173,0.1486721784 -0.0000000000,0.0000000000,0.0000000000,-0.8675647378,0.4769468009,0.1409009844 -0.0000000000,0.0000000000,0.0000000000,-0.8830767274,0.4499491453,0.1331210881 -0.0000000000,0.0000000000,0.0000000000,-0.8976926208,0.4224211276,0.1253329664 -0.0000000000,0.0000000000,0.0000000000,-0.9113935232,0.3943942785,0.1175371334 -0.0000000000,0.0000000000,0.0000000000,-0.9241618514,0.3659006357,0.1097340435 -0.0000000000,0.0000000000,0.0000000000,-0.9359810948,0.3369729817,0.1019241884 -0.0000000000,0.0000000000,0.0000000000,-0.9468359947,0.3076447248,0.0941080377 -0.0000000000,0.0000000000,0.0000000000,-0.9567124248,0.2779496908,0.0862860903 -0.0000000000,0.0000000000,0.0000000000,-0.9655976295,0.2479223609,0.0784588158 -0.0000000000,0.0000000000,0.0000000000,-0.9734799266,0.2175975740,0.0706266984 -0.0000000000,0.0000000000,0.0000000000,-0.9803490639,0.1870106161,0.0627902299 -0.0000000000,0.0000000000,0.0000000000,-0.9861962199,0.1561971456,0.0549498871 -0.0000000000,0.0000000000,0.0000000000,-0.9910134673,0.1251931190,0.0471061580 -0.0000000000,0.0000000000,0.0000000000,-0.9947945476,0.0940347686,0.0392595194 -0.0000000000,0.0000000000,0.0000000000,-0.9975343347,0.0627585277,0.0314104594 -0.0000000000,0.0000000000,0.0000000000,-0.9992291331,0.0314010158,0.0235594604 -0.0000000000,0.0000000000,0.0000000000,-0.9998766184,-0.0000010410,0.0157070104 -0.0000000000,0.0000000000,0.0000000000,-0.9994757175,-0.0314108431,0.0078535900 -0.0000000000,0.0000000000,0.0000000000,-0.9980266690,-0.0627915859,-0.0000003139 -0.0000000000,0.0000000000,0.0000000000,-0.9955311418,-0.0941064879,-0.0078542177 -0.0000000000,0.0000000000,0.0000000000,-0.9919921160,-0.1253188550,-0.0157076381 -0.0000000000,0.0000000000,0.0000000000,-0.9874140024,-0.1563921273,-0.0235600881 -0.0000000000,0.0000000000,0.0000000000,-0.9818023443,-0.1872899532,-0.0314110853 -0.0000000000,0.0000000000,0.0000000000,-0.9751641154,-0.2179761529,-0.0392601453 -0.0000000000,0.0000000000,0.0000000000,-0.9675076008,-0.2484149188,-0.0471067838 -0.0000000000,0.0000000000,0.0000000000,-0.9588424563,-0.2785706818,-0.0549505167 -0.0000000000,0.0000000000,0.0000000000,-0.9491794705,-0.3084083200,-0.0627908558 -0.0000000000,0.0000000000,0.0000000000,-0.9385307431,-0.3378931284,-0.0706273243 -0.0000000000,0.0000000000,0.0000000000,-0.9269098639,-0.3669908643,-0.0784594417 -0.0000000000,0.0000000000,0.0000000000,-0.9143312573,-0.3956677616,-0.0862867162 -0.0000000000,0.0000000000,0.0000000000,-0.9008108377,-0.4238907397,-0.0941086635 -0.0000000000,0.0000000000,0.0000000000,-0.8863657117,-0.4516272545,-0.1019248068 -0.0000000000,0.0000000000,0.0000000000,-0.8710139990,-0.4788454175,-0.1097346693 -0.0000000000,0.0000000000,0.0000000000,-0.8547750711,-0.5055140257,-0.1175377592 -0.0000000000,0.0000000000,0.0000000000,-0.8376694918,-0.5316026807,-0.1253335923 -0.0000000000,0.0000000000,0.0000000000,-0.8197185993,-0.5570816994,-0.1331216991 -0.0000000000,0.0000000000,0.0000000000,-0.8009451628,-0.5819223523,-0.1409015954 -0.0000000000,0.0000000000,0.0000000000,-0.7813727856,-0.6060964465,-0.1486728042 -0.0000000000,0.0000000000,0.0000000000,-0.7610260844,-0.6295772195,-0.1564348340 -0.0000000000,0.0000000000,0.0000000000,-0.7399306297,-0.6523383260,-0.1641872227 -0.0000000000,0.0000000000,0.0000000000,-0.7181128860,-0.6743546724,-0.1719294786 -0.0000000000,0.0000000000,0.0000000000,-0.6956002116,-0.6956020594,-0.1796611249 -0.0000000000,0.0000000000,0.0000000000,-0.6724208593,-0.7160574794,-0.1873816997 -0.0000000000,0.0000000000,0.0000000000,-0.6486039162,-0.7356987596,-0.1950907111 -0.0000000000,0.0000000000,0.0000000000,-0.6241791844,-0.7545047998,-0.2027876824 -0.0000000000,0.0000000000,0.0000000000,-0.5991769433,-0.7724561095,-0.2104721516 -0.0000000000,0.0000000000,0.0000000000,-0.5736284852,-0.7895339131,-0.2181436419 -0.0000000000,0.0000000000,0.0000000000,-0.5475656986,-0.8057205081,-0.2258016616 -0.0000000000,0.0000000000,0.0000000000,-0.5210208297,-0.8209996819,-0.2334457636 -0.0000000000,0.0000000000,0.0000000000,-0.4940268993,-0.8353561759,-0.2410754561 -0.0000000000,0.0000000000,0.0000000000,-0.4666174054,-0.8487763405,-0.2486902922 -0.0000000000,0.0000000000,0.0000000000,-0.4388261437,-0.8612474203,-0.2562897801 -0.0000000000,0.0000000000,0.0000000000,-0.4106874168,-0.8727580309,-0.2638734579 -0.0000000000,0.0000000000,0.0000000000,-0.3822358847,-0.8832980990,-0.2714408636 -0.0000000000,0.0000000000,0.0000000000,-0.3535065055,-0.8928588629,-0.2789915204 -0.0000000000,0.0000000000,0.0000000000,-0.3245343864,-0.9014326334,-0.2865249813 -0.0000000000,0.0000000000,0.0000000000,-0.2953550518,-0.9090134501,-0.2940407395 -0.0000000000,0.0000000000,0.0000000000,-0.2660039663,-0.9155962467,-0.3015383780 -0.0000000000,0.0000000000,0.0000000000,-0.2365168631,-0.9211775064,-0.3090174198 -0.0000000000,0.0000000000,0.0000000000,-0.2069294453,-0.9257549644,-0.3164773881 -0.0000000000,0.0000000000,0.0000000000,-0.1772774160,-0.9293277264,-0.3239178360 -0.0000000000,0.0000000000,0.0000000000,-0.1475965232,-0.9318960309,-0.3313383162 -0.0000000000,0.0000000000,0.0000000000,-0.1179223061,-0.9334616661,-0.3387383521 -0.0000000000,0.0000000000,0.0000000000,-0.0882902741,-0.9340275526,-0.3461174965 -0.0000000000,0.0000000000,0.0000000000,-0.0587356836,-0.9335980415,-0.3534752727 -0.0000000000,0.0000000000,0.0000000000,-0.0292935632,-0.9321787357,-0.3608112633 -0.0000000000,0.0000000000,0.0000000000,0.0000013411,-0.9297763109,-0.3681249917 -0.0000000000,0.0000000000,0.0000000000,0.0291146114,-0.9263990521,-0.3754160106 -0.0000000000,0.0000000000,0.0000000000,0.0580122210,-0.9220561385,-0.3826838732 -0.0000000000,0.0000000000,0.0000000000,0.0866605565,-0.9167584181,-0.3899281323 -0.0000000000,0.0000000000,0.0000000000,0.1150264814,-0.9105175138,-0.3971483409 -0.0000000000,0.0000000000,0.0000000000,0.1430774182,-0.9033464789,-0.4043440521 -0.0000000000,0.0000000000,0.0000000000,0.1707812548,-0.8952593803,-0.4115147889 -0.0000000000,0.0000000000,0.0000000000,0.1981066018,-0.8862716556,-0.4186601937 -0.0000000000,0.0000000000,0.0000000000,0.2250226289,-0.8763996363,-0.4257797301 -0.0000000000,0.0000000000,0.0000000000,0.2514992356,-0.8656610847,-0.4328730404 -0.0000000000,0.0000000000,0.0000000000,0.2775070667,-0.8540742993,-0.4399396181 -0.0000000000,0.0000000000,0.0000000000,0.3030174375,-0.8416591883,-0.4469790757 -0.0000000000,0.0000000000,0.0000000000,0.3280026019,-0.8284361959,-0.4539909363 -0.0000000000,0.0000000000,0.0000000000,0.3524355888,-0.8144270182,-0.4609748125 -0.0000000000,0.0000000000,0.0000000000,0.3762903214,-0.7996541858,-0.4679302573 -0.0000000000,0.0000000000,0.0000000000,0.3995415568,-0.7841412425,-0.4748568535 -0.0000000000,0.0000000000,0.0000000000,0.4221650958,-0.7679124475,-0.4817541242 -0.0000000000,0.0000000000,0.0000000000,0.4441377521,-0.7509930730,-0.4886216819 -0.0000000000,0.0000000000,0.0000000000,0.4654371440,-0.7334088683,-0.4954591393 -0.0000000000,0.0000000000,0.0000000000,0.4860421419,-0.7151867151,-0.5022659898 -0.0000000000,0.0000000000,0.0000000000,0.5059324503,-0.6963538527,-0.5090418458 -0.0000000000,0.0000000000,0.0000000000,0.5250892043,-0.6769385338,-0.5157863498 -0.0000000000,0.0000000000,0.0000000000,0.5434942245,-0.6569693685,-0.5224990249 -0.0000000000,0.0000000000,0.0000000000,0.5611307621,-0.6364756823,-0.5291794538 -0.0000000000,0.0000000000,0.0000000000,0.5779830813,-0.6154873371,-0.5358272791 -0.0000000000,0.0000000000,0.0000000000,0.5940366983,-0.5940345526,-0.5424420238 -0.0000000000,0.0000000000,0.0000000000,0.6092782021,-0.5721482635,-0.5490232706 -0.0000000000,0.0000000000,0.0000000000,0.6236953139,-0.5498594046,-0.5555707216 -0.0000000000,0.0000000000,0.0000000000,0.6372772455,-0.5271996856,-0.5620838404 -0.0000000000,0.0000000000,0.0000000000,0.6500141621,-0.5042008162,-0.5685623288 -0.0000000000,0.0000000000,0.0000000000,0.6618976593,-0.4808949232,-0.5750057101 -0.0000000000,0.0000000000,0.0000000000,0.6729202867,-0.4573143721,-0.5814136267 -0.0000000000,0.0000000000,0.0000000000,0.6830761433,-0.4334915578,-0.5877857208 -0.0000000000,0.0000000000,0.0000000000,0.6923604012,-0.4094590545,-0.5941215158 -0.0000000000,0.0000000000,0.0000000000,0.7007694244,-0.3852495253,-0.6004207134 -0.0000000000,0.0000000000,0.0000000000,0.7083009481,-0.3608956933,-0.6066828370 -0.0000000000,0.0000000000,0.0000000000,0.7149538994,-0.3364301324,-0.6129075289 -0.0000000000,0.0000000000,0.0000000000,0.7207285166,-0.3118854463,-0.6190944314 -0.0000000000,0.0000000000,0.0000000000,0.7256260514,-0.2872940600,-0.6252431273 -0.0000000000,0.0000000000,0.0000000000,0.7296491861,-0.2626882493,-0.6313532591 -0.0000000000,0.0000000000,0.0000000000,0.7328017950,-0.2381001264,-0.6374244690 -0.0000000000,0.0000000000,0.0000000000,0.7350887656,-0.2135614604,-0.6434563398 -0.0000000000,0.0000000000,0.0000000000,0.7365164161,-0.1891037226,-0.6494485140 -0.0000000000,0.0000000000,0.0000000000,0.7370921373,-0.1647580713,-0.6554006338 -0.0000000000,0.0000000000,0.0000000000,0.7368244529,-0.1405552477,-0.6613123417 -0.0000000000,0.0000000000,0.0000000000,0.7357230186,-0.1165255532,-0.6671832204 -0.0000000000,0.0000000000,0.0000000000,0.7337986827,-0.0926988199,-0.6730129719 -0.0000000000,0.0000000000,0.0000000000,0.7310632467,-0.0691043213,-0.6788011789 -0.0000000000,0.0000000000,0.0000000000,0.7275298238,-0.0457707942,-0.6845475435 -0.0000000000,0.0000000000,0.0000000000,0.7232123613,-0.0227263644,-0.6902517080 -0.0000000000,0.0000000000,0.0000000000,0.7181258798,0.0000014953,-0.6959132552 +0.0000,0.0000,0.0000,0.7012,0.0220,0.7126 +0.0000,0.0000,0.0000,0.7057,0.0444,0.7071 +0.0000,0.0000,0.0000,0.7095,0.0671,0.7015 +0.0000,0.0000,0.0000,0.7125,0.0900,0.6959 +0.0000,0.0000,0.0000,0.7147,0.1132,0.6903 +0.0000,0.0000,0.0000,0.7161,0.1366,0.6845 +0.0000,0.0000,0.0000,0.7166,0.1602,0.6788 +0.0000,0.0000,0.0000,0.7164,0.1839,0.6730 +0.0000,0.0000,0.0000,0.7153,0.2078,0.6672 +0.0000,0.0000,0.0000,0.7134,0.2318,0.6613 +0.0000,0.0000,0.0000,0.7106,0.2558,0.6554 +0.0000,0.0000,0.0000,0.7070,0.2799,0.6494 +0.0000,0.0000,0.0000,0.7025,0.3040,0.6435 +0.0000,0.0000,0.0000,0.6972,0.3281,0.6374 +0.0000,0.0000,0.0000,0.6910,0.3521,0.6314 +0.0000,0.0000,0.0000,0.6839,0.3760,0.6252 +0.0000,0.0000,0.0000,0.6760,0.3998,0.6191 +0.0000,0.0000,0.0000,0.6671,0.4234,0.6129 +0.0000,0.0000,0.0000,0.6575,0.4468,0.6067 +0.0000,0.0000,0.0000,0.6470,0.4700,0.6004 +0.0000,0.0000,0.0000,0.6356,0.4930,0.5941 +0.0000,0.0000,0.0000,0.6234,0.5157,0.5878 +0.0000,0.0000,0.0000,0.6103,0.5380,0.5814 +0.0000,0.0000,0.0000,0.5964,0.5601,0.5750 +0.0000,0.0000,0.0000,0.5817,0.5817,0.5686 +0.0000,0.0000,0.0000,0.5662,0.6029,0.5621 +0.0000,0.0000,0.0000,0.5499,0.6237,0.5556 +0.0000,0.0000,0.0000,0.5328,0.6440,0.5490 +0.0000,0.0000,0.0000,0.5149,0.6638,0.5424 +0.0000,0.0000,0.0000,0.4963,0.6831,0.5358 +0.0000,0.0000,0.0000,0.4769,0.7018,0.5292 +0.0000,0.0000,0.0000,0.4569,0.7199,0.5225 +0.0000,0.0000,0.0000,0.4361,0.7374,0.5158 +0.0000,0.0000,0.0000,0.4147,0.7543,0.5090 +0.0000,0.0000,0.0000,0.3926,0.7705,0.5023 +0.0000,0.0000,0.0000,0.3698,0.7860,0.4955 +0.0000,0.0000,0.0000,0.3465,0.8007,0.4886 +0.0000,0.0000,0.0000,0.3226,0.8148,0.4818 +0.0000,0.0000,0.0000,0.2981,0.8280,0.4749 +0.0000,0.0000,0.0000,0.2731,0.8405,0.4679 +0.0000,0.0000,0.0000,0.2476,0.8522,0.4610 +0.0000,0.0000,0.0000,0.2216,0.8630,0.4540 +0.0000,0.0000,0.0000,0.1951,0.8730,0.4470 +0.0000,0.0000,0.0000,0.1683,0.8821,0.4399 +0.0000,0.0000,0.0000,0.1410,0.8904,0.4329 +0.0000,0.0000,0.0000,0.1134,0.8977,0.4258 +0.0000,0.0000,0.0000,0.0855,0.9041,0.4187 +0.0000,0.0000,0.0000,0.0572,0.9096,0.4115 +0.0000,0.0000,0.0000,0.0287,0.9142,0.4043 +0.0000,0.0000,0.0000,-0.0000,0.9178,0.3971 +0.0000,0.0000,0.0000,-0.0289,0.9204,0.3899 +0.0000,0.0000,0.0000,-0.0580,0.9221,0.3827 +0.0000,0.0000,0.0000,-0.0872,0.9227,0.3754 +0.0000,0.0000,0.0000,-0.1165,0.9224,0.3681 +0.0000,0.0000,0.0000,-0.1459,0.9212,0.3608 +0.0000,0.0000,0.0000,-0.1753,0.9189,0.3535 +0.0000,0.0000,0.0000,-0.2047,0.9156,0.3461 +0.0000,0.0000,0.0000,-0.2340,0.9113,0.3387 +0.0000,0.0000,0.0000,-0.2632,0.9060,0.3313 +0.0000,0.0000,0.0000,-0.2924,0.8998,0.3239 +0.0000,0.0000,0.0000,-0.3213,0.8925,0.3165 +0.0000,0.0000,0.0000,-0.3501,0.8843,0.3090 +0.0000,0.0000,0.0000,-0.3787,0.8750,0.3015 +0.0000,0.0000,0.0000,-0.4070,0.8648,0.2940 +0.0000,0.0000,0.0000,-0.4350,0.8536,0.2865 +0.0000,0.0000,0.0000,-0.4626,0.8415,0.2790 +0.0000,0.0000,0.0000,-0.4899,0.8284,0.2714 +0.0000,0.0000,0.0000,-0.5168,0.8144,0.2639 +0.0000,0.0000,0.0000,-0.5433,0.7995,0.2563 +0.0000,0.0000,0.0000,-0.5693,0.7836,0.2487 +0.0000,0.0000,0.0000,-0.5948,0.7669,0.2411 +0.0000,0.0000,0.0000,-0.6198,0.7492,0.2334 +0.0000,0.0000,0.0000,-0.6442,0.7307,0.2258 +0.0000,0.0000,0.0000,-0.6681,0.7114,0.2181 +0.0000,0.0000,0.0000,-0.6913,0.6913,0.2105 +0.0000,0.0000,0.0000,-0.7138,0.6703,0.2028 +0.0000,0.0000,0.0000,-0.7357,0.6486,0.1951 +0.0000,0.0000,0.0000,-0.7569,0.6261,0.1874 +0.0000,0.0000,0.0000,-0.7773,0.6029,0.1797 +0.0000,0.0000,0.0000,-0.7970,0.5790,0.1719 +0.0000,0.0000,0.0000,-0.8159,0.5545,0.1642 +0.0000,0.0000,0.0000,-0.8339,0.5292,0.1564 +0.0000,0.0000,0.0000,-0.8512,0.5034,0.1487 +0.0000,0.0000,0.0000,-0.8676,0.4769,0.1409 +0.0000,0.0000,0.0000,-0.8831,0.4499,0.1331 +0.0000,0.0000,0.0000,-0.8977,0.4224,0.1253 +0.0000,0.0000,0.0000,-0.9114,0.3944,0.1175 +0.0000,0.0000,0.0000,-0.9242,0.3659,0.1097 +0.0000,0.0000,0.0000,-0.9360,0.3370,0.1019 +0.0000,0.0000,0.0000,-0.9468,0.3076,0.0941 +0.0000,0.0000,0.0000,-0.9567,0.2779,0.0863 +0.0000,0.0000,0.0000,-0.9656,0.2479,0.0785 +0.0000,0.0000,0.0000,-0.9735,0.2176,0.0706 +0.0000,0.0000,0.0000,-0.9803,0.1870,0.0628 +0.0000,0.0000,0.0000,-0.9862,0.1562,0.0549 +0.0000,0.0000,0.0000,-0.9910,0.1252,0.0471 +0.0000,0.0000,0.0000,-0.9948,0.0940,0.0393 +0.0000,0.0000,0.0000,-0.9975,0.0628,0.0314 +0.0000,0.0000,0.0000,-0.9992,0.0314,0.0236 +0.0000,0.0000,0.0000,-0.9999,-0.0000,0.0157 +0.0000,0.0000,0.0000,-0.9995,-0.0314,0.0079 +0.0000,0.0000,0.0000,-0.9980,-0.0628,-0.0000 +0.0000,0.0000,0.0000,-0.9955,-0.0941,-0.0079 +0.0000,0.0000,0.0000,-0.9920,-0.1253,-0.0157 +0.0000,0.0000,0.0000,-0.9874,-0.1564,-0.0236 +0.0000,0.0000,0.0000,-0.9818,-0.1873,-0.0314 +0.0000,0.0000,0.0000,-0.9752,-0.2180,-0.0393 +0.0000,0.0000,0.0000,-0.9675,-0.2484,-0.0471 +0.0000,0.0000,0.0000,-0.9588,-0.2786,-0.0550 +0.0000,0.0000,0.0000,-0.9492,-0.3084,-0.0628 +0.0000,0.0000,0.0000,-0.9385,-0.3379,-0.0706 +0.0000,0.0000,0.0000,-0.9269,-0.3670,-0.0785 +0.0000,0.0000,0.0000,-0.9143,-0.3957,-0.0863 +0.0000,0.0000,0.0000,-0.9008,-0.4239,-0.0941 +0.0000,0.0000,0.0000,-0.8864,-0.4516,-0.1019 +0.0000,0.0000,0.0000,-0.8710,-0.4788,-0.1097 +0.0000,0.0000,0.0000,-0.8548,-0.5055,-0.1175 +0.0000,0.0000,0.0000,-0.8377,-0.5316,-0.1253 +0.0000,0.0000,0.0000,-0.8197,-0.5571,-0.1331 +0.0000,0.0000,0.0000,-0.8009,-0.5819,-0.1409 +0.0000,0.0000,0.0000,-0.7814,-0.6061,-0.1487 +0.0000,0.0000,0.0000,-0.7610,-0.6296,-0.1564 +0.0000,0.0000,0.0000,-0.7399,-0.6523,-0.1642 +0.0000,0.0000,0.0000,-0.7181,-0.6744,-0.1719 +0.0000,0.0000,0.0000,-0.6956,-0.6956,-0.1797 +0.0000,0.0000,0.0000,-0.6724,-0.7161,-0.1874 +0.0000,0.0000,0.0000,-0.6486,-0.7357,-0.1951 +0.0000,0.0000,0.0000,-0.6242,-0.7545,-0.2028 +0.0000,0.0000,0.0000,-0.5992,-0.7725,-0.2105 +0.0000,0.0000,0.0000,-0.5736,-0.7895,-0.2181 +0.0000,0.0000,0.0000,-0.5476,-0.8057,-0.2258 +0.0000,0.0000,0.0000,-0.5210,-0.8210,-0.2334 +0.0000,0.0000,0.0000,-0.4940,-0.8354,-0.2411 +0.0000,0.0000,0.0000,-0.4666,-0.8488,-0.2487 +0.0000,0.0000,0.0000,-0.4388,-0.8612,-0.2563 +0.0000,0.0000,0.0000,-0.4107,-0.8728,-0.2639 +0.0000,0.0000,0.0000,-0.3822,-0.8833,-0.2714 +0.0000,0.0000,0.0000,-0.3535,-0.8929,-0.2790 +0.0000,0.0000,0.0000,-0.3245,-0.9014,-0.2865 +0.0000,0.0000,0.0000,-0.2954,-0.9090,-0.2940 +0.0000,0.0000,0.0000,-0.2660,-0.9156,-0.3015 +0.0000,0.0000,0.0000,-0.2365,-0.9212,-0.3090 +0.0000,0.0000,0.0000,-0.2069,-0.9258,-0.3165 +0.0000,0.0000,0.0000,-0.1773,-0.9293,-0.3239 +0.0000,0.0000,0.0000,-0.1476,-0.9319,-0.3313 +0.0000,0.0000,0.0000,-0.1179,-0.9335,-0.3387 +0.0000,0.0000,0.0000,-0.0883,-0.9340,-0.3461 +0.0000,0.0000,0.0000,-0.0587,-0.9336,-0.3535 +0.0000,0.0000,0.0000,-0.0293,-0.9322,-0.3608 +0.0000,0.0000,0.0000,0.0000,-0.9298,-0.3681 +0.0000,0.0000,0.0000,0.0291,-0.9264,-0.3754 +0.0000,0.0000,0.0000,0.0580,-0.9221,-0.3827 +0.0000,0.0000,0.0000,0.0867,-0.9168,-0.3899 +0.0000,0.0000,0.0000,0.1150,-0.9105,-0.3971 +0.0000,0.0000,0.0000,0.1431,-0.9033,-0.4043 +0.0000,0.0000,0.0000,0.1708,-0.8953,-0.4115 +0.0000,0.0000,0.0000,0.1981,-0.8863,-0.4187 +0.0000,0.0000,0.0000,0.2250,-0.8764,-0.4258 +0.0000,0.0000,0.0000,0.2515,-0.8657,-0.4329 +0.0000,0.0000,0.0000,0.2775,-0.8541,-0.4399 +0.0000,0.0000,0.0000,0.3030,-0.8417,-0.4470 +0.0000,0.0000,0.0000,0.3280,-0.8284,-0.4540 +0.0000,0.0000,0.0000,0.3524,-0.8144,-0.4610 +0.0000,0.0000,0.0000,0.3763,-0.7997,-0.4679 +0.0000,0.0000,0.0000,0.3995,-0.7841,-0.4749 +0.0000,0.0000,0.0000,0.4222,-0.7679,-0.4818 +0.0000,0.0000,0.0000,0.4441,-0.7510,-0.4886 +0.0000,0.0000,0.0000,0.4654,-0.7334,-0.4955 +0.0000,0.0000,0.0000,0.4860,-0.7152,-0.5023 +0.0000,0.0000,0.0000,0.5059,-0.6964,-0.5090 +0.0000,0.0000,0.0000,0.5251,-0.6769,-0.5158 +0.0000,0.0000,0.0000,0.5435,-0.6570,-0.5225 +0.0000,0.0000,0.0000,0.5611,-0.6365,-0.5292 +0.0000,0.0000,0.0000,0.5780,-0.6155,-0.5358 +0.0000,0.0000,0.0000,0.5940,-0.5940,-0.5424 +0.0000,0.0000,0.0000,0.6093,-0.5721,-0.5490 +0.0000,0.0000,0.0000,0.6237,-0.5499,-0.5556 +0.0000,0.0000,0.0000,0.6373,-0.5272,-0.5621 +0.0000,0.0000,0.0000,0.6500,-0.5042,-0.5686 +0.0000,0.0000,0.0000,0.6619,-0.4809,-0.5750 +0.0000,0.0000,0.0000,0.6729,-0.4573,-0.5814 +0.0000,0.0000,0.0000,0.6831,-0.4335,-0.5878 +0.0000,0.0000,0.0000,0.6924,-0.4095,-0.5941 +0.0000,0.0000,0.0000,0.7008,-0.3852,-0.6004 +0.0000,0.0000,0.0000,0.7083,-0.3609,-0.6067 +0.0000,0.0000,0.0000,0.7150,-0.3364,-0.6129 +0.0000,0.0000,0.0000,0.7207,-0.3119,-0.6191 +0.0000,0.0000,0.0000,0.7256,-0.2873,-0.6252 +0.0000,0.0000,0.0000,0.7296,-0.2627,-0.6314 +0.0000,0.0000,0.0000,0.7328,-0.2381,-0.6374 +0.0000,0.0000,0.0000,0.7351,-0.2136,-0.6435 +0.0000,0.0000,0.0000,0.7365,-0.1891,-0.6494 +0.0000,0.0000,0.0000,0.7371,-0.1648,-0.6554 +0.0000,0.0000,0.0000,0.7368,-0.1406,-0.6613 +0.0000,0.0000,0.0000,0.7357,-0.1165,-0.6672 +0.0000,0.0000,0.0000,0.7338,-0.0927,-0.6730 +0.0000,0.0000,0.0000,0.7311,-0.0691,-0.6788 +0.0000,0.0000,0.0000,0.7275,-0.0458,-0.6845 +0.0000,0.0000,0.0000,0.7232,-0.0227,-0.6903 +0.0000,0.0000,0.0000,0.7181,0.0000,-0.6959 diff --git a/scripts/trajectories/full-circle-with-up-and-down-4s-ccw.csv b/scripts/trajectories/full-circle-with-up-and-down-4s-ccw.csv index 70adc65a497389ecc737ad212a06aa0e6640c9d4..1e4a316720c584ee96394a65340d0e6726332552 100644 --- a/scripts/trajectories/full-circle-with-up-and-down-4s-ccw.csv +++ b/scripts/trajectories/full-circle-with-up-and-down-4s-ccw.csv @@ -1,800 +1,800 @@ -0.9222757816,-0.0000000000,-0.3863478601,0.0119463364 -0.9222757816,-0.0000000000,-0.3863478601,0.0119463364 -0.9222757816,-0.0000000000,-0.3863478601,0.0119463364 -0.9222757816,-0.0000000000,-0.3863478601,0.0119463364 -0.9235018492,-0.0000000000,-0.3828399181,0.0240387134 -0.9235018492,-0.0000000000,-0.3828399181,0.0240387134 -0.9235018492,-0.0000000000,-0.3828399181,0.0240387134 -0.9235018492,-0.0000000000,-0.3828399181,0.0240387134 -0.9245203137,-0.0000000000,-0.3794029355,0.0362702720 -0.9245203137,-0.0000000000,-0.3794029355,0.0362702720 -0.9245203137,-0.0000000000,-0.3794029355,0.0362702720 -0.9245203137,-0.0000000000,-0.3794029355,0.0362702720 -0.9253279567,-0.0000000000,-0.3760357499,0.0486341491 -0.9253279567,-0.0000000000,-0.3760357499,0.0486341491 -0.9253279567,-0.0000000000,-0.3760357499,0.0486341491 -0.9253279567,-0.0000000000,-0.3760357499,0.0486341491 -0.9259215593,-0.0000000000,-0.3727374375,0.0611235648 -0.9259215593,-0.0000000000,-0.3727374375,0.0611235648 -0.9259215593,-0.0000000000,-0.3727374375,0.0611235648 -0.9259215593,-0.0000000000,-0.3727374375,0.0611235648 -0.9262982011,-0.0000000000,-0.3695068955,0.0737317055 -0.9262982011,-0.0000000000,-0.3695068955,0.0737317055 -0.9262982011,-0.0000000000,-0.3695068955,0.0737317055 -0.9262982011,-0.0000000000,-0.3695068955,0.0737317055 -0.9264549613,-0.0000000000,-0.3663431108,0.0864518434 -0.9264549613,-0.0000000000,-0.3663431108,0.0864518434 -0.9264549613,-0.0000000000,-0.3663431108,0.0864518434 -0.9264549613,-0.0000000000,-0.3663431108,0.0864518434 -0.9263893366,-0.0000000000,-0.3632450104,0.0992772654 -0.9263893366,-0.0000000000,-0.3632450104,0.0992772654 -0.9263893366,-0.0000000000,-0.3632450104,0.0992772654 -0.9263893366,-0.0000000000,-0.3632450104,0.0992772654 -0.9260985851,-0.0000000000,-0.3602115214,0.1122012436 -0.9260985851,-0.0000000000,-0.3602115214,0.1122012436 -0.9260985851,-0.0000000000,-0.3602115214,0.1122012436 -0.9260985851,-0.0000000000,-0.3602115214,0.1122012436 -0.9255803227,-0.0000000000,-0.3572416902,0.1252171397 -0.9255803227,-0.0000000000,-0.3572416902,0.1252171397 -0.9255803227,-0.0000000000,-0.3572416902,0.1252171397 -0.9255803227,-0.0000000000,-0.3572416902,0.1252171397 -0.9248324037,-0.0000000000,-0.3543345034,0.1383183450 -0.9248324037,-0.0000000000,-0.3543345034,0.1383183450 -0.9248324037,-0.0000000000,-0.3543345034,0.1383183450 -0.9248324037,-0.0000000000,-0.3543345034,0.1383183450 -0.9238527417,-0.0000000000,-0.3514889479,0.1514982432 -0.9238527417,-0.0000000000,-0.3514889479,0.1514982432 -0.9238527417,-0.0000000000,-0.3514889479,0.1514982432 -0.9238527417,-0.0000000000,-0.3514889479,0.1514982432 -0.9226390719,-0.0000000000,-0.3487039804,0.1647502780 -0.9226390719,-0.0000000000,-0.3487039804,0.1647502780 -0.9226390719,-0.0000000000,-0.3487039804,0.1647502780 -0.9226390719,-0.0000000000,-0.3487039804,0.1647502780 -0.9211897850,-0.0000000000,-0.3459786773,0.1780678928 -0.9211897850,-0.0000000000,-0.3459786773,0.1780678928 -0.9211897850,-0.0000000000,-0.3459786773,0.1780678928 -0.9211897850,-0.0000000000,-0.3459786773,0.1780678928 -0.9195030928,-0.0000000000,-0.3433119655,0.1914445907 -0.9195030928,-0.0000000000,-0.3433119655,0.1914445907 -0.9195030928,-0.0000000000,-0.3433119655,0.1914445907 -0.9195030928,-0.0000000000,-0.3433119655,0.1914445907 -0.9175773859,-0.0000000000,-0.3407030106,0.2048739046 -0.9175773859,-0.0000000000,-0.3407030106,0.2048739046 -0.9175773859,-0.0000000000,-0.3407030106,0.2048739046 -0.9175773859,-0.0000000000,-0.3407030106,0.2048739046 -0.9154112339,-0.0000000000,-0.3381507397,0.2183493823 -0.9154112339,-0.0000000000,-0.3381507397,0.2183493823 -0.9154112339,-0.0000000000,-0.3381507397,0.2183493823 -0.9154112339,-0.0000000000,-0.3381507397,0.2183493823 -0.9130033255,-0.0000000000,-0.3356543481,0.2318646312 -0.9130033255,-0.0000000000,-0.3356543481,0.2318646312 -0.9130033255,-0.0000000000,-0.3356543481,0.2318646312 -0.9130033255,-0.0000000000,-0.3356543481,0.2318646312 -0.9103524089,-0.0000000000,-0.3332128823,0.2454132736 -0.9103524089,-0.0000000000,-0.3332128823,0.2454132736 -0.9103524089,-0.0000000000,-0.3332128823,0.2454132736 -0.9103524089,-0.0000000000,-0.3332128823,0.2454132736 -0.9074575305,-0.0000000000,-0.3308254778,0.2589889467 -0.9074575305,-0.0000000000,-0.3308254778,0.2589889467 -0.9074575305,-0.0000000000,-0.3308254778,0.2589889467 -0.9074575305,-0.0000000000,-0.3308254778,0.2589889467 -0.9043177962,-0.0000000000,-0.3284913003,0.2725853622 -0.9043177962,-0.0000000000,-0.3284913003,0.2725853622 -0.9043177962,-0.0000000000,-0.3284913003,0.2725853622 -0.9043177962,-0.0000000000,-0.3284913003,0.2725853622 -0.9009323716,-0.0000000000,-0.3262094259,0.2861962914 -0.9009323716,-0.0000000000,-0.3262094259,0.2861962914 -0.9009323716,-0.0000000000,-0.3262094259,0.2861962914 -0.9009323716,-0.0000000000,-0.3262094259,0.2861962914 -0.8973005414,-0.0000000000,-0.3239790499,0.2998153865 -0.8973005414,-0.0000000000,-0.3239790499,0.2998153865 -0.8973005414,-0.0000000000,-0.3239790499,0.2998153865 -0.8973005414,-0.0000000000,-0.3239790499,0.2998153865 -0.8934219480,-0.0000000000,-0.3217993677,0.3134365678 -0.8934219480,-0.0000000000,-0.3217993677,0.3134365678 -0.8934219480,-0.0000000000,-0.3217993677,0.3134365678 -0.8934219480,-0.0000000000,-0.3217993677,0.3134365678 -0.8892959952,-0.0000000000,-0.3196696341,0.3270535767 -0.8892959952,-0.0000000000,-0.3196696341,0.3270535767 -0.8892959952,-0.0000000000,-0.3196696341,0.3270535767 -0.8892959952,-0.0000000000,-0.3196696341,0.3270535767 -0.8849224448,-0.0000000000,-0.3175890148,0.3406603336 -0.8849224448,-0.0000000000,-0.3175890148,0.3406603336 -0.8849224448,-0.0000000000,-0.3175890148,0.3406603336 -0.8849224448,-0.0000000000,-0.3175890148,0.3406603336 -0.8803012967,-0.0000000000,-0.3155568540,0.3542507291 -0.8803012967,-0.0000000000,-0.3155568540,0.3542507291 -0.8803012967,-0.0000000000,-0.3155568540,0.3542507291 -0.8803012967,-0.0000000000,-0.3155568540,0.3542507291 -0.8754323125,-0.0000000000,-0.3135723472,0.3678187430 -0.8754323125,-0.0000000000,-0.3135723472,0.3678187430 -0.8754323125,-0.0000000000,-0.3135723472,0.3678187430 -0.8754323125,-0.0000000000,-0.3135723472,0.3678187430 -0.8703157306,-0.0000000000,-0.3116348386,0.3813582659 -0.8703157306,-0.0000000000,-0.3116348386,0.3813582659 -0.8703157306,-0.0000000000,-0.3116348386,0.3813582659 -0.8703157306,-0.0000000000,-0.3116348386,0.3813582659 -0.8649518490,-0.0000000000,-0.3097436726,0.3948634863 -0.8649518490,-0.0000000000,-0.3097436726,0.3948634863 -0.8649518490,-0.0000000000,-0.3097436726,0.3948634863 -0.8649518490,-0.0000000000,-0.3097436726,0.3948634863 -0.8593408465,-0.0000000000,-0.3078981638,0.4083283842 -0.8593408465,-0.0000000000,-0.3078981638,0.4083283842 -0.8593408465,-0.0000000000,-0.3078981638,0.4083283842 -0.8593408465,-0.0000000000,-0.3078981638,0.4083283842 -0.8534832597,-0.0000000000,-0.3060976863,0.4217470884 -0.8534832597,-0.0000000000,-0.3060976863,0.4217470884 -0.8534832597,-0.0000000000,-0.3060976863,0.4217470884 -0.8534832597,-0.0000000000,-0.3060976863,0.4217470884 -0.8473796248,-0.0000000000,-0.3043416440,0.4351136684 -0.8473796248,-0.0000000000,-0.3043416440,0.4351136684 -0.8473796248,-0.0000000000,-0.3043416440,0.4351136684 -0.8473796248,-0.0000000000,-0.3043416440,0.4351136684 -0.8410307169,-0.0000000000,-0.3026294112,0.4484224617 -0.8410307169,-0.0000000000,-0.3026294112,0.4484224617 -0.8410307169,-0.0000000000,-0.3026294112,0.4484224617 -0.8410307169,-0.0000000000,-0.3026294112,0.4484224617 -0.8344373703,-0.0000000000,-0.3009605408,0.4616676569 -0.8344373703,-0.0000000000,-0.3009605408,0.4616676569 -0.8344373703,-0.0000000000,-0.3009605408,0.4616676569 -0.8344373703,-0.0000000000,-0.3009605408,0.4616676569 -0.8276004195,-0.0000000000,-0.2993344069,0.4748435318 -0.8276004195,-0.0000000000,-0.2993344069,0.4748435318 -0.8276004195,-0.0000000000,-0.2993344069,0.4748435318 -0.8276004195,-0.0000000000,-0.2993344069,0.4748435318 -0.8205211163,-0.0000000000,-0.2977505326,0.4879444838 -0.8205211163,-0.0000000000,-0.2977505326,0.4879444838 -0.8205211163,-0.0000000000,-0.2977505326,0.4879444838 -0.8205211163,-0.0000000000,-0.2977505326,0.4879444838 -0.8132003546,-0.0000000000,-0.2962084115,0.5009647608 -0.8132003546,-0.0000000000,-0.2962084115,0.5009647608 -0.8132003546,-0.0000000000,-0.2962084115,0.5009647608 -0.8132003546,-0.0000000000,-0.2962084115,0.5009647608 -0.8056396842,-0.0000000000,-0.2947076261,0.5138990283 -0.8056396842,-0.0000000000,-0.2947076261,0.5138990283 -0.8056396842,-0.0000000000,-0.2947076261,0.5138990283 -0.8056396842,-0.0000000000,-0.2947076261,0.5138990283 -0.7978402376,-0.0000000000,-0.2932477295,0.5267415643 -0.7978402376,-0.0000000000,-0.2932477295,0.5267415643 -0.7978402376,-0.0000000000,-0.2932477295,0.5267415643 -0.7978402376,-0.0000000000,-0.2932477295,0.5267415643 -0.7898038626,-0.0000000000,-0.2918283343,0.5394869447 -0.7898038626,-0.0000000000,-0.2918283343,0.5394869447 -0.7898038626,-0.0000000000,-0.2918283343,0.5394869447 -0.7898038626,-0.0000000000,-0.2918283343,0.5394869447 -0.7815317512,-0.0000000000,-0.2904490530,0.5521298051 -0.7815317512,-0.0000000000,-0.2904490530,0.5521298051 -0.7815317512,-0.0000000000,-0.2904490530,0.5521298051 -0.7815317512,-0.0000000000,-0.2904490530,0.5521298051 -0.7730259895,-0.0000000000,-0.2891096175,0.5646648407 -0.7730259895,-0.0000000000,-0.2891096175,0.5646648407 -0.7730259895,-0.0000000000,-0.2891096175,0.5646648407 -0.7730259895,-0.0000000000,-0.2891096175,0.5646648407 -0.7642883062,-0.0000000000,-0.2878096104,0.5770866871 -0.7642883062,-0.0000000000,-0.2878096104,0.5770866871 -0.7642883062,-0.0000000000,-0.2878096104,0.5770866871 -0.7642883062,-0.0000000000,-0.2878096104,0.5770866871 -0.7553205490,-0.0000000000,-0.2865488529,0.5893900394 -0.7553205490,-0.0000000000,-0.2865488529,0.5893900394 -0.7553205490,-0.0000000000,-0.2865488529,0.5893900394 -0.7553205490,-0.0000000000,-0.2865488529,0.5893900394 -0.7461248636,-0.0000000000,-0.2853270471,0.6015698314 -0.7461248636,-0.0000000000,-0.2853270471,0.6015698314 -0.7461248636,-0.0000000000,-0.2853270471,0.6015698314 -0.7461248636,-0.0000000000,-0.2853270471,0.6015698314 -0.7367032766,-0.0000000000,-0.2841439843,0.6136208177 -0.7367032766,-0.0000000000,-0.2841439843,0.6136208177 -0.7367032766,-0.0000000000,-0.2841439843,0.6136208177 -0.7367032766,-0.0000000000,-0.2841439843,0.6136208177 -0.7270581126,-0.0000000000,-0.2829995453,0.6255379915 -0.7270581126,-0.0000000000,-0.2829995453,0.6255379915 -0.7270581126,-0.0000000000,-0.2829995453,0.6255379915 -0.7270581126,-0.0000000000,-0.2829995453,0.6255379915 -0.7171917558,-0.0000000000,-0.2818935513,0.6373162866 -0.7171917558,-0.0000000000,-0.2818935513,0.6373162866 -0.7171917558,-0.0000000000,-0.2818935513,0.6373162866 -0.7171917558,-0.0000000000,-0.2818935513,0.6373162866 -0.7071066499,-0.0000000000,-0.2808259428,0.6489507556 -0.7071066499,-0.0000000000,-0.2808259428,0.6489507556 -0.7071066499,-0.0000000000,-0.2808259428,0.6489507556 -0.7071066499,-0.0000000000,-0.2808259428,0.6489507556 -0.6968052387,-0.0000000000,-0.2797966599,0.6604364514 -0.6968052387,-0.0000000000,-0.2797966599,0.6604364514 -0.6968052387,-0.0000000000,-0.2797966599,0.6604364514 -0.6968052387,-0.0000000000,-0.2797966599,0.6604364514 -0.6862902045,-0.0000000000,-0.2788057327,0.6717686057 -0.6862902045,-0.0000000000,-0.2788057327,0.6717686057 -0.6862902045,-0.0000000000,-0.2788057327,0.6717686057 -0.6862902045,-0.0000000000,-0.2788057327,0.6717686057 -0.6755643487,-0.0000000000,-0.2778531611,0.6829423904 -0.6755643487,-0.0000000000,-0.2778531611,0.6829423904 -0.6755643487,-0.0000000000,-0.2778531611,0.6829423904 -0.6755643487,-0.0000000000,-0.2778531611,0.6829423904 -0.6646305919,-0.0000000000,-0.2769391537,0.6939531565 -0.6646305919,-0.0000000000,-0.2769391537,0.6939531565 -0.6646305919,-0.0000000000,-0.2769391537,0.6939531565 -0.6646305919,-0.0000000000,-0.2769391537,0.6939531565 -0.6534916162,-0.0000000000,-0.2760637403,0.7047960758 -0.6534916162,-0.0000000000,-0.2760637403,0.7047960758 -0.6534916162,-0.0000000000,-0.2760637403,0.7047960758 -0.6534916162,-0.0000000000,-0.2760637403,0.7047960758 -0.6421505213,-0.0000000000,-0.2752272487,0.7154667377 -0.6421505213,-0.0000000000,-0.2752272487,0.7154667377 -0.6421505213,-0.0000000000,-0.2752272487,0.7154667377 -0.6421505213,-0.0000000000,-0.2752272487,0.7154667377 -0.6306105256,-0.0000000000,-0.2744299769,0.7259603739 -0.6306105256,-0.0000000000,-0.2744299769,0.7259603739 -0.6306105256,-0.0000000000,-0.2744299769,0.7259603739 -0.6306105256,-0.0000000000,-0.2744299769,0.7259603739 -0.6188747287,-0.0000000000,-0.2736723125,0.7362727523 -0.6188747287,-0.0000000000,-0.2736723125,0.7362727523 -0.6188747287,-0.0000000000,-0.2736723125,0.7362727523 -0.6188747287,-0.0000000000,-0.2736723125,0.7362727523 -0.6069463491,-0.0000000000,-0.2729546726,0.7463992238 -0.6069463491,-0.0000000000,-0.2729546726,0.7463992238 -0.6069463491,-0.0000000000,-0.2729546726,0.7463992238 -0.6069463491,-0.0000000000,-0.2729546726,0.7463992238 -0.5948289633,-0.0000000000,-0.2722776830,0.7563355565 -0.5948289633,-0.0000000000,-0.2722776830,0.7563355565 -0.5948289633,-0.0000000000,-0.2722776830,0.7563355565 -0.5948289633,-0.0000000000,-0.2722776830,0.7563355565 -0.5825257301,-0.0000000000,-0.2716419101,0.7660772800 -0.5825257301,-0.0000000000,-0.2716419101,0.7660772800 -0.5825257301,-0.0000000000,-0.2716419101,0.7660772800 -0.5825257301,-0.0000000000,-0.2716419101,0.7660772800 -0.5700403452,-0.0000000000,-0.2710481882,0.7756203413 -0.5700403452,-0.0000000000,-0.2710481882,0.7756203413 -0.5700403452,-0.0000000000,-0.2710481882,0.7756203413 -0.5700403452,-0.0000000000,-0.2710481882,0.7756203413 -0.5573765039,-0.0000000000,-0.2704974115,0.7849603295 -0.5573765039,-0.0000000000,-0.2704974115,0.7849603295 -0.5573765039,-0.0000000000,-0.2704974115,0.7849603295 -0.5573765039,-0.0000000000,-0.2704974115,0.7849603295 -0.5445376635,-0.0000000000,-0.2699906230,0.7940930128 -0.5445376635,-0.0000000000,-0.2699906230,0.7940930128 -0.5445376635,-0.0000000000,-0.2699906230,0.7940930128 -0.5445376635,-0.0000000000,-0.2699906230,0.7940930128 -0.5315276980,-0.0000000000,-0.2695291042,0.8030145168 -0.5315276980,-0.0000000000,-0.2695291042,0.8030145168 -0.5315276980,-0.0000000000,-0.2695291042,0.8030145168 -0.5315276980,-0.0000000000,-0.2695291042,0.8030145168 -0.5183504820,-0.0000000000,-0.2691141665,0.8117206693 -0.5183504820,-0.0000000000,-0.2691141665,0.8117206693 -0.5183504820,-0.0000000000,-0.2691141665,0.8117206693 -0.5183504820,-0.0000000000,-0.2691141665,0.8117206693 -0.5050098300,-0.0000000000,-0.2687475085,0.8202072382 -0.5050098300,-0.0000000000,-0.2687475085,0.8202072382 -0.5050098300,-0.0000000000,-0.2687475085,0.8202072382 -0.5050098300,-0.0000000000,-0.2687475085,0.8202072382 -0.4915096760,-0.0000000000,-0.2684309483,0.8284702897 -0.4915096760,-0.0000000000,-0.2684309483,0.8284702897 -0.4915096760,-0.0000000000,-0.2684309483,0.8284702897 -0.4915096760,-0.0000000000,-0.2684309483,0.8284702897 -0.4778543711,-0.0000000000,-0.2681666315,0.8365057707 -0.4778543711,-0.0000000000,-0.2681666315,0.8365057707 -0.4778543711,-0.0000000000,-0.2681666315,0.8365057707 -0.4778543711,-0.0000000000,-0.2681666315,0.8365057707 -0.4640476406,-0.0000000000,-0.2679570317,0.8443096876 -0.4640476406,-0.0000000000,-0.2679570317,0.8443096876 -0.4640476406,-0.0000000000,-0.2679570317,0.8443096876 -0.4640476406,-0.0000000000,-0.2679570317,0.8443096876 -0.4500938952,-0.0000000000,-0.2678050101,0.8518778682 -0.4500938952,-0.0000000000,-0.2678050101,0.8518778682 -0.4500938952,-0.0000000000,-0.2678050101,0.8518778682 -0.4500938952,-0.0000000000,-0.2678050101,0.8518778682 -0.4359973967,-0.0000000000,-0.2677139044,0.8592063189 -0.4359973967,-0.0000000000,-0.2677139044,0.8592063189 -0.4359973967,-0.0000000000,-0.2677139044,0.8592063189 -0.4359973967,-0.0000000000,-0.2677139044,0.8592063189 -0.4217623472,-0.0000000000,-0.2676874995,0.8662908673 -0.4217623472,-0.0000000000,-0.2676874995,0.8662908673 -0.4217623472,-0.0000000000,-0.2676874995,0.8662908673 -0.4217623472,-0.0000000000,-0.2676874995,0.8662908673 -0.4073931873,-0.0000000000,-0.2677303255,0.8731273413 -0.4073931873,-0.0000000000,-0.2677303255,0.8731273413 -0.4073931873,-0.0000000000,-0.2677303255,0.8731273413 -0.4073931873,-0.0000000000,-0.2677303255,0.8731273413 -0.3928943276,-0.0000000000,-0.2678475082,0.8797112107 -0.3928943276,-0.0000000000,-0.2678475082,0.8797112107 -0.3928943276,-0.0000000000,-0.2678475082,0.8797112107 -0.3928943276,-0.0000000000,-0.2678475082,0.8797112107 -0.3782702088,-0.0000000000,-0.2680452168,0.8860380054 -0.3782702088,-0.0000000000,-0.2680452168,0.8860380054 -0.3782702088,-0.0000000000,-0.2680452168,0.8860380054 -0.3782702088,-0.0000000000,-0.2680452168,0.8860380054 -0.3635255098,-0.0000000000,-0.2683306634,0.8921030760 -0.3635255098,-0.0000000000,-0.2683306634,0.8921030760 -0.3635255098,-0.0000000000,-0.2683306634,0.8921030760 -0.3635255098,-0.0000000000,-0.2683306634,0.8921030760 -0.3486646712,-0.0000000000,-0.2687124312,0.8979011774 -0.3486646712,-0.0000000000,-0.2687124312,0.8979011774 -0.3486646712,-0.0000000000,-0.2687124312,0.8979011774 -0.3486646712,-0.0000000000,-0.2687124312,0.8979011774 -0.3336924613,-0.0000000000,-0.2692006826,0.9034270048 -0.3336924613,-0.0000000000,-0.2692006826,0.9034270048 -0.3336924613,-0.0000000000,-0.2692006826,0.9034270048 -0.3336924613,-0.0000000000,-0.2692006826,0.9034270048 -0.3186135888,-0.0000000000,-0.2698077559,0.9086743593 -0.3186135888,-0.0000000000,-0.2698077559,0.9086743593 -0.3186135888,-0.0000000000,-0.2698077559,0.9086743593 -0.3186135888,-0.0000000000,-0.2698077559,0.9086743593 -0.3034328222,-0.0000000000,-0.2705484629,0.9136367440 -0.3034328222,-0.0000000000,-0.2705484629,0.9136367440 -0.3034328222,-0.0000000000,-0.2705484629,0.9136367440 -0.3034328222,-0.0000000000,-0.2705484629,0.9136367440 -0.2881550193,-0.0000000000,-0.2714410722,0.9183063507 -0.2881550193,-0.0000000000,-0.2714410722,0.9183063507 -0.2881550193,-0.0000000000,-0.2714410722,0.9183063507 -0.2881550193,-0.0000000000,-0.2714410722,0.9183063507 -0.2727850676,-0.0000000000,-0.2725079060,0.9226742387 -0.2727850676,-0.0000000000,-0.2725079060,0.9226742387 -0.2727850676,-0.0000000000,-0.2725079060,0.9226742387 -0.2727850676,-0.0000000000,-0.2725079060,0.9226742387 -0.2573277950,-0.0000000000,-0.2737772465,0.9267299771 -0.2573277950,-0.0000000000,-0.2737772465,0.9267299771 -0.2573277950,-0.0000000000,-0.2737772465,0.9267299771 -0.2573277950,-0.0000000000,-0.2737772465,0.9267299771 -0.2417882979,-0.0000000000,-0.2752842903,0.9304606318 -0.2417882979,-0.0000000000,-0.2752842903,0.9304606318 -0.2417882979,-0.0000000000,-0.2752842903,0.9304606318 -0.2417882979,-0.0000000000,-0.2752842903,0.9304606318 -0.2261718065,-0.0000000000,-0.2770746648,0.9338500500 -0.2261718065,-0.0000000000,-0.2770746648,0.9338500500 -0.2261718065,-0.0000000000,-0.2770746648,0.9338500500 -0.2261718065,-0.0000000000,-0.2770746648,0.9338500500 -0.2104833573,-0.0000000000,-0.2792077065,0.9368777275 -0.2104833573,-0.0000000000,-0.2792077065,0.9368777275 -0.2104833573,-0.0000000000,-0.2792077065,0.9368777275 -0.2104833573,-0.0000000000,-0.2792077065,0.9368777275 -0.1947282255,-0.0000000000,-0.2817620933,0.9395163655 -0.1947282255,-0.0000000000,-0.2817620933,0.9395163655 -0.1947282255,-0.0000000000,-0.2817620933,0.9395163655 -0.1947282255,-0.0000000000,-0.2817620933,0.9395163655 -0.1789117306,-0.0000000000,-0.2848447859,0.9417293072 -0.1789117306,-0.0000000000,-0.2848447859,0.9417293072 -0.1789117306,-0.0000000000,-0.2848447859,0.9417293072 -0.1789117306,-0.0000000000,-0.2848447859,0.9417293072 -0.1630396843,-0.0000000000,-0.2886043489,0.9434646368 -0.1630396843,-0.0000000000,-0.2886043489,0.9434646368 -0.1630396843,-0.0000000000,-0.2886043489,0.9434646368 -0.1630396843,-0.0000000000,-0.2886043489,0.9434646368 -0.1471180767,-0.0000000000,-0.2932541966,0.9446471930 -0.1471180767,-0.0000000000,-0.2932541966,0.9446471930 -0.1471180767,-0.0000000000,-0.2932541966,0.9446471930 -0.1471180767,-0.0000000000,-0.2932541966,0.9446471930 -0.1311532110,-0.0000000000,-0.2991109490,0.9451620579 -0.1311532110,-0.0000000000,-0.2991109490,0.9451620579 -0.1311532110,-0.0000000000,-0.2991109490,0.9451620579 -0.1311532110,-0.0000000000,-0.2991109490,0.9451620579 -0.1151522323,-0.0000000000,-0.3066666424,0.9448257089 -0.1151522323,-0.0000000000,-0.3066666424,0.9448257089 -0.1151522323,-0.0000000000,-0.3066666424,0.9448257089 -0.1151522323,-0.0000000000,-0.3066666424,0.9448257089 -0.0991233587,-0.0000000000,-0.3167278171,0.9433228970 -0.0991233587,-0.0000000000,-0.3167278171,0.9433228970 -0.0991233587,-0.0000000000,-0.3167278171,0.9433228970 -0.0991233587,-0.0000000000,-0.3167278171,0.9433228970 -0.0830775797,-0.0000000000,-0.3307140470,0.9400672317 -0.0830775797,-0.0000000000,-0.3307140470,0.9400672317 -0.0830775797,-0.0000000000,-0.3307140470,0.9400672317 -0.0830775797,-0.0000000000,-0.3307140470,0.9400672317 -0.0670318305,-0.0000000000,-0.3513715565,0.9338333607 -0.0670318305,-0.0000000000,-0.3513715565,0.9338333607 -0.0670318305,-0.0000000000,-0.3513715565,0.9338333607 -0.0670318305,-0.0000000000,-0.3513715565,0.9338333607 -0.0510168225,-0.0000000000,-0.3847688437,0.9216019511 -0.0510168225,-0.0000000000,-0.3847688437,0.9216019511 -0.0510168225,-0.0000000000,-0.3847688437,0.9216019511 -0.0510168225,-0.0000000000,-0.3847688437,0.9216019511 -0.0351117216,-0.0000000000,-0.4472931623,0.8936978579 -0.0351117216,-0.0000000000,-0.4472931623,0.8936978579 -0.0351117216,-0.0000000000,-0.4472931623,0.8936978579 -0.0351117216,-0.0000000000,-0.4472931623,0.8936978579 -0.0196313690,-0.0000000000,-0.6000261307,0.7997394800 -0.0196313690,-0.0000000000,-0.6000261307,0.7997394800 -0.0196313690,-0.0000000000,-0.6000261307,0.7997394800 -0.0196313690,-0.0000000000,-0.6000261307,0.7997394800 -0.0078511564,-0.0000000000,-0.9999691844,-0.0000662721 -0.0078511564,-0.0000000000,-0.9999691844,-0.0000662721 -0.0078511564,-0.0000000000,-0.9999691844,-0.0000662721 -0.0078511564,-0.0000000000,-0.9999691844,-0.0000662721 -0.0161905438,-0.0000000000,-0.2425293773,-0.9700089097 -0.0161905438,-0.0000000000,-0.2425293773,-0.9700089097 -0.0161905438,-0.0000000000,-0.2425293773,-0.9700089097 -0.0161905438,-0.0000000000,-0.2425293773,-0.9700089097 -0.0314111710,-0.0000000000,0.0000049969,-0.9995065331 -0.0314111710,-0.0000000000,0.0000049969,-0.9995065331 -0.0314111710,-0.0000000000,0.0000049969,-0.9995065331 -0.0314111710,-0.0000000000,0.0000049969,-0.9995065331 -0.0472698174,-0.0000000000,0.0830788091,-0.9954212308 -0.0472698174,-0.0000000000,0.0830788091,-0.9954212308 -0.0472698174,-0.0000000000,0.0830788091,-0.9954212308 -0.0472698174,-0.0000000000,0.0830788091,-0.9954212308 -0.0632764176,-0.0000000000,0.1241190061,-0.9902476668 -0.0632764176,-0.0000000000,0.1241190061,-0.9902476668 -0.0632764176,-0.0000000000,0.1241190061,-0.9902476668 -0.0632764176,-0.0000000000,0.1241190061,-0.9902476668 -0.0793284476,-0.0000000000,0.1484971792,-0.9857259393 -0.0793284476,-0.0000000000,0.1484971792,-0.9857259393 -0.0793284476,-0.0000000000,0.1484971792,-0.9857259393 -0.0793284476,-0.0000000000,0.1484971792,-0.9857259393 -0.0953877345,-0.0000000000,0.1646493524,-0.9817289114 -0.0953877345,-0.0000000000,0.1646493524,-0.9817289114 -0.0953877345,-0.0000000000,0.1646493524,-0.9817289114 -0.0953877345,-0.0000000000,0.1646493524,-0.9817289114 -0.1114358082,-0.0000000000,0.1761558354,-0.9780343175 -0.1114358082,-0.0000000000,0.1761558354,-0.9780343175 -0.1114358082,-0.0000000000,0.1761558354,-0.9780343175 -0.1114358082,-0.0000000000,0.1761558354,-0.9780343175 -0.1274603605,-0.0000000000,0.1847896427,-0.9744775891 -0.1274603605,-0.0000000000,0.1847896427,-0.9744775891 -0.1274603605,-0.0000000000,0.1847896427,-0.9744775891 -0.1274603605,-0.0000000000,0.1847896427,-0.9744775891 -0.1434530020,-0.0000000000,0.1915278584,-0.9709471464 -0.1434530020,-0.0000000000,0.1915278584,-0.9709471464 -0.1434530020,-0.0000000000,0.1915278584,-0.9709471464 -0.1434530020,-0.0000000000,0.1915278584,-0.9709471464 -0.1594059318,-0.0000000000,0.1969525814,-0.9673672318 -0.1594059318,-0.0000000000,0.1969525814,-0.9673672318 -0.1594059318,-0.0000000000,0.1969525814,-0.9673672318 -0.1594059318,-0.0000000000,0.1969525814,-0.9673672318 -0.1753128022,-0.0000000000,0.2014321983,-0.9636858106 -0.1753128022,-0.0000000000,0.2014321983,-0.9636858106 -0.1753128022,-0.0000000000,0.2014321983,-0.9636858106 -0.1753128022,-0.0000000000,0.2014321983,-0.9636858106 -0.1911675930,-0.0000000000,0.2052110285,-0.9598662853 -0.1911675930,-0.0000000000,0.2052110285,-0.9598662853 -0.1911675930,-0.0000000000,0.2052110285,-0.9598662853 -0.1911675930,-0.0000000000,0.2052110285,-0.9598662853 -0.2069646567,-0.0000000000,0.2084576041,-0.9558823705 -0.2069646567,-0.0000000000,0.2084576041,-0.9558823705 -0.2069646567,-0.0000000000,0.2084576041,-0.9558823705 -0.2069646567,-0.0000000000,0.2084576041,-0.9558823705 -0.2226982713,-0.0000000000,0.2112917453,-0.9517148733 -0.2226982713,-0.0000000000,0.2112917453,-0.9517148733 -0.2226982713,-0.0000000000,0.2112917453,-0.9517148733 -0.2226982713,-0.0000000000,0.2112917453,-0.9517148733 -0.2383634448,-0.0000000000,0.2138012201,-0.9473499060 -0.2383634448,-0.0000000000,0.2138012201,-0.9473499060 -0.2383634448,-0.0000000000,0.2138012201,-0.9473499060 -0.2383634448,-0.0000000000,0.2138012201,-0.9473499060 -0.2539547086,-0.0000000000,0.2160516232,-0.9427770972 -0.2539547086,-0.0000000000,0.2160516232,-0.9427770972 -0.2539547086,-0.0000000000,0.2160516232,-0.9427770972 -0.2539547086,-0.0000000000,0.2160516232,-0.9427770972 -0.2694668770,-0.0000000000,0.2180930376,-0.9379887581 -0.2694668770,-0.0000000000,0.2180930376,-0.9379887581 -0.2694668770,-0.0000000000,0.2180930376,-0.9379887581 -0.2694668770,-0.0000000000,0.2180930376,-0.9379887581 -0.2848951221,-0.0000000000,0.2199643701,-0.9329793453 -0.2848951221,-0.0000000000,0.2199643701,-0.9329793453 -0.2848951221,-0.0000000000,0.2199643701,-0.9329793453 -0.2848951221,-0.0000000000,0.2199643701,-0.9329793453 -0.3002344072,-0.0000000000,0.2216962725,-0.9277446270 -0.3002344072,-0.0000000000,0.2216962725,-0.9277446270 -0.3002344072,-0.0000000000,0.2216962725,-0.9277446270 -0.3002344072,-0.0000000000,0.2216962725,-0.9277446270 -0.3154796362,-0.0000000000,0.2233132571,-0.9222818017 -0.3154796362,-0.0000000000,0.2233132571,-0.9222818017 -0.3154796362,-0.0000000000,0.2233132571,-0.9222818017 -0.3154796362,-0.0000000000,0.2233132571,-0.9222818017 -0.3306260109,-0.0000000000,0.2248352915,-0.9165890813 -0.3306260109,-0.0000000000,0.2248352915,-0.9165890813 -0.3306260109,-0.0000000000,0.2248352915,-0.9165890813 -0.3306260109,-0.0000000000,0.2248352915,-0.9165890813 -0.3456688523,-0.0000000000,0.2262784690,-0.9106652737 -0.3456688523,-0.0000000000,0.2262784690,-0.9106652737 -0.3456688523,-0.0000000000,0.2262784690,-0.9106652737 -0.3456688523,-0.0000000000,0.2262784690,-0.9106652737 -0.3606031835,-0.0000000000,0.2276563197,-0.9045097232 -0.3606031835,-0.0000000000,0.2276563197,-0.9045097232 -0.3606031835,-0.0000000000,0.2276563197,-0.9045097232 -0.3606031835,-0.0000000000,0.2276563197,-0.9045097232 -0.3754244745,-0.0000000000,0.2289800793,-0.8981227875 -0.3754244745,-0.0000000000,0.2289800793,-0.8981227875 -0.3754244745,-0.0000000000,0.2289800793,-0.8981227875 -0.3754244745,-0.0000000000,0.2289800793,-0.8981227875 -0.3901280463,-0.0000000000,0.2302591801,-0.8915048242 -0.3901280463,-0.0000000000,0.2302591801,-0.8915048242 -0.3901280463,-0.0000000000,0.2302591801,-0.8915048242 -0.3901280463,-0.0000000000,0.2302591801,-0.8915048242 -0.4047092199,-0.0000000000,0.2315016240,-0.8846566677 -0.4047092199,-0.0000000000,0.2315016240,-0.8846566677 -0.4047092199,-0.0000000000,0.2315016240,-0.8846566677 -0.4047092199,-0.0000000000,0.2315016240,-0.8846566677 -0.4191634655,-0.0000000000,0.2327143252,-0.8775796294 -0.4191634655,-0.0000000000,0.2327143252,-0.8775796294 -0.4191634655,-0.0000000000,0.2327143252,-0.8775796294 -0.4191634655,-0.0000000000,0.2327143252,-0.8775796294 -0.4334862530,-0.0000000000,0.2339031994,-0.8702751994 -0.4334862530,-0.0000000000,0.2339031994,-0.8702751994 -0.4334862530,-0.0000000000,0.2339031994,-0.8702751994 -0.4334862530,-0.0000000000,0.2339031994,-0.8702751994 -0.4476734400,-0.0000000000,0.2350732982,-0.8627449870 -0.4476734400,-0.0000000000,0.2350732982,-0.8627449870 -0.4476734400,-0.0000000000,0.2350732982,-0.8627449870 -0.4476734400,-0.0000000000,0.2350732982,-0.8627449870 -0.4617204368,-0.0000000000,0.2362291366,-0.8549913168 -0.4617204368,-0.0000000000,0.2362291366,-0.8549913168 -0.4617204368,-0.0000000000,0.2362291366,-0.8549913168 -0.4617204368,-0.0000000000,0.2362291366,-0.8549913168 -0.4756228626,-0.0000000000,0.2373746485,-0.8470160365 -0.4756228626,-0.0000000000,0.2373746485,-0.8470160365 -0.4756228626,-0.0000000000,0.2373746485,-0.8470160365 -0.4756228626,-0.0000000000,0.2373746485,-0.8470160365 -0.4893767238,-0.0000000000,0.2385133356,-0.8388217092 -0.4893767238,-0.0000000000,0.2385133356,-0.8388217092 -0.4893767238,-0.0000000000,0.2385133356,-0.8388217092 -0.4893767238,-0.0000000000,0.2385133356,-0.8388217092 -0.5029776692,-0.0000000000,0.2396482825,-0.8304108381 -0.5029776692,-0.0000000000,0.2396482825,-0.8304108381 -0.5029776692,-0.0000000000,0.2396482825,-0.8304108381 -0.5029776692,-0.0000000000,0.2396482825,-0.8304108381 -0.5164215565,-0.0000000000,0.2407822460,-0.8217862844 -0.5164215565,-0.0000000000,0.2407822460,-0.8217862844 -0.5164215565,-0.0000000000,0.2407822460,-0.8217862844 -0.5164215565,-0.0000000000,0.2407822460,-0.8217862844 -0.5297045708,-0.0000000000,0.2419176549,-0.8129507303 -0.5297045708,-0.0000000000,0.2419176549,-0.8129507303 -0.5297045708,-0.0000000000,0.2419176549,-0.8129507303 -0.5297045708,-0.0000000000,0.2419176549,-0.8129507303 -0.5428224802,-0.0000000000,0.2430568635,-0.8039073944 -0.5428224802,-0.0000000000,0.2430568635,-0.8039073944 -0.5428224802,-0.0000000000,0.2430568635,-0.8039073944 -0.5428224802,-0.0000000000,0.2430568635,-0.8039073944 -0.5557715893,-0.0000000000,0.2442018241,-0.7946592569 -0.5557715893,-0.0000000000,0.2442018241,-0.7946592569 -0.5557715893,-0.0000000000,0.2442018241,-0.7946592569 -0.5557715893,-0.0000000000,0.2442018241,-0.7946592569 -0.5685479045,-0.0000000000,0.2453544289,-0.7852097750 -0.5685479045,-0.0000000000,0.2453544289,-0.7852097750 -0.5685479045,-0.0000000000,0.2453544289,-0.7852097750 -0.5685479045,-0.0000000000,0.2453544289,-0.7852097750 -0.5811477900,-0.0000000000,0.2465164512,-0.7755622864 -0.5811477900,-0.0000000000,0.2465164512,-0.7755622864 -0.5811477900,-0.0000000000,0.2465164512,-0.7755622864 -0.5811477900,-0.0000000000,0.2465164512,-0.7755622864 -0.5935676098,-0.0000000000,0.2476893663,-0.7657203078 -0.5935676098,-0.0000000000,0.2476893663,-0.7657203078 -0.5935676098,-0.0000000000,0.2476893663,-0.7657203078 -0.5935676098,-0.0000000000,0.2476893663,-0.7657203078 -0.6058036089,-0.0000000000,0.2488746941,-0.7556873560 -0.6058036089,-0.0000000000,0.2488746941,-0.7556873560 -0.6058036089,-0.0000000000,0.2488746941,-0.7556873560 -0.6058036089,-0.0000000000,0.2488746941,-0.7556873560 -0.6178523898,-0.0000000000,0.2500738204,-0.7454673052 -0.6178523898,-0.0000000000,0.2500738204,-0.7454673052 -0.6178523898,-0.0000000000,0.2500738204,-0.7454673052 -0.6178523898,-0.0000000000,0.2500738204,-0.7454673052 -0.6297104359,-0.0000000000,0.2512880266,-0.7350639701 -0.6297104359,-0.0000000000,0.2512880266,-0.7350639701 -0.6297104359,-0.0000000000,0.2512880266,-0.7350639701 -0.6297104359,-0.0000000000,0.2512880266,-0.7350639701 -0.6413745284,-0.0000000000,0.2525184751,-0.7244813442 -0.6413745284,-0.0000000000,0.2525184751,-0.7244813442 -0.6413745284,-0.0000000000,0.2525184751,-0.7244813442 -0.6413745284,-0.0000000000,0.2525184751,-0.7244813442 -0.6528412700,-0.0000000000,0.2537663579,-0.7137233019 -0.6528412700,-0.0000000000,0.2537663579,-0.7137233019 -0.6528412700,-0.0000000000,0.2537663579,-0.7137233019 -0.6528412700,-0.0000000000,0.2537663579,-0.7137233019 -0.6641075611,-0.0000000000,0.2550327480,-0.7027940154 -0.6641075611,-0.0000000000,0.2550327480,-0.7027940154 -0.6641075611,-0.0000000000,0.2550327480,-0.7027940154 -0.6641075611,-0.0000000000,0.2550327480,-0.7027940154 -0.6751702428,-0.0000000000,0.2563186884,-0.6916978359 -0.6751702428,-0.0000000000,0.2563186884,-0.6916978359 -0.6751702428,-0.0000000000,0.2563186884,-0.6916978359 -0.6751702428,-0.0000000000,0.2563186884,-0.6916978359 -0.6860263348,-0.0000000000,0.2576251626,-0.6804389358 -0.6860263348,-0.0000000000,0.2576251626,-0.6804389358 -0.6860263348,-0.0000000000,0.2576251626,-0.6804389358 -0.6860263348,-0.0000000000,0.2576251626,-0.6804389358 -0.6966729760,-0.0000000000,0.2589530945,-0.6690217257 -0.6966729760,-0.0000000000,0.2589530945,-0.6690217257 -0.6966729760,-0.0000000000,0.2589530945,-0.6690217257 -0.6966729760,-0.0000000000,0.2589530945,-0.6690217257 -0.7071072459,-0.0000000000,0.2603034973,-0.6574506760 -0.7071072459,-0.0000000000,0.2603034973,-0.6574506760 -0.7071072459,-0.0000000000,0.2603034973,-0.6574506760 -0.7071072459,-0.0000000000,0.2603034973,-0.6574506760 -0.7173264623,-0.0000000000,0.2616772056,-0.6457303762 -0.7173264623,-0.0000000000,0.2616772056,-0.6457303762 -0.7173264623,-0.0000000000,0.2616772056,-0.6457303762 -0.7173264623,-0.0000000000,0.2616772056,-0.6457303762 -0.7273280621,-0.0000000000,0.2630751729,-0.6338654160 -0.7273280621,-0.0000000000,0.2630751729,-0.6338654160 -0.7273280621,-0.0000000000,0.2630751729,-0.6338654160 -0.7273280621,-0.0000000000,0.2630751729,-0.6338654160 -0.7371094227,-0.0000000000,0.2644981444,-0.6218605042 -0.7371094227,-0.0000000000,0.2644981444,-0.6218605042 -0.7371094227,-0.0000000000,0.2644981444,-0.6218605042 -0.7371094227,-0.0000000000,0.2644981444,-0.6218605042 -0.7466681004,-0.0000000000,0.2659470439,-0.6097203493 -0.7466681004,-0.0000000000,0.2659470439,-0.6097203493 -0.7466681004,-0.0000000000,0.2659470439,-0.6097203493 -0.7466681004,-0.0000000000,0.2659470439,-0.6097203493 -0.7560017705,-0.0000000000,0.2674226761,-0.5974499583 -0.7560017705,-0.0000000000,0.2674226761,-0.5974499583 -0.7560017705,-0.0000000000,0.2674226761,-0.5974499583 -0.7560017705,-0.0000000000,0.2674226761,-0.5974499583 -0.7651082873,-0.0000000000,0.2689258754,-0.5850540996 -0.7651082873,-0.0000000000,0.2689258754,-0.5850540996 -0.7651082873,-0.0000000000,0.2689258754,-0.5850540996 -0.7651082873,-0.0000000000,0.2689258754,-0.5850540996 -0.7739853859,-0.0000000000,0.2704574466,-0.5725377798 -0.7739853859,-0.0000000000,0.2704574466,-0.5725377798 -0.7739853859,-0.0000000000,0.2704574466,-0.5725377798 -0.7739853859,-0.0000000000,0.2704574466,-0.5725377798 -0.7826309800,-0.0000000000,0.2720181942,-0.5599060655 -0.7826309800,-0.0000000000,0.2720181942,-0.5599060655 -0.7826309800,-0.0000000000,0.2720181942,-0.5599060655 -0.7826309800,-0.0000000000,0.2720181942,-0.5599060655 -0.7910433412,-0.0000000000,0.2736089230,-0.5471641421 -0.7910433412,-0.0000000000,0.2736089230,-0.5471641421 -0.7910433412,-0.0000000000,0.2736089230,-0.5471641421 -0.7910433412,-0.0000000000,0.2736089230,-0.5471641421 -0.7992206216,-0.0000000000,0.2752304375,-0.5343170762 -0.7992206216,-0.0000000000,0.2752304375,-0.5343170762 -0.7992206216,-0.0000000000,0.2752304375,-0.5343170762 -0.7992206216,-0.0000000000,0.2752304375,-0.5343170762 -0.8071609139,-0.0000000000,0.2768835127,-0.5213701725 -0.8071609139,-0.0000000000,0.2768835127,-0.5213701725 -0.8071609139,-0.0000000000,0.2768835127,-0.5213701725 -0.8071609139,-0.0000000000,0.2768835127,-0.5213701725 -0.8148627281,-0.0000000000,0.2785689533,-0.5083286762 -0.8148627281,-0.0000000000,0.2785689533,-0.5083286762 -0.8148627281,-0.0000000000,0.2785689533,-0.5083286762 -0.8148627281,-0.0000000000,0.2785689533,-0.5083286762 -0.8223246336,-0.0000000000,0.2802876234,-0.4951979816 -0.8223246336,-0.0000000000,0.2802876234,-0.4951979816 -0.8223246336,-0.0000000000,0.2802876234,-0.4951979816 -0.8223246336,-0.0000000000,0.2802876234,-0.4951979816 -0.8295451403,-0.0000000000,0.2820402682,-0.4819835722 -0.8295451403,-0.0000000000,0.2820402682,-0.4819835722 -0.8295451403,-0.0000000000,0.2820402682,-0.4819835722 -0.8295451403,-0.0000000000,0.2820402682,-0.4819835722 -0.8365230560,-0.0000000000,0.2838277221,-0.4686907828 -0.8365230560,-0.0000000000,0.2838277221,-0.4686907828 -0.8365230560,-0.0000000000,0.2838277221,-0.4686907828 -0.8365230560,-0.0000000000,0.2838277221,-0.4686907828 -0.8432571292,-0.0000000000,0.2856507897,-0.4553252459 -0.8432571292,-0.0000000000,0.2856507897,-0.4553252459 -0.8432571292,-0.0000000000,0.2856507897,-0.4553252459 -0.8432571292,-0.0000000000,0.2856507897,-0.4553252459 -0.8497463465,-0.0000000000,0.2875103056,-0.4418924749 -0.8497463465,-0.0000000000,0.2875103056,-0.4418924749 -0.8497463465,-0.0000000000,0.2875103056,-0.4418924749 -0.8497463465,-0.0000000000,0.2875103056,-0.4418924749 -0.8559898734,-0.0000000000,0.2894071341,-0.4283981323 -0.8559898734,-0.0000000000,0.2894071341,-0.4283981323 -0.8559898734,-0.0000000000,0.2894071341,-0.4283981323 -0.8559898734,-0.0000000000,0.2894071341,-0.4283981323 -0.8619866371,-0.0000000000,0.2913420498,-0.4148478508 -0.8619866371,-0.0000000000,0.2913420498,-0.4148478508 -0.8619866371,-0.0000000000,0.2913420498,-0.4148478508 -0.8619866371,-0.0000000000,0.2913420498,-0.4148478508 -0.8677362800,-0.0000000000,0.2933160067,-0.4012474120 -0.8677362800,-0.0000000000,0.2933160067,-0.4012474120 -0.8677362800,-0.0000000000,0.2933160067,-0.4012474120 -0.8677362800,-0.0000000000,0.2933160067,-0.4012474120 -0.8732380271,-0.0000000000,0.2953297496,-0.3876025379 -0.8732380271,-0.0000000000,0.2953297496,-0.3876025379 -0.8732380271,-0.0000000000,0.2953297496,-0.3876025379 -0.8732380271,-0.0000000000,0.2953297496,-0.3876025379 -0.8784913421,-0.0000000000,0.2973842621,-0.3739190698 -0.8784913421,-0.0000000000,0.2973842621,-0.3739190698 -0.8784913421,-0.0000000000,0.2973842621,-0.3739190698 -0.8784913421,-0.0000000000,0.2973842621,-0.3739190698 -0.8834961057,-0.0000000000,0.2994803786,-0.3602029085 -0.8834961057,-0.0000000000,0.2994803786,-0.3602029085 -0.8834961057,-0.0000000000,0.2994803786,-0.3602029085 -0.8834961057,-0.0000000000,0.2994803786,-0.3602029085 -0.8882519603,-0.0000000000,0.3016189933,-0.3464599252 -0.8882519603,-0.0000000000,0.3016189933,-0.3464599252 -0.8882519603,-0.0000000000,0.3016189933,-0.3464599252 -0.8882519603,-0.0000000000,0.3016189933,-0.3464599252 -0.8927589059,-0.0000000000,0.3038010001,-0.3326959908 -0.8927589059,-0.0000000000,0.3038010001,-0.3326959908 -0.8927589059,-0.0000000000,0.3038010001,-0.3326959908 -0.8927589059,-0.0000000000,0.3038010001,-0.3326959908 -0.8970167637,-0.0000000000,0.3060273230,-0.3189172745 -0.8970167637,-0.0000000000,0.3060273230,-0.3189172745 -0.8970167637,-0.0000000000,0.3060273230,-0.3189172745 -0.8970167637,-0.0000000000,0.3060273230,-0.3189172745 -0.9010259509,-0.0000000000,0.3082989752,-0.3051296473 -0.9010259509,-0.0000000000,0.3082989752,-0.3051296473 -0.9010259509,-0.0000000000,0.3082989752,-0.3051296473 -0.9010259509,-0.0000000000,0.3082989752,-0.3051296473 -0.9047864676,-0.0000000000,0.3106168211,-0.2913392782 -0.9047864676,-0.0000000000,0.3106168211,-0.2913392782 -0.9047864676,-0.0000000000,0.3106168211,-0.2913392782 -0.9047864676,-0.0000000000,0.3106168211,-0.2913392782 -0.9082989693,-0.0000000000,0.3129819334,-0.2775522470 -0.9082989693,-0.0000000000,0.3129819334,-0.2775522470 -0.9082989693,-0.0000000000,0.3129819334,-0.2775522470 -0.9082989693,-0.0000000000,0.3129819334,-0.2775522470 -0.9115639329,-0.0000000000,0.3153951764,-0.2637746632 -0.9115639329,-0.0000000000,0.3153951764,-0.2637746632 -0.9115639329,-0.0000000000,0.3153951764,-0.2637746632 -0.9115639329,-0.0000000000,0.3153951764,-0.2637746632 -0.9145818949,-0.0000000000,0.3178575933,-0.2500127852 -0.9145818949,-0.0000000000,0.3178575933,-0.2500127852 -0.9145818949,-0.0000000000,0.3178575933,-0.2500127852 -0.9145818949,-0.0000000000,0.3178575933,-0.2500127852 -0.9173538089,-0.0000000000,0.3203702271,-0.2362728119 -0.9173538089,-0.0000000000,0.3203702271,-0.2362728119 -0.9173538089,-0.0000000000,0.3203702271,-0.2362728119 -0.9173538089,-0.0000000000,0.3203702271,-0.2362728119 -0.9198805690,-0.0000000000,0.3229340613,-0.2225610018 -0.9198805690,-0.0000000000,0.3229340613,-0.2225610018 -0.9198805690,-0.0000000000,0.3229340613,-0.2225610018 -0.9198805690,-0.0000000000,0.3229340613,-0.2225610018 -0.9221630692,-0.0000000000,0.3255501986,-0.2088836282 -0.9221630692,-0.0000000000,0.3255501986,-0.2088836282 -0.9221630692,-0.0000000000,0.3255501986,-0.2088836282 -0.9221630692,-0.0000000000,0.3255501986,-0.2088836282 -0.9242026210,-0.0000000000,0.3282195926,-0.1952470690 -0.9242026210,-0.0000000000,0.3282195926,-0.1952470690 -0.9242026210,-0.0000000000,0.3282195926,-0.1952470690 -0.9242026210,-0.0000000000,0.3282195926,-0.1952470690 -0.9260004759,-0.0000000000,0.3309434354,-0.1816576570 -0.9260004759,-0.0000000000,0.3309434354,-0.1816576570 -0.9260004759,-0.0000000000,0.3309434354,-0.1816576570 -0.9260004759,-0.0000000000,0.3309434354,-0.1816576570 -0.9275581837,-0.0000000000,0.3337226808,-0.1681217551 -0.9275581837,-0.0000000000,0.3337226808,-0.1681217551 -0.9275581837,-0.0000000000,0.3337226808,-0.1681217551 -0.9275581837,-0.0000000000,0.3337226808,-0.1681217551 -0.9288772345,-0.0000000000,0.3365585208,-0.1546458602 -0.9288772345,-0.0000000000,0.3365585208,-0.1546458602 -0.9288772345,-0.0000000000,0.3365585208,-0.1546458602 -0.9288772345,-0.0000000000,0.3365585208,-0.1546458602 -0.9299594164,-0.0000000000,0.3394520283,-0.1412363946 -0.9299594164,-0.0000000000,0.3394520283,-0.1412363946 -0.9299594164,-0.0000000000,0.3394520283,-0.1412363946 -0.9299594164,-0.0000000000,0.3394520283,-0.1412363946 -0.9308065176,-0.0000000000,0.3424043357,-0.1278998852 -0.9308065176,-0.0000000000,0.3424043357,-0.1278998852 -0.9308065176,-0.0000000000,0.3424043357,-0.1278998852 -0.9308065176,-0.0000000000,0.3424043357,-0.1278998852 -0.9314206243,-0.0000000000,0.3454166055,-0.1146428585 -0.9314206243,-0.0000000000,0.3454166055,-0.1146428585 -0.9314206243,-0.0000000000,0.3454166055,-0.1146428585 -0.9314206243,-0.0000000000,0.3454166055,-0.1146428585 -0.9318037629,-0.0000000000,0.3484899700,-0.1014718637 -0.9318037629,-0.0000000000,0.3484899700,-0.1014718637 -0.9318037629,-0.0000000000,0.3484899700,-0.1014718637 -0.9318037629,-0.0000000000,0.3484899700,-0.1014718637 -0.9319581985,-0.0000000000,0.3516255617,-0.0883934870 -0.9319581985,-0.0000000000,0.3516255617,-0.0883934870 -0.9319581985,-0.0000000000,0.3516255617,-0.0883934870 -0.9319581985,-0.0000000000,0.3516255617,-0.0883934870 -0.9318864346,-0.0000000000,0.3548245430,-0.0754143670 -0.9318864346,-0.0000000000,0.3548245430,-0.0754143670 -0.9318864346,-0.0000000000,0.3548245430,-0.0754143670 -0.9318864346,-0.0000000000,0.3548245430,-0.0754143670 -0.9315908551,-0.0000000000,0.3580881059,-0.0625411645 -0.9315908551,-0.0000000000,0.3580881059,-0.0625411645 -0.9315908551,-0.0000000000,0.3580881059,-0.0625411645 -0.9315908551,-0.0000000000,0.3580881059,-0.0625411645 -0.9310743213,-0.0000000000,0.3614174128,-0.0497805700 -0.9310743213,-0.0000000000,0.3614174128,-0.0497805700 -0.9310743213,-0.0000000000,0.3614174128,-0.0497805700 -0.9310743213,-0.0000000000,0.3614174128,-0.0497805700 -0.9303395152,-0.0000000000,0.3648136854,-0.0371393040 -0.9303395152,-0.0000000000,0.3648136854,-0.0371393040 -0.9303395152,-0.0000000000,0.3648136854,-0.0371393040 -0.9303395152,-0.0000000000,0.3648136854,-0.0371393040 -0.9293895364,-0.0000000000,0.3682780564,-0.0246241186 -0.9293895364,-0.0000000000,0.3682780564,-0.0246241186 -0.9293895364,-0.0000000000,0.3682780564,-0.0246241186 -0.9293895364,-0.0000000000,0.3682780564,-0.0246241186 -0.9282274842,-0.0000000000,0.3718117476,-0.0122418087 -0.9282274842,-0.0000000000,0.3718117476,-0.0122418087 -0.9282274842,-0.0000000000,0.3718117476,-0.0122418087 -0.9282274842,-0.0000000000,0.3718117476,-0.0122418087 -0.9268564582,0.0000000000,0.3754158616,0.0000008066 -0.9268564582,0.0000000000,0.3754158616,0.0000008066 -0.9268564582,0.0000000000,0.3754158616,0.0000008066 -0.9268564582,0.0000000000,0.3754158616,0.0000008066 +0.9223,-0.0000,-0.3863,0.0119 +0.9223,-0.0000,-0.3863,0.0119 +0.9223,-0.0000,-0.3863,0.0119 +0.9223,-0.0000,-0.3863,0.0119 +0.9235,-0.0000,-0.3828,0.0240 +0.9235,-0.0000,-0.3828,0.0240 +0.9235,-0.0000,-0.3828,0.0240 +0.9235,-0.0000,-0.3828,0.0240 +0.9245,-0.0000,-0.3794,0.0363 +0.9245,-0.0000,-0.3794,0.0363 +0.9245,-0.0000,-0.3794,0.0363 +0.9245,-0.0000,-0.3794,0.0363 +0.9253,-0.0000,-0.3760,0.0486 +0.9253,-0.0000,-0.3760,0.0486 +0.9253,-0.0000,-0.3760,0.0486 +0.9253,-0.0000,-0.3760,0.0486 +0.9259,-0.0000,-0.3727,0.0611 +0.9259,-0.0000,-0.3727,0.0611 +0.9259,-0.0000,-0.3727,0.0611 +0.9259,-0.0000,-0.3727,0.0611 +0.9263,-0.0000,-0.3695,0.0737 +0.9263,-0.0000,-0.3695,0.0737 +0.9263,-0.0000,-0.3695,0.0737 +0.9263,-0.0000,-0.3695,0.0737 +0.9265,-0.0000,-0.3663,0.0865 +0.9265,-0.0000,-0.3663,0.0865 +0.9265,-0.0000,-0.3663,0.0865 +0.9265,-0.0000,-0.3663,0.0865 +0.9264,-0.0000,-0.3632,0.0993 +0.9264,-0.0000,-0.3632,0.0993 +0.9264,-0.0000,-0.3632,0.0993 +0.9264,-0.0000,-0.3632,0.0993 +0.9261,-0.0000,-0.3602,0.1122 +0.9261,-0.0000,-0.3602,0.1122 +0.9261,-0.0000,-0.3602,0.1122 +0.9261,-0.0000,-0.3602,0.1122 +0.9256,-0.0000,-0.3572,0.1252 +0.9256,-0.0000,-0.3572,0.1252 +0.9256,-0.0000,-0.3572,0.1252 +0.9256,-0.0000,-0.3572,0.1252 +0.9248,-0.0000,-0.3543,0.1383 +0.9248,-0.0000,-0.3543,0.1383 +0.9248,-0.0000,-0.3543,0.1383 +0.9248,-0.0000,-0.3543,0.1383 +0.9239,-0.0000,-0.3515,0.1515 +0.9239,-0.0000,-0.3515,0.1515 +0.9239,-0.0000,-0.3515,0.1515 +0.9239,-0.0000,-0.3515,0.1515 +0.9226,-0.0000,-0.3487,0.1648 +0.9226,-0.0000,-0.3487,0.1648 +0.9226,-0.0000,-0.3487,0.1648 +0.9226,-0.0000,-0.3487,0.1648 +0.9212,-0.0000,-0.3460,0.1781 +0.9212,-0.0000,-0.3460,0.1781 +0.9212,-0.0000,-0.3460,0.1781 +0.9212,-0.0000,-0.3460,0.1781 +0.9195,-0.0000,-0.3433,0.1914 +0.9195,-0.0000,-0.3433,0.1914 +0.9195,-0.0000,-0.3433,0.1914 +0.9195,-0.0000,-0.3433,0.1914 +0.9176,-0.0000,-0.3407,0.2049 +0.9176,-0.0000,-0.3407,0.2049 +0.9176,-0.0000,-0.3407,0.2049 +0.9176,-0.0000,-0.3407,0.2049 +0.9154,-0.0000,-0.3382,0.2183 +0.9154,-0.0000,-0.3382,0.2183 +0.9154,-0.0000,-0.3382,0.2183 +0.9154,-0.0000,-0.3382,0.2183 +0.9130,-0.0000,-0.3357,0.2319 +0.9130,-0.0000,-0.3357,0.2319 +0.9130,-0.0000,-0.3357,0.2319 +0.9130,-0.0000,-0.3357,0.2319 +0.9104,-0.0000,-0.3332,0.2454 +0.9104,-0.0000,-0.3332,0.2454 +0.9104,-0.0000,-0.3332,0.2454 +0.9104,-0.0000,-0.3332,0.2454 +0.9075,-0.0000,-0.3308,0.2590 +0.9075,-0.0000,-0.3308,0.2590 +0.9075,-0.0000,-0.3308,0.2590 +0.9075,-0.0000,-0.3308,0.2590 +0.9043,-0.0000,-0.3285,0.2726 +0.9043,-0.0000,-0.3285,0.2726 +0.9043,-0.0000,-0.3285,0.2726 +0.9043,-0.0000,-0.3285,0.2726 +0.9009,-0.0000,-0.3262,0.2862 +0.9009,-0.0000,-0.3262,0.2862 +0.9009,-0.0000,-0.3262,0.2862 +0.9009,-0.0000,-0.3262,0.2862 +0.8973,-0.0000,-0.3240,0.2998 +0.8973,-0.0000,-0.3240,0.2998 +0.8973,-0.0000,-0.3240,0.2998 +0.8973,-0.0000,-0.3240,0.2998 +0.8934,-0.0000,-0.3218,0.3134 +0.8934,-0.0000,-0.3218,0.3134 +0.8934,-0.0000,-0.3218,0.3134 +0.8934,-0.0000,-0.3218,0.3134 +0.8893,-0.0000,-0.3197,0.3271 +0.8893,-0.0000,-0.3197,0.3271 +0.8893,-0.0000,-0.3197,0.3271 +0.8893,-0.0000,-0.3197,0.3271 +0.8849,-0.0000,-0.3176,0.3407 +0.8849,-0.0000,-0.3176,0.3407 +0.8849,-0.0000,-0.3176,0.3407 +0.8849,-0.0000,-0.3176,0.3407 +0.8803,-0.0000,-0.3156,0.3543 +0.8803,-0.0000,-0.3156,0.3543 +0.8803,-0.0000,-0.3156,0.3543 +0.8803,-0.0000,-0.3156,0.3543 +0.8754,-0.0000,-0.3136,0.3678 +0.8754,-0.0000,-0.3136,0.3678 +0.8754,-0.0000,-0.3136,0.3678 +0.8754,-0.0000,-0.3136,0.3678 +0.8703,-0.0000,-0.3116,0.3814 +0.8703,-0.0000,-0.3116,0.3814 +0.8703,-0.0000,-0.3116,0.3814 +0.8703,-0.0000,-0.3116,0.3814 +0.8650,-0.0000,-0.3097,0.3949 +0.8650,-0.0000,-0.3097,0.3949 +0.8650,-0.0000,-0.3097,0.3949 +0.8650,-0.0000,-0.3097,0.3949 +0.8593,-0.0000,-0.3079,0.4083 +0.8593,-0.0000,-0.3079,0.4083 +0.8593,-0.0000,-0.3079,0.4083 +0.8593,-0.0000,-0.3079,0.4083 +0.8535,-0.0000,-0.3061,0.4217 +0.8535,-0.0000,-0.3061,0.4217 +0.8535,-0.0000,-0.3061,0.4217 +0.8535,-0.0000,-0.3061,0.4217 +0.8474,-0.0000,-0.3043,0.4351 +0.8474,-0.0000,-0.3043,0.4351 +0.8474,-0.0000,-0.3043,0.4351 +0.8474,-0.0000,-0.3043,0.4351 +0.8410,-0.0000,-0.3026,0.4484 +0.8410,-0.0000,-0.3026,0.4484 +0.8410,-0.0000,-0.3026,0.4484 +0.8410,-0.0000,-0.3026,0.4484 +0.8344,-0.0000,-0.3010,0.4617 +0.8344,-0.0000,-0.3010,0.4617 +0.8344,-0.0000,-0.3010,0.4617 +0.8344,-0.0000,-0.3010,0.4617 +0.8276,-0.0000,-0.2993,0.4748 +0.8276,-0.0000,-0.2993,0.4748 +0.8276,-0.0000,-0.2993,0.4748 +0.8276,-0.0000,-0.2993,0.4748 +0.8205,-0.0000,-0.2978,0.4879 +0.8205,-0.0000,-0.2978,0.4879 +0.8205,-0.0000,-0.2978,0.4879 +0.8205,-0.0000,-0.2978,0.4879 +0.8132,-0.0000,-0.2962,0.5010 +0.8132,-0.0000,-0.2962,0.5010 +0.8132,-0.0000,-0.2962,0.5010 +0.8132,-0.0000,-0.2962,0.5010 +0.8056,-0.0000,-0.2947,0.5139 +0.8056,-0.0000,-0.2947,0.5139 +0.8056,-0.0000,-0.2947,0.5139 +0.8056,-0.0000,-0.2947,0.5139 +0.7978,-0.0000,-0.2932,0.5267 +0.7978,-0.0000,-0.2932,0.5267 +0.7978,-0.0000,-0.2932,0.5267 +0.7978,-0.0000,-0.2932,0.5267 +0.7898,-0.0000,-0.2918,0.5395 +0.7898,-0.0000,-0.2918,0.5395 +0.7898,-0.0000,-0.2918,0.5395 +0.7898,-0.0000,-0.2918,0.5395 +0.7815,-0.0000,-0.2904,0.5521 +0.7815,-0.0000,-0.2904,0.5521 +0.7815,-0.0000,-0.2904,0.5521 +0.7815,-0.0000,-0.2904,0.5521 +0.7730,-0.0000,-0.2891,0.5647 +0.7730,-0.0000,-0.2891,0.5647 +0.7730,-0.0000,-0.2891,0.5647 +0.7730,-0.0000,-0.2891,0.5647 +0.7643,-0.0000,-0.2878,0.5771 +0.7643,-0.0000,-0.2878,0.5771 +0.7643,-0.0000,-0.2878,0.5771 +0.7643,-0.0000,-0.2878,0.5771 +0.7553,-0.0000,-0.2865,0.5894 +0.7553,-0.0000,-0.2865,0.5894 +0.7553,-0.0000,-0.2865,0.5894 +0.7553,-0.0000,-0.2865,0.5894 +0.7461,-0.0000,-0.2853,0.6016 +0.7461,-0.0000,-0.2853,0.6016 +0.7461,-0.0000,-0.2853,0.6016 +0.7461,-0.0000,-0.2853,0.6016 +0.7367,-0.0000,-0.2841,0.6136 +0.7367,-0.0000,-0.2841,0.6136 +0.7367,-0.0000,-0.2841,0.6136 +0.7367,-0.0000,-0.2841,0.6136 +0.7271,-0.0000,-0.2830,0.6255 +0.7271,-0.0000,-0.2830,0.6255 +0.7271,-0.0000,-0.2830,0.6255 +0.7271,-0.0000,-0.2830,0.6255 +0.7172,-0.0000,-0.2819,0.6373 +0.7172,-0.0000,-0.2819,0.6373 +0.7172,-0.0000,-0.2819,0.6373 +0.7172,-0.0000,-0.2819,0.6373 +0.7071,-0.0000,-0.2808,0.6490 +0.7071,-0.0000,-0.2808,0.6490 +0.7071,-0.0000,-0.2808,0.6490 +0.7071,-0.0000,-0.2808,0.6490 +0.6968,-0.0000,-0.2798,0.6604 +0.6968,-0.0000,-0.2798,0.6604 +0.6968,-0.0000,-0.2798,0.6604 +0.6968,-0.0000,-0.2798,0.6604 +0.6863,-0.0000,-0.2788,0.6718 +0.6863,-0.0000,-0.2788,0.6718 +0.6863,-0.0000,-0.2788,0.6718 +0.6863,-0.0000,-0.2788,0.6718 +0.6756,-0.0000,-0.2779,0.6829 +0.6756,-0.0000,-0.2779,0.6829 +0.6756,-0.0000,-0.2779,0.6829 +0.6756,-0.0000,-0.2779,0.6829 +0.6646,-0.0000,-0.2769,0.6940 +0.6646,-0.0000,-0.2769,0.6940 +0.6646,-0.0000,-0.2769,0.6940 +0.6646,-0.0000,-0.2769,0.6940 +0.6535,-0.0000,-0.2761,0.7048 +0.6535,-0.0000,-0.2761,0.7048 +0.6535,-0.0000,-0.2761,0.7048 +0.6535,-0.0000,-0.2761,0.7048 +0.6422,-0.0000,-0.2752,0.7155 +0.6422,-0.0000,-0.2752,0.7155 +0.6422,-0.0000,-0.2752,0.7155 +0.6422,-0.0000,-0.2752,0.7155 +0.6306,-0.0000,-0.2744,0.7260 +0.6306,-0.0000,-0.2744,0.7260 +0.6306,-0.0000,-0.2744,0.7260 +0.6306,-0.0000,-0.2744,0.7260 +0.6189,-0.0000,-0.2737,0.7363 +0.6189,-0.0000,-0.2737,0.7363 +0.6189,-0.0000,-0.2737,0.7363 +0.6189,-0.0000,-0.2737,0.7363 +0.6069,-0.0000,-0.2730,0.7464 +0.6069,-0.0000,-0.2730,0.7464 +0.6069,-0.0000,-0.2730,0.7464 +0.6069,-0.0000,-0.2730,0.7464 +0.5948,-0.0000,-0.2723,0.7563 +0.5948,-0.0000,-0.2723,0.7563 +0.5948,-0.0000,-0.2723,0.7563 +0.5948,-0.0000,-0.2723,0.7563 +0.5825,-0.0000,-0.2716,0.7661 +0.5825,-0.0000,-0.2716,0.7661 +0.5825,-0.0000,-0.2716,0.7661 +0.5825,-0.0000,-0.2716,0.7661 +0.5700,-0.0000,-0.2710,0.7756 +0.5700,-0.0000,-0.2710,0.7756 +0.5700,-0.0000,-0.2710,0.7756 +0.5700,-0.0000,-0.2710,0.7756 +0.5574,-0.0000,-0.2705,0.7850 +0.5574,-0.0000,-0.2705,0.7850 +0.5574,-0.0000,-0.2705,0.7850 +0.5574,-0.0000,-0.2705,0.7850 +0.5445,-0.0000,-0.2700,0.7941 +0.5445,-0.0000,-0.2700,0.7941 +0.5445,-0.0000,-0.2700,0.7941 +0.5445,-0.0000,-0.2700,0.7941 +0.5315,-0.0000,-0.2695,0.8030 +0.5315,-0.0000,-0.2695,0.8030 +0.5315,-0.0000,-0.2695,0.8030 +0.5315,-0.0000,-0.2695,0.8030 +0.5184,-0.0000,-0.2691,0.8117 +0.5184,-0.0000,-0.2691,0.8117 +0.5184,-0.0000,-0.2691,0.8117 +0.5184,-0.0000,-0.2691,0.8117 +0.5050,-0.0000,-0.2687,0.8202 +0.5050,-0.0000,-0.2687,0.8202 +0.5050,-0.0000,-0.2687,0.8202 +0.5050,-0.0000,-0.2687,0.8202 +0.4915,-0.0000,-0.2684,0.8285 +0.4915,-0.0000,-0.2684,0.8285 +0.4915,-0.0000,-0.2684,0.8285 +0.4915,-0.0000,-0.2684,0.8285 +0.4779,-0.0000,-0.2682,0.8365 +0.4779,-0.0000,-0.2682,0.8365 +0.4779,-0.0000,-0.2682,0.8365 +0.4779,-0.0000,-0.2682,0.8365 +0.4640,-0.0000,-0.2680,0.8443 +0.4640,-0.0000,-0.2680,0.8443 +0.4640,-0.0000,-0.2680,0.8443 +0.4640,-0.0000,-0.2680,0.8443 +0.4501,-0.0000,-0.2678,0.8519 +0.4501,-0.0000,-0.2678,0.8519 +0.4501,-0.0000,-0.2678,0.8519 +0.4501,-0.0000,-0.2678,0.8519 +0.4360,-0.0000,-0.2677,0.8592 +0.4360,-0.0000,-0.2677,0.8592 +0.4360,-0.0000,-0.2677,0.8592 +0.4360,-0.0000,-0.2677,0.8592 +0.4218,-0.0000,-0.2677,0.8663 +0.4218,-0.0000,-0.2677,0.8663 +0.4218,-0.0000,-0.2677,0.8663 +0.4218,-0.0000,-0.2677,0.8663 +0.4074,-0.0000,-0.2677,0.8731 +0.4074,-0.0000,-0.2677,0.8731 +0.4074,-0.0000,-0.2677,0.8731 +0.4074,-0.0000,-0.2677,0.8731 +0.3929,-0.0000,-0.2678,0.8797 +0.3929,-0.0000,-0.2678,0.8797 +0.3929,-0.0000,-0.2678,0.8797 +0.3929,-0.0000,-0.2678,0.8797 +0.3783,-0.0000,-0.2680,0.8860 +0.3783,-0.0000,-0.2680,0.8860 +0.3783,-0.0000,-0.2680,0.8860 +0.3783,-0.0000,-0.2680,0.8860 +0.3635,-0.0000,-0.2683,0.8921 +0.3635,-0.0000,-0.2683,0.8921 +0.3635,-0.0000,-0.2683,0.8921 +0.3635,-0.0000,-0.2683,0.8921 +0.3487,-0.0000,-0.2687,0.8979 +0.3487,-0.0000,-0.2687,0.8979 +0.3487,-0.0000,-0.2687,0.8979 +0.3487,-0.0000,-0.2687,0.8979 +0.3337,-0.0000,-0.2692,0.9034 +0.3337,-0.0000,-0.2692,0.9034 +0.3337,-0.0000,-0.2692,0.9034 +0.3337,-0.0000,-0.2692,0.9034 +0.3186,-0.0000,-0.2698,0.9087 +0.3186,-0.0000,-0.2698,0.9087 +0.3186,-0.0000,-0.2698,0.9087 +0.3186,-0.0000,-0.2698,0.9087 +0.3034,-0.0000,-0.2705,0.9136 +0.3034,-0.0000,-0.2705,0.9136 +0.3034,-0.0000,-0.2705,0.9136 +0.3034,-0.0000,-0.2705,0.9136 +0.2882,-0.0000,-0.2714,0.9183 +0.2882,-0.0000,-0.2714,0.9183 +0.2882,-0.0000,-0.2714,0.9183 +0.2882,-0.0000,-0.2714,0.9183 +0.2728,-0.0000,-0.2725,0.9227 +0.2728,-0.0000,-0.2725,0.9227 +0.2728,-0.0000,-0.2725,0.9227 +0.2728,-0.0000,-0.2725,0.9227 +0.2573,-0.0000,-0.2738,0.9267 +0.2573,-0.0000,-0.2738,0.9267 +0.2573,-0.0000,-0.2738,0.9267 +0.2573,-0.0000,-0.2738,0.9267 +0.2418,-0.0000,-0.2753,0.9305 +0.2418,-0.0000,-0.2753,0.9305 +0.2418,-0.0000,-0.2753,0.9305 +0.2418,-0.0000,-0.2753,0.9305 +0.2262,-0.0000,-0.2771,0.9339 +0.2262,-0.0000,-0.2771,0.9339 +0.2262,-0.0000,-0.2771,0.9339 +0.2262,-0.0000,-0.2771,0.9339 +0.2105,-0.0000,-0.2792,0.9369 +0.2105,-0.0000,-0.2792,0.9369 +0.2105,-0.0000,-0.2792,0.9369 +0.2105,-0.0000,-0.2792,0.9369 +0.1947,-0.0000,-0.2818,0.9395 +0.1947,-0.0000,-0.2818,0.9395 +0.1947,-0.0000,-0.2818,0.9395 +0.1947,-0.0000,-0.2818,0.9395 +0.1789,-0.0000,-0.2848,0.9417 +0.1789,-0.0000,-0.2848,0.9417 +0.1789,-0.0000,-0.2848,0.9417 +0.1789,-0.0000,-0.2848,0.9417 +0.1630,-0.0000,-0.2886,0.9435 +0.1630,-0.0000,-0.2886,0.9435 +0.1630,-0.0000,-0.2886,0.9435 +0.1630,-0.0000,-0.2886,0.9435 +0.1471,-0.0000,-0.2933,0.9446 +0.1471,-0.0000,-0.2933,0.9446 +0.1471,-0.0000,-0.2933,0.9446 +0.1471,-0.0000,-0.2933,0.9446 +0.1312,-0.0000,-0.2991,0.9452 +0.1312,-0.0000,-0.2991,0.9452 +0.1312,-0.0000,-0.2991,0.9452 +0.1312,-0.0000,-0.2991,0.9452 +0.1152,-0.0000,-0.3067,0.9448 +0.1152,-0.0000,-0.3067,0.9448 +0.1152,-0.0000,-0.3067,0.9448 +0.1152,-0.0000,-0.3067,0.9448 +0.0991,-0.0000,-0.3167,0.9433 +0.0991,-0.0000,-0.3167,0.9433 +0.0991,-0.0000,-0.3167,0.9433 +0.0991,-0.0000,-0.3167,0.9433 +0.0831,-0.0000,-0.3307,0.9401 +0.0831,-0.0000,-0.3307,0.9401 +0.0831,-0.0000,-0.3307,0.9401 +0.0831,-0.0000,-0.3307,0.9401 +0.0670,-0.0000,-0.3514,0.9338 +0.0670,-0.0000,-0.3514,0.9338 +0.0670,-0.0000,-0.3514,0.9338 +0.0670,-0.0000,-0.3514,0.9338 +0.0510,-0.0000,-0.3848,0.9216 +0.0510,-0.0000,-0.3848,0.9216 +0.0510,-0.0000,-0.3848,0.9216 +0.0510,-0.0000,-0.3848,0.9216 +0.0351,-0.0000,-0.4473,0.8937 +0.0351,-0.0000,-0.4473,0.8937 +0.0351,-0.0000,-0.4473,0.8937 +0.0351,-0.0000,-0.4473,0.8937 +0.0196,-0.0000,-0.6000,0.7997 +0.0196,-0.0000,-0.6000,0.7997 +0.0196,-0.0000,-0.6000,0.7997 +0.0196,-0.0000,-0.6000,0.7997 +0.0079,-0.0000,-1.0000,-0.0001 +0.0079,-0.0000,-1.0000,-0.0001 +0.0079,-0.0000,-1.0000,-0.0001 +0.0079,-0.0000,-1.0000,-0.0001 +0.0162,-0.0000,-0.2425,-0.9700 +0.0162,-0.0000,-0.2425,-0.9700 +0.0162,-0.0000,-0.2425,-0.9700 +0.0162,-0.0000,-0.2425,-0.9700 +0.0314,-0.0000,0.0000,-0.9995 +0.0314,-0.0000,0.0000,-0.9995 +0.0314,-0.0000,0.0000,-0.9995 +0.0314,-0.0000,0.0000,-0.9995 +0.0473,-0.0000,0.0831,-0.9954 +0.0473,-0.0000,0.0831,-0.9954 +0.0473,-0.0000,0.0831,-0.9954 +0.0473,-0.0000,0.0831,-0.9954 +0.0633,-0.0000,0.1241,-0.9902 +0.0633,-0.0000,0.1241,-0.9902 +0.0633,-0.0000,0.1241,-0.9902 +0.0633,-0.0000,0.1241,-0.9902 +0.0793,-0.0000,0.1485,-0.9857 +0.0793,-0.0000,0.1485,-0.9857 +0.0793,-0.0000,0.1485,-0.9857 +0.0793,-0.0000,0.1485,-0.9857 +0.0954,-0.0000,0.1646,-0.9817 +0.0954,-0.0000,0.1646,-0.9817 +0.0954,-0.0000,0.1646,-0.9817 +0.0954,-0.0000,0.1646,-0.9817 +0.1114,-0.0000,0.1762,-0.9780 +0.1114,-0.0000,0.1762,-0.9780 +0.1114,-0.0000,0.1762,-0.9780 +0.1114,-0.0000,0.1762,-0.9780 +0.1275,-0.0000,0.1848,-0.9745 +0.1275,-0.0000,0.1848,-0.9745 +0.1275,-0.0000,0.1848,-0.9745 +0.1275,-0.0000,0.1848,-0.9745 +0.1435,-0.0000,0.1915,-0.9709 +0.1435,-0.0000,0.1915,-0.9709 +0.1435,-0.0000,0.1915,-0.9709 +0.1435,-0.0000,0.1915,-0.9709 +0.1594,-0.0000,0.1970,-0.9674 +0.1594,-0.0000,0.1970,-0.9674 +0.1594,-0.0000,0.1970,-0.9674 +0.1594,-0.0000,0.1970,-0.9674 +0.1753,-0.0000,0.2014,-0.9637 +0.1753,-0.0000,0.2014,-0.9637 +0.1753,-0.0000,0.2014,-0.9637 +0.1753,-0.0000,0.2014,-0.9637 +0.1912,-0.0000,0.2052,-0.9599 +0.1912,-0.0000,0.2052,-0.9599 +0.1912,-0.0000,0.2052,-0.9599 +0.1912,-0.0000,0.2052,-0.9599 +0.2070,-0.0000,0.2085,-0.9559 +0.2070,-0.0000,0.2085,-0.9559 +0.2070,-0.0000,0.2085,-0.9559 +0.2070,-0.0000,0.2085,-0.9559 +0.2227,-0.0000,0.2113,-0.9517 +0.2227,-0.0000,0.2113,-0.9517 +0.2227,-0.0000,0.2113,-0.9517 +0.2227,-0.0000,0.2113,-0.9517 +0.2384,-0.0000,0.2138,-0.9473 +0.2384,-0.0000,0.2138,-0.9473 +0.2384,-0.0000,0.2138,-0.9473 +0.2384,-0.0000,0.2138,-0.9473 +0.2540,-0.0000,0.2161,-0.9428 +0.2540,-0.0000,0.2161,-0.9428 +0.2540,-0.0000,0.2161,-0.9428 +0.2540,-0.0000,0.2161,-0.9428 +0.2695,-0.0000,0.2181,-0.9380 +0.2695,-0.0000,0.2181,-0.9380 +0.2695,-0.0000,0.2181,-0.9380 +0.2695,-0.0000,0.2181,-0.9380 +0.2849,-0.0000,0.2200,-0.9330 +0.2849,-0.0000,0.2200,-0.9330 +0.2849,-0.0000,0.2200,-0.9330 +0.2849,-0.0000,0.2200,-0.9330 +0.3002,-0.0000,0.2217,-0.9277 +0.3002,-0.0000,0.2217,-0.9277 +0.3002,-0.0000,0.2217,-0.9277 +0.3002,-0.0000,0.2217,-0.9277 +0.3155,-0.0000,0.2233,-0.9223 +0.3155,-0.0000,0.2233,-0.9223 +0.3155,-0.0000,0.2233,-0.9223 +0.3155,-0.0000,0.2233,-0.9223 +0.3306,-0.0000,0.2248,-0.9166 +0.3306,-0.0000,0.2248,-0.9166 +0.3306,-0.0000,0.2248,-0.9166 +0.3306,-0.0000,0.2248,-0.9166 +0.3457,-0.0000,0.2263,-0.9107 +0.3457,-0.0000,0.2263,-0.9107 +0.3457,-0.0000,0.2263,-0.9107 +0.3457,-0.0000,0.2263,-0.9107 +0.3606,-0.0000,0.2277,-0.9045 +0.3606,-0.0000,0.2277,-0.9045 +0.3606,-0.0000,0.2277,-0.9045 +0.3606,-0.0000,0.2277,-0.9045 +0.3754,-0.0000,0.2290,-0.8981 +0.3754,-0.0000,0.2290,-0.8981 +0.3754,-0.0000,0.2290,-0.8981 +0.3754,-0.0000,0.2290,-0.8981 +0.3901,-0.0000,0.2303,-0.8915 +0.3901,-0.0000,0.2303,-0.8915 +0.3901,-0.0000,0.2303,-0.8915 +0.3901,-0.0000,0.2303,-0.8915 +0.4047,-0.0000,0.2315,-0.8847 +0.4047,-0.0000,0.2315,-0.8847 +0.4047,-0.0000,0.2315,-0.8847 +0.4047,-0.0000,0.2315,-0.8847 +0.4192,-0.0000,0.2327,-0.8776 +0.4192,-0.0000,0.2327,-0.8776 +0.4192,-0.0000,0.2327,-0.8776 +0.4192,-0.0000,0.2327,-0.8776 +0.4335,-0.0000,0.2339,-0.8703 +0.4335,-0.0000,0.2339,-0.8703 +0.4335,-0.0000,0.2339,-0.8703 +0.4335,-0.0000,0.2339,-0.8703 +0.4477,-0.0000,0.2351,-0.8627 +0.4477,-0.0000,0.2351,-0.8627 +0.4477,-0.0000,0.2351,-0.8627 +0.4477,-0.0000,0.2351,-0.8627 +0.4617,-0.0000,0.2362,-0.8550 +0.4617,-0.0000,0.2362,-0.8550 +0.4617,-0.0000,0.2362,-0.8550 +0.4617,-0.0000,0.2362,-0.8550 +0.4756,-0.0000,0.2374,-0.8470 +0.4756,-0.0000,0.2374,-0.8470 +0.4756,-0.0000,0.2374,-0.8470 +0.4756,-0.0000,0.2374,-0.8470 +0.4894,-0.0000,0.2385,-0.8388 +0.4894,-0.0000,0.2385,-0.8388 +0.4894,-0.0000,0.2385,-0.8388 +0.4894,-0.0000,0.2385,-0.8388 +0.5030,-0.0000,0.2396,-0.8304 +0.5030,-0.0000,0.2396,-0.8304 +0.5030,-0.0000,0.2396,-0.8304 +0.5030,-0.0000,0.2396,-0.8304 +0.5164,-0.0000,0.2408,-0.8218 +0.5164,-0.0000,0.2408,-0.8218 +0.5164,-0.0000,0.2408,-0.8218 +0.5164,-0.0000,0.2408,-0.8218 +0.5297,-0.0000,0.2419,-0.8130 +0.5297,-0.0000,0.2419,-0.8130 +0.5297,-0.0000,0.2419,-0.8130 +0.5297,-0.0000,0.2419,-0.8130 +0.5428,-0.0000,0.2431,-0.8039 +0.5428,-0.0000,0.2431,-0.8039 +0.5428,-0.0000,0.2431,-0.8039 +0.5428,-0.0000,0.2431,-0.8039 +0.5558,-0.0000,0.2442,-0.7947 +0.5558,-0.0000,0.2442,-0.7947 +0.5558,-0.0000,0.2442,-0.7947 +0.5558,-0.0000,0.2442,-0.7947 +0.5685,-0.0000,0.2454,-0.7852 +0.5685,-0.0000,0.2454,-0.7852 +0.5685,-0.0000,0.2454,-0.7852 +0.5685,-0.0000,0.2454,-0.7852 +0.5811,-0.0000,0.2465,-0.7756 +0.5811,-0.0000,0.2465,-0.7756 +0.5811,-0.0000,0.2465,-0.7756 +0.5811,-0.0000,0.2465,-0.7756 +0.5936,-0.0000,0.2477,-0.7657 +0.5936,-0.0000,0.2477,-0.7657 +0.5936,-0.0000,0.2477,-0.7657 +0.5936,-0.0000,0.2477,-0.7657 +0.6058,-0.0000,0.2489,-0.7557 +0.6058,-0.0000,0.2489,-0.7557 +0.6058,-0.0000,0.2489,-0.7557 +0.6058,-0.0000,0.2489,-0.7557 +0.6179,-0.0000,0.2501,-0.7455 +0.6179,-0.0000,0.2501,-0.7455 +0.6179,-0.0000,0.2501,-0.7455 +0.6179,-0.0000,0.2501,-0.7455 +0.6297,-0.0000,0.2513,-0.7351 +0.6297,-0.0000,0.2513,-0.7351 +0.6297,-0.0000,0.2513,-0.7351 +0.6297,-0.0000,0.2513,-0.7351 +0.6414,-0.0000,0.2525,-0.7245 +0.6414,-0.0000,0.2525,-0.7245 +0.6414,-0.0000,0.2525,-0.7245 +0.6414,-0.0000,0.2525,-0.7245 +0.6528,-0.0000,0.2538,-0.7137 +0.6528,-0.0000,0.2538,-0.7137 +0.6528,-0.0000,0.2538,-0.7137 +0.6528,-0.0000,0.2538,-0.7137 +0.6641,-0.0000,0.2550,-0.7028 +0.6641,-0.0000,0.2550,-0.7028 +0.6641,-0.0000,0.2550,-0.7028 +0.6641,-0.0000,0.2550,-0.7028 +0.6752,-0.0000,0.2563,-0.6917 +0.6752,-0.0000,0.2563,-0.6917 +0.6752,-0.0000,0.2563,-0.6917 +0.6752,-0.0000,0.2563,-0.6917 +0.6860,-0.0000,0.2576,-0.6804 +0.6860,-0.0000,0.2576,-0.6804 +0.6860,-0.0000,0.2576,-0.6804 +0.6860,-0.0000,0.2576,-0.6804 +0.6967,-0.0000,0.2590,-0.6690 +0.6967,-0.0000,0.2590,-0.6690 +0.6967,-0.0000,0.2590,-0.6690 +0.6967,-0.0000,0.2590,-0.6690 +0.7071,-0.0000,0.2603,-0.6575 +0.7071,-0.0000,0.2603,-0.6575 +0.7071,-0.0000,0.2603,-0.6575 +0.7071,-0.0000,0.2603,-0.6575 +0.7173,-0.0000,0.2617,-0.6457 +0.7173,-0.0000,0.2617,-0.6457 +0.7173,-0.0000,0.2617,-0.6457 +0.7173,-0.0000,0.2617,-0.6457 +0.7273,-0.0000,0.2631,-0.6339 +0.7273,-0.0000,0.2631,-0.6339 +0.7273,-0.0000,0.2631,-0.6339 +0.7273,-0.0000,0.2631,-0.6339 +0.7371,-0.0000,0.2645,-0.6219 +0.7371,-0.0000,0.2645,-0.6219 +0.7371,-0.0000,0.2645,-0.6219 +0.7371,-0.0000,0.2645,-0.6219 +0.7467,-0.0000,0.2659,-0.6097 +0.7467,-0.0000,0.2659,-0.6097 +0.7467,-0.0000,0.2659,-0.6097 +0.7467,-0.0000,0.2659,-0.6097 +0.7560,-0.0000,0.2674,-0.5974 +0.7560,-0.0000,0.2674,-0.5974 +0.7560,-0.0000,0.2674,-0.5974 +0.7560,-0.0000,0.2674,-0.5974 +0.7651,-0.0000,0.2689,-0.5851 +0.7651,-0.0000,0.2689,-0.5851 +0.7651,-0.0000,0.2689,-0.5851 +0.7651,-0.0000,0.2689,-0.5851 +0.7740,-0.0000,0.2705,-0.5725 +0.7740,-0.0000,0.2705,-0.5725 +0.7740,-0.0000,0.2705,-0.5725 +0.7740,-0.0000,0.2705,-0.5725 +0.7826,-0.0000,0.2720,-0.5599 +0.7826,-0.0000,0.2720,-0.5599 +0.7826,-0.0000,0.2720,-0.5599 +0.7826,-0.0000,0.2720,-0.5599 +0.7910,-0.0000,0.2736,-0.5472 +0.7910,-0.0000,0.2736,-0.5472 +0.7910,-0.0000,0.2736,-0.5472 +0.7910,-0.0000,0.2736,-0.5472 +0.7992,-0.0000,0.2752,-0.5343 +0.7992,-0.0000,0.2752,-0.5343 +0.7992,-0.0000,0.2752,-0.5343 +0.7992,-0.0000,0.2752,-0.5343 +0.8072,-0.0000,0.2769,-0.5214 +0.8072,-0.0000,0.2769,-0.5214 +0.8072,-0.0000,0.2769,-0.5214 +0.8072,-0.0000,0.2769,-0.5214 +0.8149,-0.0000,0.2786,-0.5083 +0.8149,-0.0000,0.2786,-0.5083 +0.8149,-0.0000,0.2786,-0.5083 +0.8149,-0.0000,0.2786,-0.5083 +0.8223,-0.0000,0.2803,-0.4952 +0.8223,-0.0000,0.2803,-0.4952 +0.8223,-0.0000,0.2803,-0.4952 +0.8223,-0.0000,0.2803,-0.4952 +0.8295,-0.0000,0.2820,-0.4820 +0.8295,-0.0000,0.2820,-0.4820 +0.8295,-0.0000,0.2820,-0.4820 +0.8295,-0.0000,0.2820,-0.4820 +0.8365,-0.0000,0.2838,-0.4687 +0.8365,-0.0000,0.2838,-0.4687 +0.8365,-0.0000,0.2838,-0.4687 +0.8365,-0.0000,0.2838,-0.4687 +0.8433,-0.0000,0.2857,-0.4553 +0.8433,-0.0000,0.2857,-0.4553 +0.8433,-0.0000,0.2857,-0.4553 +0.8433,-0.0000,0.2857,-0.4553 +0.8497,-0.0000,0.2875,-0.4419 +0.8497,-0.0000,0.2875,-0.4419 +0.8497,-0.0000,0.2875,-0.4419 +0.8497,-0.0000,0.2875,-0.4419 +0.8560,-0.0000,0.2894,-0.4284 +0.8560,-0.0000,0.2894,-0.4284 +0.8560,-0.0000,0.2894,-0.4284 +0.8560,-0.0000,0.2894,-0.4284 +0.8620,-0.0000,0.2913,-0.4148 +0.8620,-0.0000,0.2913,-0.4148 +0.8620,-0.0000,0.2913,-0.4148 +0.8620,-0.0000,0.2913,-0.4148 +0.8677,-0.0000,0.2933,-0.4012 +0.8677,-0.0000,0.2933,-0.4012 +0.8677,-0.0000,0.2933,-0.4012 +0.8677,-0.0000,0.2933,-0.4012 +0.8732,-0.0000,0.2953,-0.3876 +0.8732,-0.0000,0.2953,-0.3876 +0.8732,-0.0000,0.2953,-0.3876 +0.8732,-0.0000,0.2953,-0.3876 +0.8785,-0.0000,0.2974,-0.3739 +0.8785,-0.0000,0.2974,-0.3739 +0.8785,-0.0000,0.2974,-0.3739 +0.8785,-0.0000,0.2974,-0.3739 +0.8835,-0.0000,0.2995,-0.3602 +0.8835,-0.0000,0.2995,-0.3602 +0.8835,-0.0000,0.2995,-0.3602 +0.8835,-0.0000,0.2995,-0.3602 +0.8883,-0.0000,0.3016,-0.3465 +0.8883,-0.0000,0.3016,-0.3465 +0.8883,-0.0000,0.3016,-0.3465 +0.8883,-0.0000,0.3016,-0.3465 +0.8928,-0.0000,0.3038,-0.3327 +0.8928,-0.0000,0.3038,-0.3327 +0.8928,-0.0000,0.3038,-0.3327 +0.8928,-0.0000,0.3038,-0.3327 +0.8970,-0.0000,0.3060,-0.3189 +0.8970,-0.0000,0.3060,-0.3189 +0.8970,-0.0000,0.3060,-0.3189 +0.8970,-0.0000,0.3060,-0.3189 +0.9010,-0.0000,0.3083,-0.3051 +0.9010,-0.0000,0.3083,-0.3051 +0.9010,-0.0000,0.3083,-0.3051 +0.9010,-0.0000,0.3083,-0.3051 +0.9048,-0.0000,0.3106,-0.2913 +0.9048,-0.0000,0.3106,-0.2913 +0.9048,-0.0000,0.3106,-0.2913 +0.9048,-0.0000,0.3106,-0.2913 +0.9083,-0.0000,0.3130,-0.2776 +0.9083,-0.0000,0.3130,-0.2776 +0.9083,-0.0000,0.3130,-0.2776 +0.9083,-0.0000,0.3130,-0.2776 +0.9116,-0.0000,0.3154,-0.2638 +0.9116,-0.0000,0.3154,-0.2638 +0.9116,-0.0000,0.3154,-0.2638 +0.9116,-0.0000,0.3154,-0.2638 +0.9146,-0.0000,0.3179,-0.2500 +0.9146,-0.0000,0.3179,-0.2500 +0.9146,-0.0000,0.3179,-0.2500 +0.9146,-0.0000,0.3179,-0.2500 +0.9174,-0.0000,0.3204,-0.2363 +0.9174,-0.0000,0.3204,-0.2363 +0.9174,-0.0000,0.3204,-0.2363 +0.9174,-0.0000,0.3204,-0.2363 +0.9199,-0.0000,0.3229,-0.2226 +0.9199,-0.0000,0.3229,-0.2226 +0.9199,-0.0000,0.3229,-0.2226 +0.9199,-0.0000,0.3229,-0.2226 +0.9222,-0.0000,0.3256,-0.2089 +0.9222,-0.0000,0.3256,-0.2089 +0.9222,-0.0000,0.3256,-0.2089 +0.9222,-0.0000,0.3256,-0.2089 +0.9242,-0.0000,0.3282,-0.1952 +0.9242,-0.0000,0.3282,-0.1952 +0.9242,-0.0000,0.3282,-0.1952 +0.9242,-0.0000,0.3282,-0.1952 +0.9260,-0.0000,0.3309,-0.1817 +0.9260,-0.0000,0.3309,-0.1817 +0.9260,-0.0000,0.3309,-0.1817 +0.9260,-0.0000,0.3309,-0.1817 +0.9276,-0.0000,0.3337,-0.1681 +0.9276,-0.0000,0.3337,-0.1681 +0.9276,-0.0000,0.3337,-0.1681 +0.9276,-0.0000,0.3337,-0.1681 +0.9289,-0.0000,0.3366,-0.1546 +0.9289,-0.0000,0.3366,-0.1546 +0.9289,-0.0000,0.3366,-0.1546 +0.9289,-0.0000,0.3366,-0.1546 +0.9300,-0.0000,0.3395,-0.1412 +0.9300,-0.0000,0.3395,-0.1412 +0.9300,-0.0000,0.3395,-0.1412 +0.9300,-0.0000,0.3395,-0.1412 +0.9308,-0.0000,0.3424,-0.1279 +0.9308,-0.0000,0.3424,-0.1279 +0.9308,-0.0000,0.3424,-0.1279 +0.9308,-0.0000,0.3424,-0.1279 +0.9314,-0.0000,0.3454,-0.1146 +0.9314,-0.0000,0.3454,-0.1146 +0.9314,-0.0000,0.3454,-0.1146 +0.9314,-0.0000,0.3454,-0.1146 +0.9318,-0.0000,0.3485,-0.1015 +0.9318,-0.0000,0.3485,-0.1015 +0.9318,-0.0000,0.3485,-0.1015 +0.9318,-0.0000,0.3485,-0.1015 +0.9320,-0.0000,0.3516,-0.0884 +0.9320,-0.0000,0.3516,-0.0884 +0.9320,-0.0000,0.3516,-0.0884 +0.9320,-0.0000,0.3516,-0.0884 +0.9319,-0.0000,0.3548,-0.0754 +0.9319,-0.0000,0.3548,-0.0754 +0.9319,-0.0000,0.3548,-0.0754 +0.9319,-0.0000,0.3548,-0.0754 +0.9316,-0.0000,0.3581,-0.0625 +0.9316,-0.0000,0.3581,-0.0625 +0.9316,-0.0000,0.3581,-0.0625 +0.9316,-0.0000,0.3581,-0.0625 +0.9311,-0.0000,0.3614,-0.0498 +0.9311,-0.0000,0.3614,-0.0498 +0.9311,-0.0000,0.3614,-0.0498 +0.9311,-0.0000,0.3614,-0.0498 +0.9303,-0.0000,0.3648,-0.0371 +0.9303,-0.0000,0.3648,-0.0371 +0.9303,-0.0000,0.3648,-0.0371 +0.9303,-0.0000,0.3648,-0.0371 +0.9294,-0.0000,0.3683,-0.0246 +0.9294,-0.0000,0.3683,-0.0246 +0.9294,-0.0000,0.3683,-0.0246 +0.9294,-0.0000,0.3683,-0.0246 +0.9282,-0.0000,0.3718,-0.0122 +0.9282,-0.0000,0.3718,-0.0122 +0.9282,-0.0000,0.3718,-0.0122 +0.9282,-0.0000,0.3718,-0.0122 +0.9269,0.0000,0.3754,0.0000 +0.9269,0.0000,0.3754,0.0000 +0.9269,0.0000,0.3754,0.0000 +0.9269,0.0000,0.3754,0.0000 diff --git a/scripts/trajectories/full-circle-with-up-and-down-4s-fixed-pos-offset-Vector3.csv b/scripts/trajectories/full-circle-with-up-and-down-4s-fixed-pos-offset-Vector3.csv index cd05b6e1a859899bd05337d13e130091367cd5b1..c858131d945425a27860315c123758a1544ad922 100644 --- a/scripts/trajectories/full-circle-with-up-and-down-4s-fixed-pos-offset-Vector3.csv +++ b/scripts/trajectories/full-circle-with-up-and-down-4s-fixed-pos-offset-Vector3.csv @@ -1,200 +1,200 @@ -10.0000000000,10.0000000000,10.0000000000,10.7011852264,9.9779644012,9.2873611450 -10.0000000000,10.0000000000,10.0000000000,10.7057113647,9.9556007385,9.2928934097 -10.0000000000,10.0000000000,10.0000000000,10.7094755173,9.9329347610,9.2984685898 -10.0000000000,10.0000000000,10.0000000000,10.7124633789,9.9099950790,9.3040876389 -10.0000000000,10.0000000000,10.0000000000,10.7146615982,9.8868083954,9.3097486496 -10.0000000000,10.0000000000,10.0000000000,10.7160568237,9.8634052277,9.3154525757 -10.0000000000,10.0000000000,10.0000000000,10.7166376114,9.8398122787,9.3211994171 -10.0000000000,10.0000000000,10.0000000000,10.7163944244,9.8160610199,9.3269872665 -10.0000000000,10.0000000000,10.0000000000,10.7153167725,9.7921810150,9.3328170776 -10.0000000000,10.0000000000,10.0000000000,10.7133979797,9.7682027817,9.3386878967 -10.0000000000,10.0000000000,10.0000000000,10.7106304169,9.7441577911,9.3445997238 -10.0000000000,10.0000000000,10.0000000000,10.7070074081,9.7200756073,9.3505516052 -10.0000000000,10.0000000000,10.0000000000,10.7025260925,9.6959896088,9.3565444946 -10.0000000000,10.0000000000,10.0000000000,10.6971807480,9.6719312668,9.3625755310 -10.0000000000,10.0000000000,10.0000000000,10.6909713745,9.6479320526,9.3686475754 -10.0000000000,10.0000000000,10.0000000000,10.6838960648,9.6240243912,9.3747577667 -10.0000000000,10.0000000000,10.0000000000,10.6759548187,9.6002407074,9.3809061050 -10.0000000000,10.0000000000,10.0000000000,10.6671495438,9.5766134262,9.3870925903 -10.0000000000,10.0000000000,10.0000000000,10.6574831009,9.5531749725,9.3933181763 -10.0000000000,10.0000000000,10.0000000000,10.6469583511,9.5299568176,9.3995800018 -10.0000000000,10.0000000000,10.0000000000,10.6355810165,9.5069923401,9.4058790207 -10.0000000000,10.0000000000,10.0000000000,10.6233577728,9.4843130112,9.4122152328 -10.0000000000,10.0000000000,10.0000000000,10.6102962494,9.4619512558,9.4185867310 -10.0000000000,10.0000000000,10.0000000000,10.5964050293,9.4399375916,9.4249944687 -10.0000000000,10.0000000000,10.0000000000,10.5816946030,9.4183053970,9.4314384460 -10.0000000000,10.0000000000,10.0000000000,10.5661754608,9.3970842361,9.4379167557 -10.0000000000,10.0000000000,10.0000000000,10.5498609543,9.3763055801,9.4444293976 -10.0000000000,10.0000000000,10.0000000000,10.5327634811,9.3559989929,9.4509773254 -10.0000000000,10.0000000000,10.0000000000,10.5148992538,9.3361959457,9.4575586319 -10.0000000000,10.0000000000,10.0000000000,10.4962835312,9.3169240952,9.4641733170 -10.0000000000,10.0000000000,10.0000000000,10.4769334793,9.2982139587,9.4708213806 -10.0000000000,10.0000000000,10.0000000000,10.4568672180,9.2800922394,9.4775018692 -10.0000000000,10.0000000000,10.0000000000,10.4361047745,9.2625865936,9.4842138290 -10.0000000000,10.0000000000,10.0000000000,10.4146652222,9.2457256317,9.4909591675 -10.0000000000,10.0000000000,10.0000000000,10.3925714493,9.2295341492,9.4977340698 -10.0000000000,10.0000000000,10.0000000000,10.3698453903,9.2140388489,9.5045413971 -10.0000000000,10.0000000000,10.0000000000,10.3465099335,9.1992626190,9.5113792419 -10.0000000000,10.0000000000,10.0000000000,10.3225898743,9.1852302551,9.5182466507 -10.0000000000,10.0000000000,10.0000000000,10.2981109619,9.1719655991,9.5251436234 -10.0000000000,10.0000000000,10.0000000000,10.2730979919,9.1594886780,9.5320701599 -10.0000000000,10.0000000000,10.0000000000,10.2475805283,9.1478223801,9.5390253067 -10.0000000000,10.0000000000,10.0000000000,10.2215843201,9.1369857788,9.5460100174 -10.0000000000,10.0000000000,10.0000000000,10.1951389313,9.1269989014,9.5530214310 -10.0000000000,10.0000000000,10.0000000000,10.1682729721,9.1178789139,9.5600605011 -10.0000000000,10.0000000000,10.0000000000,10.1410179138,9.1096429825,9.5671272278 -10.0000000000,10.0000000000,10.0000000000,10.1134042740,9.1023073196,9.5742206573 -10.0000000000,10.0000000000,10.0000000000,10.0854635239,9.0958871841,9.5813407898 -10.0000000000,10.0000000000,10.0000000000,10.0572271347,9.0903949738,9.5884857178 -10.0000000000,10.0000000000,10.0000000000,10.0287284851,9.0858440399,9.5956563950 -10.0000000000,10.0000000000,10.0000000000,9.9999990463,9.0822448730,9.6028518677 -10.0000000000,10.0000000000,10.0000000000,9.9710750580,9.0796089172,9.6100721359 -10.0000000000,10.0000000000,10.0000000000,9.9419889450,9.0779438019,9.6173171997 -10.0000000000,10.0000000000,10.0000000000,9.9127750397,9.0772571564,9.6245841980 -10.0000000000,10.0000000000,10.0000000000,9.8834676743,9.0775547028,9.6318759918 -10.0000000000,10.0000000000,10.0000000000,9.8541021347,9.0788431168,9.6391897202 -10.0000000000,10.0000000000,10.0000000000,9.8247146606,9.0811252594,9.6465253830 -10.0000000000,10.0000000000,10.0000000000,9.7953395844,9.0844030380,9.6538829803 -10.0000000000,10.0000000000,10.0000000000,9.7660121918,9.0886783600,9.6612625122 -10.0000000000,10.0000000000,10.0000000000,9.7367677689,9.0939512253,9.6686620712 -10.0000000000,10.0000000000,10.0000000000,9.7076425552,9.1002197266,9.6760826111 -10.0000000000,10.0000000000,10.0000000000,9.6786727905,9.1074810028,9.6835231781 -10.0000000000,10.0000000000,10.0000000000,9.6498918533,9.1157302856,9.6909828186 -10.0000000000,10.0000000000,10.0000000000,9.6213369370,9.1249628067,9.6984624863 -10.0000000000,10.0000000000,10.0000000000,9.5930423737,9.1351728439,9.7059602737 -10.0000000000,10.0000000000,10.0000000000,9.5650434494,9.1463508606,9.7134752274 -10.0000000000,10.0000000000,10.0000000000,9.5373744965,9.1584882736,9.7210092545 -10.0000000000,10.0000000000,10.0000000000,9.5100698471,9.1715745926,9.7285594940 -10.0000000000,10.0000000000,10.0000000000,9.4831638336,9.1855974197,9.7361268997 -10.0000000000,10.0000000000,10.0000000000,9.4566898346,9.2005443573,9.7437105179 -10.0000000000,10.0000000000,10.0000000000,9.4306802750,9.2164001465,9.7513103485 -10.0000000000,10.0000000000,10.0000000000,9.4051694870,9.2331495285,9.7589254379 -10.0000000000,10.0000000000,10.0000000000,9.3801879883,9.2507762909,9.7665548325 -10.0000000000,10.0000000000,10.0000000000,9.3557672501,9.2692623138,9.7741985321 -10.0000000000,10.0000000000,10.0000000000,9.3319387436,9.2885875702,9.7818565369 -10.0000000000,10.0000000000,10.0000000000,9.3087320328,9.3087329865,9.7895288467 -10.0000000000,10.0000000000,10.0000000000,9.2861766815,9.3296766281,9.7972126007 -10.0000000000,10.0000000000,10.0000000000,9.2643013000,9.3513956070,9.8049097061 -10.0000000000,10.0000000000,10.0000000000,9.2431344986,9.3738670349,9.8126192093 -10.0000000000,10.0000000000,10.0000000000,9.2227010727,9.3970661163,9.8203392029 -10.0000000000,10.0000000000,10.0000000000,9.2030296326,9.4209680557,9.8280715942 -10.0000000000,10.0000000000,10.0000000000,9.1841430664,9.4455451965,9.8358135223 -10.0000000000,10.0000000000,10.0000000000,9.1660671234,9.4707708359,9.8435659409 -10.0000000000,10.0000000000,10.0000000000,9.1488237381,9.4966163635,9.8513278961 -10.0000000000,10.0000000000,10.0000000000,9.1324348450,9.5230531693,9.8590993881 -10.0000000000,10.0000000000,10.0000000000,9.1169233322,9.5500507355,9.8668785095 -10.0000000000,10.0000000000,10.0000000000,9.1023073196,9.5775785446,9.8746671677 -10.0000000000,10.0000000000,10.0000000000,9.0886068344,9.6056060791,9.8824625015 -10.0000000000,10.0000000000,10.0000000000,9.0758380890,9.6340990067,9.8902664185 -10.0000000000,10.0000000000,10.0000000000,9.0640192032,9.6630268097,9.8980760574 -10.0000000000,10.0000000000,10.0000000000,9.0531635284,9.6923551559,9.9058923721 -10.0000000000,10.0000000000,10.0000000000,9.0432872772,9.7220506668,9.9137134552 -10.0000000000,10.0000000000,10.0000000000,9.0344028473,9.7520780563,9.9215412140 -10.0000000000,10.0000000000,10.0000000000,9.0265197754,9.7824020386,9.9293737411 -10.0000000000,10.0000000000,10.0000000000,9.0196514130,9.8129892349,9.9372100830 -10.0000000000,10.0000000000,10.0000000000,9.0138034821,9.8438024521,9.9450502396 -10.0000000000,10.0000000000,10.0000000000,9.0089864731,9.8748073578,9.9528942108 -10.0000000000,10.0000000000,10.0000000000,9.0052051544,9.9059648514,9.9607400894 -10.0000000000,10.0000000000,10.0000000000,9.0024652481,9.9372415543,9.9685897827 -10.0000000000,10.0000000000,10.0000000000,9.0007705688,9.9685993195,9.9764404297 -10.0000000000,10.0000000000,10.0000000000,9.0001230240,10.0000009537,9.9842929840 -10.0000000000,10.0000000000,10.0000000000,9.0005245209,10.0314111710,9.9921464920 -10.0000000000,10.0000000000,10.0000000000,9.0019731522,10.0627918243,10.0000000000 -10.0000000000,10.0000000000,10.0000000000,9.0044689178,10.0941066742,10.0078544617 -10.0000000000,10.0000000000,10.0000000000,9.0080080032,10.1253185272,10.0157079697 -10.0000000000,10.0000000000,10.0000000000,9.0125856400,10.1563920975,10.0235605240 -10.0000000000,10.0000000000,10.0000000000,9.0181980133,10.1872901917,10.0314111710 -10.0000000000,10.0000000000,10.0000000000,9.0248355865,10.2179765701,10.0392599106 -10.0000000000,10.0000000000,10.0000000000,9.0324926376,10.2484149933,10.0471067429 -10.0000000000,10.0000000000,10.0000000000,9.0411577225,10.2785711288,10.0549507141 -10.0000000000,10.0000000000,10.0000000000,9.0508203506,10.3084087372,10.0627908707 -10.0000000000,10.0000000000,10.0000000000,9.0614690781,10.3378934860,10.0706272125 -10.0000000000,10.0000000000,10.0000000000,9.0730905533,10.3669910431,10.0784597397 -10.0000000000,10.0000000000,10.0000000000,9.0856685638,10.3956680298,10.0862865448 -10.0000000000,10.0000000000,10.0000000000,9.0991888046,10.4238910675,10.0941085815 -10.0000000000,10.0000000000,10.0000000000,9.1136341095,10.4516277313,10.1019248962 -10.0000000000,10.0000000000,10.0000000000,9.1289863586,10.4788455963,10.1097345352 -10.0000000000,10.0000000000,10.0000000000,9.1452245712,10.5055141449,10.1175374985 -10.0000000000,10.0000000000,10.0000000000,9.1623306274,10.5316028595,10.1253337860 -10.0000000000,10.0000000000,10.0000000000,9.1802816391,10.5570812225,10.1331214905 -10.0000000000,10.0000000000,10.0000000000,9.1990547180,10.5819225311,10.1409015656 -10.0000000000,10.0000000000,10.0000000000,9.2186269760,10.6060962677,10.1486730576 -10.0000000000,10.0000000000,10.0000000000,9.2389736176,10.6295776367,10.1564350128 -10.0000000000,10.0000000000,10.0000000000,9.2600688934,10.6523380280,10.1641874313 -10.0000000000,10.0000000000,10.0000000000,9.2818870544,10.6743545532,10.1719293594 -10.0000000000,10.0000000000,10.0000000000,9.3043994904,10.6956024170,10.1796607971 -10.0000000000,10.0000000000,10.0000000000,9.3275794983,10.7160577774,10.1873817444 -10.0000000000,10.0000000000,10.0000000000,9.3513965607,10.7356987000,10.1950902939 -10.0000000000,10.0000000000,10.0000000000,9.3758211136,10.7545051575,10.2027873993 -10.0000000000,10.0000000000,10.0000000000,9.4008226395,10.7724561691,10.2104721069 -10.0000000000,10.0000000000,10.0000000000,9.4263715744,10.7895336151,10.2181434631 -10.0000000000,10.0000000000,10.0000000000,9.4524345398,10.8057203293,10.2258014679 -10.0000000000,10.0000000000,10.0000000000,9.4789791107,10.8210000992,10.2334461212 -10.0000000000,10.0000000000,10.0000000000,9.5059728622,10.8353557587,10.2410755157 -10.0000000000,10.0000000000,10.0000000000,9.5333824158,10.8487758636,10.2486906052 -10.0000000000,10.0000000000,10.0000000000,9.5611734390,10.8612470627,10.2562894821 -10.0000000000,10.0000000000,10.0000000000,9.5893125534,10.8727579117,10.2638731003 -10.0000000000,10.0000000000,10.0000000000,9.6177644730,10.8832979202,10.2714405060 -10.0000000000,10.0000000000,10.0000000000,9.6464939117,10.8928585052,10.2789916992 -10.0000000000,10.0000000000,10.0000000000,9.6754655838,10.9014329910,10.2865247726 -10.0000000000,10.0000000000,10.0000000000,9.7046451569,10.9090137482,10.2940406799 -10.0000000000,10.0000000000,10.0000000000,9.7339963913,10.9155960083,10.3015384674 -10.0000000000,10.0000000000,10.0000000000,9.7634830475,10.9211778641,10.3090171814 -10.0000000000,10.0000000000,10.0000000000,9.7930707932,10.9257545471,10.3164777756 -10.0000000000,10.0000000000,10.0000000000,9.8227224350,10.9293279648,10.3239173889 -10.0000000000,10.0000000000,10.0000000000,9.8524036407,10.9318962097,10.3313379288 -10.0000000000,10.0000000000,10.0000000000,9.8820781708,10.9334621429,10.3387384415 -10.0000000000,10.0000000000,10.0000000000,9.9117097855,10.9340276718,10.3461170197 -10.0000000000,10.0000000000,10.0000000000,9.9412641525,10.9335975647,10.3534755707 -10.0000000000,10.0000000000,10.0000000000,9.9707059860,10.9321784973,10.3608112335 -10.0000000000,10.0000000000,10.0000000000,10.0000009537,10.9297761917,10.3681249619 -10.0000000000,10.0000000000,10.0000000000,10.0291147232,10.9263992310,10.3754158020 -10.0000000000,10.0000000000,10.0000000000,10.0580120087,10.9220561981,10.3826837540 -10.0000000000,10.0000000000,10.0000000000,10.0866603851,10.9167585373,10.3899278641 -10.0000000000,10.0000000000,10.0000000000,10.1150264740,10.9105176926,10.3971481323 -10.0000000000,10.0000000000,10.0000000000,10.1430778503,10.9033460617,10.4043436050 -10.0000000000,10.0000000000,10.0000000000,10.1707811356,10.8952598572,10.4115152359 -10.0000000000,10.0000000000,10.0000000000,10.1981067657,10.8862714767,10.4186601639 -10.0000000000,10.0000000000,10.0000000000,10.2250223160,10.8763999939,10.4257793427 -10.0000000000,10.0000000000,10.0000000000,10.2514991760,10.8656606674,10.4328727722 -10.0000000000,10.0000000000,10.0000000000,10.2775068283,10.8540744781,10.4399394989 -10.0000000000,10.0000000000,10.0000000000,10.3030176163,10.8416595459,10.4469795227 -10.0000000000,10.0000000000,10.0000000000,10.3280029297,10.8284358978,10.4539909363 -10.0000000000,10.0000000000,10.0000000000,10.3524360657,10.8144273758,10.4609746933 -10.0000000000,10.0000000000,10.0000000000,10.3762903214,10.7996540070,10.4679298401 -10.0000000000,10.0000000000,10.0000000000,10.3995418549,10.7841415405,10.4748573303 -10.0000000000,10.0000000000,10.0000000000,10.4221649170,10.7679128647,10.4817543030 -10.0000000000,10.0000000000,10.0000000000,10.4441375732,10.7509927750,10.4886217117 -10.0000000000,10.0000000000,10.0000000000,10.4654369354,10.7334089279,10.4954595566 -10.0000000000,10.0000000000,10.0000000000,10.4860420227,10.7151870728,10.5022659302 -10.0000000000,10.0000000000,10.0000000000,10.5059328079,10.6963539124,10.5090417862 -10.0000000000,10.0000000000,10.0000000000,10.5250892639,10.6769390106,10.5157861710 -10.0000000000,10.0000000000,10.0000000000,10.5434942245,10.6569690704,10.5224990845 -10.0000000000,10.0000000000,10.0000000000,10.5611305237,10.6364755630,10.5291795731 -10.0000000000,10.0000000000,10.0000000000,10.5779829025,10.6154870987,10.5358276367 -10.0000000000,10.0000000000,10.0000000000,10.5940370560,10.5940341949,10.5424423218 -10.0000000000,10.0000000000,10.0000000000,10.6092777252,10.5721483231,10.5490236282 -10.0000000000,10.0000000000,10.0000000000,10.6236953735,10.5498590469,10.5555706024 -10.0000000000,10.0000000000,10.0000000000,10.6372776031,10.5271997452,10.5620841980 -10.0000000000,10.0000000000,10.0000000000,10.6500139236,10.5042009354,10.5685625076 -10.0000000000,10.0000000000,10.0000000000,10.6618976593,10.4808950424,10.5750055313 -10.0000000000,10.0000000000,10.0000000000,10.6729202271,10.4573144913,10.5814132690 -10.0000000000,10.0000000000,10.0000000000,10.6830759048,10.4334917068,10.5877857208 -10.0000000000,10.0000000000,10.0000000000,10.6923599243,10.4094591141,10.5941219330 -10.0000000000,10.0000000000,10.0000000000,10.7007694244,10.3852491379,10.6004209518 -10.0000000000,10.0000000000,10.0000000000,10.7083005905,10.3608961105,10.6066827774 -10.0000000000,10.0000000000,10.0000000000,10.7149543762,10.3364305496,10.6129074097 -10.0000000000,10.0000000000,10.0000000000,10.7207288742,10.3118858337,10.6190948486 -10.0000000000,10.0000000000,10.0000000000,10.7256259918,10.2872943878,10.6252431870 -10.0000000000,10.0000000000,10.0000000000,10.7296495438,10.2626886368,10.6313533783 -10.0000000000,10.0000000000,10.0000000000,10.7328014374,10.2381000519,10.6374244690 -10.0000000000,10.0000000000,10.0000000000,10.7350883484,10.2135610580,10.6434564590 -10.0000000000,10.0000000000,10.0000000000,10.7365159988,10.1891040802,10.6494483948 -10.0000000000,10.0000000000,10.0000000000,10.7370920181,10.1647577286,10.6554002762 -10.0000000000,10.0000000000,10.0000000000,10.7368240356,10.1405553818,10.6613121033 -10.0000000000,10.0000000000,10.0000000000,10.7357234955,10.1165256500,10.6671829224 -10.0000000000,10.0000000000,10.0000000000,10.7337989807,10.0926990509,10.6730127335 -10.0000000000,10.0000000000,10.0000000000,10.7310628891,10.0691041946,10.6788015366 -10.0000000000,10.0000000000,10.0000000000,10.7275295258,10.0457706451,10.6845474243 -10.0000000000,10.0000000000,10.0000000000,10.7232122421,10.0227260590,10.6902513504 -10.0000000000,10.0000000000,10.0000000000,10.7181262970,9.9999980927,10.6959133148 +10.0000,10.0000,10.0000,10.7012,9.9780,9.2874 +10.0000,10.0000,10.0000,10.7057,9.9556,9.2929 +10.0000,10.0000,10.0000,10.7095,9.9329,9.2985 +10.0000,10.0000,10.0000,10.7125,9.9100,9.3041 +10.0000,10.0000,10.0000,10.7147,9.8868,9.3097 +10.0000,10.0000,10.0000,10.7161,9.8634,9.3155 +10.0000,10.0000,10.0000,10.7166,9.8398,9.3212 +10.0000,10.0000,10.0000,10.7164,9.8161,9.3270 +10.0000,10.0000,10.0000,10.7153,9.7922,9.3328 +10.0000,10.0000,10.0000,10.7134,9.7682,9.3387 +10.0000,10.0000,10.0000,10.7106,9.7442,9.3446 +10.0000,10.0000,10.0000,10.7070,9.7201,9.3506 +10.0000,10.0000,10.0000,10.7025,9.6960,9.3565 +10.0000,10.0000,10.0000,10.6972,9.6719,9.3626 +10.0000,10.0000,10.0000,10.6910,9.6479,9.3686 +10.0000,10.0000,10.0000,10.6839,9.6240,9.3748 +10.0000,10.0000,10.0000,10.6760,9.6002,9.3809 +10.0000,10.0000,10.0000,10.6671,9.5766,9.3871 +10.0000,10.0000,10.0000,10.6575,9.5532,9.3933 +10.0000,10.0000,10.0000,10.6470,9.5300,9.3996 +10.0000,10.0000,10.0000,10.6356,9.5070,9.4059 +10.0000,10.0000,10.0000,10.6234,9.4843,9.4122 +10.0000,10.0000,10.0000,10.6103,9.4620,9.4186 +10.0000,10.0000,10.0000,10.5964,9.4399,9.4250 +10.0000,10.0000,10.0000,10.5817,9.4183,9.4314 +10.0000,10.0000,10.0000,10.5662,9.3971,9.4379 +10.0000,10.0000,10.0000,10.5499,9.3763,9.4444 +10.0000,10.0000,10.0000,10.5328,9.3560,9.4510 +10.0000,10.0000,10.0000,10.5149,9.3362,9.4576 +10.0000,10.0000,10.0000,10.4963,9.3169,9.4642 +10.0000,10.0000,10.0000,10.4769,9.2982,9.4708 +10.0000,10.0000,10.0000,10.4569,9.2801,9.4775 +10.0000,10.0000,10.0000,10.4361,9.2626,9.4842 +10.0000,10.0000,10.0000,10.4147,9.2457,9.4910 +10.0000,10.0000,10.0000,10.3926,9.2295,9.4977 +10.0000,10.0000,10.0000,10.3698,9.2140,9.5045 +10.0000,10.0000,10.0000,10.3465,9.1993,9.5114 +10.0000,10.0000,10.0000,10.3226,9.1852,9.5182 +10.0000,10.0000,10.0000,10.2981,9.1720,9.5251 +10.0000,10.0000,10.0000,10.2731,9.1595,9.5321 +10.0000,10.0000,10.0000,10.2476,9.1478,9.5390 +10.0000,10.0000,10.0000,10.2216,9.1370,9.5460 +10.0000,10.0000,10.0000,10.1951,9.1270,9.5530 +10.0000,10.0000,10.0000,10.1683,9.1179,9.5601 +10.0000,10.0000,10.0000,10.1410,9.1096,9.5671 +10.0000,10.0000,10.0000,10.1134,9.1023,9.5742 +10.0000,10.0000,10.0000,10.0855,9.0959,9.5813 +10.0000,10.0000,10.0000,10.0572,9.0904,9.5885 +10.0000,10.0000,10.0000,10.0287,9.0858,9.5957 +10.0000,10.0000,10.0000,10.0000,9.0822,9.6029 +10.0000,10.0000,10.0000,9.9711,9.0796,9.6101 +10.0000,10.0000,10.0000,9.9420,9.0779,9.6173 +10.0000,10.0000,10.0000,9.9128,9.0773,9.6246 +10.0000,10.0000,10.0000,9.8835,9.0776,9.6319 +10.0000,10.0000,10.0000,9.8541,9.0788,9.6392 +10.0000,10.0000,10.0000,9.8247,9.0811,9.6465 +10.0000,10.0000,10.0000,9.7953,9.0844,9.6539 +10.0000,10.0000,10.0000,9.7660,9.0887,9.6613 +10.0000,10.0000,10.0000,9.7368,9.0940,9.6687 +10.0000,10.0000,10.0000,9.7076,9.1002,9.6761 +10.0000,10.0000,10.0000,9.6787,9.1075,9.6835 +10.0000,10.0000,10.0000,9.6499,9.1157,9.6910 +10.0000,10.0000,10.0000,9.6213,9.1250,9.6985 +10.0000,10.0000,10.0000,9.5930,9.1352,9.7060 +10.0000,10.0000,10.0000,9.5650,9.1464,9.7135 +10.0000,10.0000,10.0000,9.5374,9.1585,9.7210 +10.0000,10.0000,10.0000,9.5101,9.1716,9.7286 +10.0000,10.0000,10.0000,9.4832,9.1856,9.7361 +10.0000,10.0000,10.0000,9.4567,9.2005,9.7437 +10.0000,10.0000,10.0000,9.4307,9.2164,9.7513 +10.0000,10.0000,10.0000,9.4052,9.2331,9.7589 +10.0000,10.0000,10.0000,9.3802,9.2508,9.7666 +10.0000,10.0000,10.0000,9.3558,9.2693,9.7742 +10.0000,10.0000,10.0000,9.3319,9.2886,9.7819 +10.0000,10.0000,10.0000,9.3087,9.3087,9.7895 +10.0000,10.0000,10.0000,9.2862,9.3297,9.7972 +10.0000,10.0000,10.0000,9.2643,9.3514,9.8049 +10.0000,10.0000,10.0000,9.2431,9.3739,9.8126 +10.0000,10.0000,10.0000,9.2227,9.3971,9.8203 +10.0000,10.0000,10.0000,9.2030,9.4210,9.8281 +10.0000,10.0000,10.0000,9.1841,9.4455,9.8358 +10.0000,10.0000,10.0000,9.1661,9.4708,9.8436 +10.0000,10.0000,10.0000,9.1488,9.4966,9.8513 +10.0000,10.0000,10.0000,9.1324,9.5231,9.8591 +10.0000,10.0000,10.0000,9.1169,9.5501,9.8669 +10.0000,10.0000,10.0000,9.1023,9.5776,9.8747 +10.0000,10.0000,10.0000,9.0886,9.6056,9.8825 +10.0000,10.0000,10.0000,9.0758,9.6341,9.8903 +10.0000,10.0000,10.0000,9.0640,9.6630,9.8981 +10.0000,10.0000,10.0000,9.0532,9.6924,9.9059 +10.0000,10.0000,10.0000,9.0433,9.7221,9.9137 +10.0000,10.0000,10.0000,9.0344,9.7521,9.9215 +10.0000,10.0000,10.0000,9.0265,9.7824,9.9294 +10.0000,10.0000,10.0000,9.0197,9.8130,9.9372 +10.0000,10.0000,10.0000,9.0138,9.8438,9.9451 +10.0000,10.0000,10.0000,9.0090,9.8748,9.9529 +10.0000,10.0000,10.0000,9.0052,9.9060,9.9607 +10.0000,10.0000,10.0000,9.0025,9.9372,9.9686 +10.0000,10.0000,10.0000,9.0008,9.9686,9.9764 +10.0000,10.0000,10.0000,9.0001,10.0000,9.9843 +10.0000,10.0000,10.0000,9.0005,10.0314,9.9921 +10.0000,10.0000,10.0000,9.0020,10.0628,10.0000 +10.0000,10.0000,10.0000,9.0045,10.0941,10.0079 +10.0000,10.0000,10.0000,9.0080,10.1253,10.0157 +10.0000,10.0000,10.0000,9.0126,10.1564,10.0236 +10.0000,10.0000,10.0000,9.0182,10.1873,10.0314 +10.0000,10.0000,10.0000,9.0248,10.2180,10.0393 +10.0000,10.0000,10.0000,9.0325,10.2484,10.0471 +10.0000,10.0000,10.0000,9.0412,10.2786,10.0550 +10.0000,10.0000,10.0000,9.0508,10.3084,10.0628 +10.0000,10.0000,10.0000,9.0615,10.3379,10.0706 +10.0000,10.0000,10.0000,9.0731,10.3670,10.0785 +10.0000,10.0000,10.0000,9.0857,10.3957,10.0863 +10.0000,10.0000,10.0000,9.0992,10.4239,10.0941 +10.0000,10.0000,10.0000,9.1136,10.4516,10.1019 +10.0000,10.0000,10.0000,9.1290,10.4788,10.1097 +10.0000,10.0000,10.0000,9.1452,10.5055,10.1175 +10.0000,10.0000,10.0000,9.1623,10.5316,10.1253 +10.0000,10.0000,10.0000,9.1803,10.5571,10.1331 +10.0000,10.0000,10.0000,9.1991,10.5819,10.1409 +10.0000,10.0000,10.0000,9.2186,10.6061,10.1487 +10.0000,10.0000,10.0000,9.2390,10.6296,10.1564 +10.0000,10.0000,10.0000,9.2601,10.6523,10.1642 +10.0000,10.0000,10.0000,9.2819,10.6744,10.1719 +10.0000,10.0000,10.0000,9.3044,10.6956,10.1797 +10.0000,10.0000,10.0000,9.3276,10.7161,10.1874 +10.0000,10.0000,10.0000,9.3514,10.7357,10.1951 +10.0000,10.0000,10.0000,9.3758,10.7545,10.2028 +10.0000,10.0000,10.0000,9.4008,10.7725,10.2105 +10.0000,10.0000,10.0000,9.4264,10.7895,10.2181 +10.0000,10.0000,10.0000,9.4524,10.8057,10.2258 +10.0000,10.0000,10.0000,9.4790,10.8210,10.2334 +10.0000,10.0000,10.0000,9.5060,10.8354,10.2411 +10.0000,10.0000,10.0000,9.5334,10.8488,10.2487 +10.0000,10.0000,10.0000,9.5612,10.8612,10.2563 +10.0000,10.0000,10.0000,9.5893,10.8728,10.2639 +10.0000,10.0000,10.0000,9.6178,10.8833,10.2714 +10.0000,10.0000,10.0000,9.6465,10.8929,10.2790 +10.0000,10.0000,10.0000,9.6755,10.9014,10.2865 +10.0000,10.0000,10.0000,9.7046,10.9090,10.2940 +10.0000,10.0000,10.0000,9.7340,10.9156,10.3015 +10.0000,10.0000,10.0000,9.7635,10.9212,10.3090 +10.0000,10.0000,10.0000,9.7931,10.9258,10.3165 +10.0000,10.0000,10.0000,9.8227,10.9293,10.3239 +10.0000,10.0000,10.0000,9.8524,10.9319,10.3313 +10.0000,10.0000,10.0000,9.8821,10.9335,10.3387 +10.0000,10.0000,10.0000,9.9117,10.9340,10.3461 +10.0000,10.0000,10.0000,9.9413,10.9336,10.3535 +10.0000,10.0000,10.0000,9.9707,10.9322,10.3608 +10.0000,10.0000,10.0000,10.0000,10.9298,10.3681 +10.0000,10.0000,10.0000,10.0291,10.9264,10.3754 +10.0000,10.0000,10.0000,10.0580,10.9221,10.3827 +10.0000,10.0000,10.0000,10.0867,10.9168,10.3899 +10.0000,10.0000,10.0000,10.1150,10.9105,10.3971 +10.0000,10.0000,10.0000,10.1431,10.9033,10.4043 +10.0000,10.0000,10.0000,10.1708,10.8953,10.4115 +10.0000,10.0000,10.0000,10.1981,10.8863,10.4187 +10.0000,10.0000,10.0000,10.2250,10.8764,10.4258 +10.0000,10.0000,10.0000,10.2515,10.8657,10.4329 +10.0000,10.0000,10.0000,10.2775,10.8541,10.4399 +10.0000,10.0000,10.0000,10.3030,10.8417,10.4470 +10.0000,10.0000,10.0000,10.3280,10.8284,10.4540 +10.0000,10.0000,10.0000,10.3524,10.8144,10.4610 +10.0000,10.0000,10.0000,10.3763,10.7997,10.4679 +10.0000,10.0000,10.0000,10.3995,10.7841,10.4749 +10.0000,10.0000,10.0000,10.4222,10.7679,10.4818 +10.0000,10.0000,10.0000,10.4441,10.7510,10.4886 +10.0000,10.0000,10.0000,10.4654,10.7334,10.4955 +10.0000,10.0000,10.0000,10.4860,10.7152,10.5023 +10.0000,10.0000,10.0000,10.5059,10.6964,10.5090 +10.0000,10.0000,10.0000,10.5251,10.6769,10.5158 +10.0000,10.0000,10.0000,10.5435,10.6570,10.5225 +10.0000,10.0000,10.0000,10.5611,10.6365,10.5292 +10.0000,10.0000,10.0000,10.5780,10.6155,10.5358 +10.0000,10.0000,10.0000,10.5940,10.5940,10.5424 +10.0000,10.0000,10.0000,10.6093,10.5721,10.5490 +10.0000,10.0000,10.0000,10.6237,10.5499,10.5556 +10.0000,10.0000,10.0000,10.6373,10.5272,10.5621 +10.0000,10.0000,10.0000,10.6500,10.5042,10.5686 +10.0000,10.0000,10.0000,10.6619,10.4809,10.5750 +10.0000,10.0000,10.0000,10.6729,10.4573,10.5814 +10.0000,10.0000,10.0000,10.6831,10.4335,10.5878 +10.0000,10.0000,10.0000,10.6924,10.4095,10.5941 +10.0000,10.0000,10.0000,10.7008,10.3852,10.6004 +10.0000,10.0000,10.0000,10.7083,10.3609,10.6067 +10.0000,10.0000,10.0000,10.7150,10.3364,10.6129 +10.0000,10.0000,10.0000,10.7207,10.3119,10.6191 +10.0000,10.0000,10.0000,10.7256,10.2873,10.6252 +10.0000,10.0000,10.0000,10.7296,10.2627,10.6314 +10.0000,10.0000,10.0000,10.7328,10.2381,10.6374 +10.0000,10.0000,10.0000,10.7351,10.2136,10.6435 +10.0000,10.0000,10.0000,10.7365,10.1891,10.6494 +10.0000,10.0000,10.0000,10.7371,10.1648,10.6554 +10.0000,10.0000,10.0000,10.7368,10.1406,10.6613 +10.0000,10.0000,10.0000,10.7357,10.1165,10.6672 +10.0000,10.0000,10.0000,10.7338,10.0927,10.6730 +10.0000,10.0000,10.0000,10.7311,10.0691,10.6788 +10.0000,10.0000,10.0000,10.7275,10.0458,10.6845 +10.0000,10.0000,10.0000,10.7232,10.0227,10.6903 +10.0000,10.0000,10.0000,10.7181,10.0000,10.6959 diff --git a/scripts/trajectories/full-circle-with-up-and-down-4s.csv b/scripts/trajectories/full-circle-with-up-and-down-4s.csv index 10026769f3a29fbc1201647aec6b48c32ad63ba3..31692f46736eacc50237c02ec4a532cee6c67927 100644 --- a/scripts/trajectories/full-circle-with-up-and-down-4s.csv +++ b/scripts/trajectories/full-circle-with-up-and-down-4s.csv @@ -1,800 +1,800 @@ -0.9222757816,-0.0000000000,0.3863478601,-0.0119463364 -0.9222757816,-0.0000000000,0.3863478601,-0.0119463364 -0.9222757816,-0.0000000000,0.3863478601,-0.0119463364 -0.9222757816,-0.0000000000,0.3863478601,-0.0119463364 -0.9235018492,-0.0000000000,0.3828399181,-0.0240387134 -0.9235018492,-0.0000000000,0.3828399181,-0.0240387134 -0.9235018492,-0.0000000000,0.3828399181,-0.0240387134 -0.9235018492,-0.0000000000,0.3828399181,-0.0240387134 -0.9245203137,-0.0000000000,0.3794029355,-0.0362702720 -0.9245203137,-0.0000000000,0.3794029355,-0.0362702720 -0.9245203137,-0.0000000000,0.3794029355,-0.0362702720 -0.9245203137,-0.0000000000,0.3794029355,-0.0362702720 -0.9253279567,-0.0000000000,0.3760357499,-0.0486341491 -0.9253279567,-0.0000000000,0.3760357499,-0.0486341491 -0.9253279567,-0.0000000000,0.3760357499,-0.0486341491 -0.9253279567,-0.0000000000,0.3760357499,-0.0486341491 -0.9259215593,-0.0000000000,0.3727374375,-0.0611235648 -0.9259215593,-0.0000000000,0.3727374375,-0.0611235648 -0.9259215593,-0.0000000000,0.3727374375,-0.0611235648 -0.9259215593,-0.0000000000,0.3727374375,-0.0611235648 -0.9262982011,-0.0000000000,0.3695068955,-0.0737317055 -0.9262982011,-0.0000000000,0.3695068955,-0.0737317055 -0.9262982011,-0.0000000000,0.3695068955,-0.0737317055 -0.9262982011,-0.0000000000,0.3695068955,-0.0737317055 -0.9264549613,-0.0000000000,0.3663431108,-0.0864518434 -0.9264549613,-0.0000000000,0.3663431108,-0.0864518434 -0.9264549613,-0.0000000000,0.3663431108,-0.0864518434 -0.9264549613,-0.0000000000,0.3663431108,-0.0864518434 -0.9263893366,-0.0000000000,0.3632450104,-0.0992772654 -0.9263893366,-0.0000000000,0.3632450104,-0.0992772654 -0.9263893366,-0.0000000000,0.3632450104,-0.0992772654 -0.9263893366,-0.0000000000,0.3632450104,-0.0992772654 -0.9260985851,-0.0000000000,0.3602115214,-0.1122012436 -0.9260985851,-0.0000000000,0.3602115214,-0.1122012436 -0.9260985851,-0.0000000000,0.3602115214,-0.1122012436 -0.9260985851,-0.0000000000,0.3602115214,-0.1122012436 -0.9255803227,-0.0000000000,0.3572416902,-0.1252171397 -0.9255803227,-0.0000000000,0.3572416902,-0.1252171397 -0.9255803227,-0.0000000000,0.3572416902,-0.1252171397 -0.9255803227,-0.0000000000,0.3572416902,-0.1252171397 -0.9248324037,-0.0000000000,0.3543345034,-0.1383183450 -0.9248324037,-0.0000000000,0.3543345034,-0.1383183450 -0.9248324037,-0.0000000000,0.3543345034,-0.1383183450 -0.9248324037,-0.0000000000,0.3543345034,-0.1383183450 -0.9238527417,-0.0000000000,0.3514889479,-0.1514982432 -0.9238527417,-0.0000000000,0.3514889479,-0.1514982432 -0.9238527417,-0.0000000000,0.3514889479,-0.1514982432 -0.9238527417,-0.0000000000,0.3514889479,-0.1514982432 -0.9226390719,-0.0000000000,0.3487039804,-0.1647502780 -0.9226390719,-0.0000000000,0.3487039804,-0.1647502780 -0.9226390719,-0.0000000000,0.3487039804,-0.1647502780 -0.9226390719,-0.0000000000,0.3487039804,-0.1647502780 -0.9211897850,-0.0000000000,0.3459786773,-0.1780678928 -0.9211897850,-0.0000000000,0.3459786773,-0.1780678928 -0.9211897850,-0.0000000000,0.3459786773,-0.1780678928 -0.9211897850,-0.0000000000,0.3459786773,-0.1780678928 -0.9195030928,-0.0000000000,0.3433119655,-0.1914445907 -0.9195030928,-0.0000000000,0.3433119655,-0.1914445907 -0.9195030928,-0.0000000000,0.3433119655,-0.1914445907 -0.9195030928,-0.0000000000,0.3433119655,-0.1914445907 -0.9175773859,-0.0000000000,0.3407030106,-0.2048739046 -0.9175773859,-0.0000000000,0.3407030106,-0.2048739046 -0.9175773859,-0.0000000000,0.3407030106,-0.2048739046 -0.9175773859,-0.0000000000,0.3407030106,-0.2048739046 -0.9154112339,-0.0000000000,0.3381507397,-0.2183493823 -0.9154112339,-0.0000000000,0.3381507397,-0.2183493823 -0.9154112339,-0.0000000000,0.3381507397,-0.2183493823 -0.9154112339,-0.0000000000,0.3381507397,-0.2183493823 -0.9130033255,-0.0000000000,0.3356543481,-0.2318646312 -0.9130033255,-0.0000000000,0.3356543481,-0.2318646312 -0.9130033255,-0.0000000000,0.3356543481,-0.2318646312 -0.9130033255,-0.0000000000,0.3356543481,-0.2318646312 -0.9103524089,-0.0000000000,0.3332128823,-0.2454132736 -0.9103524089,-0.0000000000,0.3332128823,-0.2454132736 -0.9103524089,-0.0000000000,0.3332128823,-0.2454132736 -0.9103524089,-0.0000000000,0.3332128823,-0.2454132736 -0.9074575305,-0.0000000000,0.3308254778,-0.2589889467 -0.9074575305,-0.0000000000,0.3308254778,-0.2589889467 -0.9074575305,-0.0000000000,0.3308254778,-0.2589889467 -0.9074575305,-0.0000000000,0.3308254778,-0.2589889467 -0.9043177962,-0.0000000000,0.3284913003,-0.2725853622 -0.9043177962,-0.0000000000,0.3284913003,-0.2725853622 -0.9043177962,-0.0000000000,0.3284913003,-0.2725853622 -0.9043177962,-0.0000000000,0.3284913003,-0.2725853622 -0.9009323716,-0.0000000000,0.3262094259,-0.2861962914 -0.9009323716,-0.0000000000,0.3262094259,-0.2861962914 -0.9009323716,-0.0000000000,0.3262094259,-0.2861962914 -0.9009323716,-0.0000000000,0.3262094259,-0.2861962914 -0.8973005414,-0.0000000000,0.3239790499,-0.2998153865 -0.8973005414,-0.0000000000,0.3239790499,-0.2998153865 -0.8973005414,-0.0000000000,0.3239790499,-0.2998153865 -0.8973005414,-0.0000000000,0.3239790499,-0.2998153865 -0.8934219480,-0.0000000000,0.3217993677,-0.3134365678 -0.8934219480,-0.0000000000,0.3217993677,-0.3134365678 -0.8934219480,-0.0000000000,0.3217993677,-0.3134365678 -0.8934219480,-0.0000000000,0.3217993677,-0.3134365678 -0.8892959952,-0.0000000000,0.3196696341,-0.3270535767 -0.8892959952,-0.0000000000,0.3196696341,-0.3270535767 -0.8892959952,-0.0000000000,0.3196696341,-0.3270535767 -0.8892959952,-0.0000000000,0.3196696341,-0.3270535767 -0.8849224448,-0.0000000000,0.3175890148,-0.3406603336 -0.8849224448,-0.0000000000,0.3175890148,-0.3406603336 -0.8849224448,-0.0000000000,0.3175890148,-0.3406603336 -0.8849224448,-0.0000000000,0.3175890148,-0.3406603336 -0.8803012967,-0.0000000000,0.3155568540,-0.3542507291 -0.8803012967,-0.0000000000,0.3155568540,-0.3542507291 -0.8803012967,-0.0000000000,0.3155568540,-0.3542507291 -0.8803012967,-0.0000000000,0.3155568540,-0.3542507291 -0.8754323125,-0.0000000000,0.3135723472,-0.3678187430 -0.8754323125,-0.0000000000,0.3135723472,-0.3678187430 -0.8754323125,-0.0000000000,0.3135723472,-0.3678187430 -0.8754323125,-0.0000000000,0.3135723472,-0.3678187430 -0.8703157306,-0.0000000000,0.3116348386,-0.3813582659 -0.8703157306,-0.0000000000,0.3116348386,-0.3813582659 -0.8703157306,-0.0000000000,0.3116348386,-0.3813582659 -0.8703157306,-0.0000000000,0.3116348386,-0.3813582659 -0.8649518490,-0.0000000000,0.3097436726,-0.3948634863 -0.8649518490,-0.0000000000,0.3097436726,-0.3948634863 -0.8649518490,-0.0000000000,0.3097436726,-0.3948634863 -0.8649518490,-0.0000000000,0.3097436726,-0.3948634863 -0.8593408465,-0.0000000000,0.3078981638,-0.4083283842 -0.8593408465,-0.0000000000,0.3078981638,-0.4083283842 -0.8593408465,-0.0000000000,0.3078981638,-0.4083283842 -0.8593408465,-0.0000000000,0.3078981638,-0.4083283842 -0.8534832597,-0.0000000000,0.3060976863,-0.4217470884 -0.8534832597,-0.0000000000,0.3060976863,-0.4217470884 -0.8534832597,-0.0000000000,0.3060976863,-0.4217470884 -0.8534832597,-0.0000000000,0.3060976863,-0.4217470884 -0.8473796248,-0.0000000000,0.3043416440,-0.4351136684 -0.8473796248,-0.0000000000,0.3043416440,-0.4351136684 -0.8473796248,-0.0000000000,0.3043416440,-0.4351136684 -0.8473796248,-0.0000000000,0.3043416440,-0.4351136684 -0.8410307169,-0.0000000000,0.3026294112,-0.4484224617 -0.8410307169,-0.0000000000,0.3026294112,-0.4484224617 -0.8410307169,-0.0000000000,0.3026294112,-0.4484224617 -0.8410307169,-0.0000000000,0.3026294112,-0.4484224617 -0.8344373703,-0.0000000000,0.3009605408,-0.4616676569 -0.8344373703,-0.0000000000,0.3009605408,-0.4616676569 -0.8344373703,-0.0000000000,0.3009605408,-0.4616676569 -0.8344373703,-0.0000000000,0.3009605408,-0.4616676569 -0.8276004195,-0.0000000000,0.2993344069,-0.4748435318 -0.8276004195,-0.0000000000,0.2993344069,-0.4748435318 -0.8276004195,-0.0000000000,0.2993344069,-0.4748435318 -0.8276004195,-0.0000000000,0.2993344069,-0.4748435318 -0.8205211163,-0.0000000000,0.2977505326,-0.4879444838 -0.8205211163,-0.0000000000,0.2977505326,-0.4879444838 -0.8205211163,-0.0000000000,0.2977505326,-0.4879444838 -0.8205211163,-0.0000000000,0.2977505326,-0.4879444838 -0.8132003546,-0.0000000000,0.2962084115,-0.5009647608 -0.8132003546,-0.0000000000,0.2962084115,-0.5009647608 -0.8132003546,-0.0000000000,0.2962084115,-0.5009647608 -0.8132003546,-0.0000000000,0.2962084115,-0.5009647608 -0.8056396842,-0.0000000000,0.2947076261,-0.5138990283 -0.8056396842,-0.0000000000,0.2947076261,-0.5138990283 -0.8056396842,-0.0000000000,0.2947076261,-0.5138990283 -0.8056396842,-0.0000000000,0.2947076261,-0.5138990283 -0.7978402376,-0.0000000000,0.2932477295,-0.5267415643 -0.7978402376,-0.0000000000,0.2932477295,-0.5267415643 -0.7978402376,-0.0000000000,0.2932477295,-0.5267415643 -0.7978402376,-0.0000000000,0.2932477295,-0.5267415643 -0.7898038626,-0.0000000000,0.2918283343,-0.5394869447 -0.7898038626,-0.0000000000,0.2918283343,-0.5394869447 -0.7898038626,-0.0000000000,0.2918283343,-0.5394869447 -0.7898038626,-0.0000000000,0.2918283343,-0.5394869447 -0.7815317512,-0.0000000000,0.2904490530,-0.5521298051 -0.7815317512,-0.0000000000,0.2904490530,-0.5521298051 -0.7815317512,-0.0000000000,0.2904490530,-0.5521298051 -0.7815317512,-0.0000000000,0.2904490530,-0.5521298051 -0.7730259895,-0.0000000000,0.2891096175,-0.5646648407 -0.7730259895,-0.0000000000,0.2891096175,-0.5646648407 -0.7730259895,-0.0000000000,0.2891096175,-0.5646648407 -0.7730259895,-0.0000000000,0.2891096175,-0.5646648407 -0.7642883062,-0.0000000000,0.2878096104,-0.5770866871 -0.7642883062,-0.0000000000,0.2878096104,-0.5770866871 -0.7642883062,-0.0000000000,0.2878096104,-0.5770866871 -0.7642883062,-0.0000000000,0.2878096104,-0.5770866871 -0.7553205490,-0.0000000000,0.2865488529,-0.5893900394 -0.7553205490,-0.0000000000,0.2865488529,-0.5893900394 -0.7553205490,-0.0000000000,0.2865488529,-0.5893900394 -0.7553205490,-0.0000000000,0.2865488529,-0.5893900394 -0.7461248636,-0.0000000000,0.2853270471,-0.6015698314 -0.7461248636,-0.0000000000,0.2853270471,-0.6015698314 -0.7461248636,-0.0000000000,0.2853270471,-0.6015698314 -0.7461248636,-0.0000000000,0.2853270471,-0.6015698314 -0.7367032766,-0.0000000000,0.2841439843,-0.6136208177 -0.7367032766,-0.0000000000,0.2841439843,-0.6136208177 -0.7367032766,-0.0000000000,0.2841439843,-0.6136208177 -0.7367032766,-0.0000000000,0.2841439843,-0.6136208177 -0.7270581126,-0.0000000000,0.2829995453,-0.6255379915 -0.7270581126,-0.0000000000,0.2829995453,-0.6255379915 -0.7270581126,-0.0000000000,0.2829995453,-0.6255379915 -0.7270581126,-0.0000000000,0.2829995453,-0.6255379915 -0.7171917558,-0.0000000000,0.2818935513,-0.6373162866 -0.7171917558,-0.0000000000,0.2818935513,-0.6373162866 -0.7171917558,-0.0000000000,0.2818935513,-0.6373162866 -0.7171917558,-0.0000000000,0.2818935513,-0.6373162866 -0.7071066499,-0.0000000000,0.2808259428,-0.6489507556 -0.7071066499,-0.0000000000,0.2808259428,-0.6489507556 -0.7071066499,-0.0000000000,0.2808259428,-0.6489507556 -0.7071066499,-0.0000000000,0.2808259428,-0.6489507556 -0.6968052387,-0.0000000000,0.2797966599,-0.6604364514 -0.6968052387,-0.0000000000,0.2797966599,-0.6604364514 -0.6968052387,-0.0000000000,0.2797966599,-0.6604364514 -0.6968052387,-0.0000000000,0.2797966599,-0.6604364514 -0.6862902045,-0.0000000000,0.2788057327,-0.6717686057 -0.6862902045,-0.0000000000,0.2788057327,-0.6717686057 -0.6862902045,-0.0000000000,0.2788057327,-0.6717686057 -0.6862902045,-0.0000000000,0.2788057327,-0.6717686057 -0.6755643487,-0.0000000000,0.2778531611,-0.6829423904 -0.6755643487,-0.0000000000,0.2778531611,-0.6829423904 -0.6755643487,-0.0000000000,0.2778531611,-0.6829423904 -0.6755643487,-0.0000000000,0.2778531611,-0.6829423904 -0.6646305919,-0.0000000000,0.2769391537,-0.6939531565 -0.6646305919,-0.0000000000,0.2769391537,-0.6939531565 -0.6646305919,-0.0000000000,0.2769391537,-0.6939531565 -0.6646305919,-0.0000000000,0.2769391537,-0.6939531565 -0.6534916162,-0.0000000000,0.2760637403,-0.7047960758 -0.6534916162,-0.0000000000,0.2760637403,-0.7047960758 -0.6534916162,-0.0000000000,0.2760637403,-0.7047960758 -0.6534916162,-0.0000000000,0.2760637403,-0.7047960758 -0.6421505213,-0.0000000000,0.2752272487,-0.7154667377 -0.6421505213,-0.0000000000,0.2752272487,-0.7154667377 -0.6421505213,-0.0000000000,0.2752272487,-0.7154667377 -0.6421505213,-0.0000000000,0.2752272487,-0.7154667377 -0.6306105256,-0.0000000000,0.2744299769,-0.7259603739 -0.6306105256,-0.0000000000,0.2744299769,-0.7259603739 -0.6306105256,-0.0000000000,0.2744299769,-0.7259603739 -0.6306105256,-0.0000000000,0.2744299769,-0.7259603739 -0.6188747287,-0.0000000000,0.2736723125,-0.7362727523 -0.6188747287,-0.0000000000,0.2736723125,-0.7362727523 -0.6188747287,-0.0000000000,0.2736723125,-0.7362727523 -0.6188747287,-0.0000000000,0.2736723125,-0.7362727523 -0.6069463491,-0.0000000000,0.2729546726,-0.7463992238 -0.6069463491,-0.0000000000,0.2729546726,-0.7463992238 -0.6069463491,-0.0000000000,0.2729546726,-0.7463992238 -0.6069463491,-0.0000000000,0.2729546726,-0.7463992238 -0.5948289633,-0.0000000000,0.2722776830,-0.7563355565 -0.5948289633,-0.0000000000,0.2722776830,-0.7563355565 -0.5948289633,-0.0000000000,0.2722776830,-0.7563355565 -0.5948289633,-0.0000000000,0.2722776830,-0.7563355565 -0.5825257301,-0.0000000000,0.2716419101,-0.7660772800 -0.5825257301,-0.0000000000,0.2716419101,-0.7660772800 -0.5825257301,-0.0000000000,0.2716419101,-0.7660772800 -0.5825257301,-0.0000000000,0.2716419101,-0.7660772800 -0.5700403452,-0.0000000000,0.2710481882,-0.7756203413 -0.5700403452,-0.0000000000,0.2710481882,-0.7756203413 -0.5700403452,-0.0000000000,0.2710481882,-0.7756203413 -0.5700403452,-0.0000000000,0.2710481882,-0.7756203413 -0.5573765039,-0.0000000000,0.2704974115,-0.7849603295 -0.5573765039,-0.0000000000,0.2704974115,-0.7849603295 -0.5573765039,-0.0000000000,0.2704974115,-0.7849603295 -0.5573765039,-0.0000000000,0.2704974115,-0.7849603295 -0.5445376635,-0.0000000000,0.2699906230,-0.7940930128 -0.5445376635,-0.0000000000,0.2699906230,-0.7940930128 -0.5445376635,-0.0000000000,0.2699906230,-0.7940930128 -0.5445376635,-0.0000000000,0.2699906230,-0.7940930128 -0.5315276980,-0.0000000000,0.2695291042,-0.8030145168 -0.5315276980,-0.0000000000,0.2695291042,-0.8030145168 -0.5315276980,-0.0000000000,0.2695291042,-0.8030145168 -0.5315276980,-0.0000000000,0.2695291042,-0.8030145168 -0.5183504820,-0.0000000000,0.2691141665,-0.8117206693 -0.5183504820,-0.0000000000,0.2691141665,-0.8117206693 -0.5183504820,-0.0000000000,0.2691141665,-0.8117206693 -0.5183504820,-0.0000000000,0.2691141665,-0.8117206693 -0.5050098300,-0.0000000000,0.2687475085,-0.8202072382 -0.5050098300,-0.0000000000,0.2687475085,-0.8202072382 -0.5050098300,-0.0000000000,0.2687475085,-0.8202072382 -0.5050098300,-0.0000000000,0.2687475085,-0.8202072382 -0.4915096760,-0.0000000000,0.2684309483,-0.8284702897 -0.4915096760,-0.0000000000,0.2684309483,-0.8284702897 -0.4915096760,-0.0000000000,0.2684309483,-0.8284702897 -0.4915096760,-0.0000000000,0.2684309483,-0.8284702897 -0.4778543711,-0.0000000000,0.2681666315,-0.8365057707 -0.4778543711,-0.0000000000,0.2681666315,-0.8365057707 -0.4778543711,-0.0000000000,0.2681666315,-0.8365057707 -0.4778543711,-0.0000000000,0.2681666315,-0.8365057707 -0.4640476406,-0.0000000000,0.2679570317,-0.8443096876 -0.4640476406,-0.0000000000,0.2679570317,-0.8443096876 -0.4640476406,-0.0000000000,0.2679570317,-0.8443096876 -0.4640476406,-0.0000000000,0.2679570317,-0.8443096876 -0.4500938952,-0.0000000000,0.2678050101,-0.8518778682 -0.4500938952,-0.0000000000,0.2678050101,-0.8518778682 -0.4500938952,-0.0000000000,0.2678050101,-0.8518778682 -0.4500938952,-0.0000000000,0.2678050101,-0.8518778682 -0.4359973967,-0.0000000000,0.2677139044,-0.8592063189 -0.4359973967,-0.0000000000,0.2677139044,-0.8592063189 -0.4359973967,-0.0000000000,0.2677139044,-0.8592063189 -0.4359973967,-0.0000000000,0.2677139044,-0.8592063189 -0.4217623472,-0.0000000000,0.2676874995,-0.8662908673 -0.4217623472,-0.0000000000,0.2676874995,-0.8662908673 -0.4217623472,-0.0000000000,0.2676874995,-0.8662908673 -0.4217623472,-0.0000000000,0.2676874995,-0.8662908673 -0.4073931873,-0.0000000000,0.2677303255,-0.8731273413 -0.4073931873,-0.0000000000,0.2677303255,-0.8731273413 -0.4073931873,-0.0000000000,0.2677303255,-0.8731273413 -0.4073931873,-0.0000000000,0.2677303255,-0.8731273413 -0.3928943276,-0.0000000000,0.2678475082,-0.8797112107 -0.3928943276,-0.0000000000,0.2678475082,-0.8797112107 -0.3928943276,-0.0000000000,0.2678475082,-0.8797112107 -0.3928943276,-0.0000000000,0.2678475082,-0.8797112107 -0.3782702088,-0.0000000000,0.2680452168,-0.8860380054 -0.3782702088,-0.0000000000,0.2680452168,-0.8860380054 -0.3782702088,-0.0000000000,0.2680452168,-0.8860380054 -0.3782702088,-0.0000000000,0.2680452168,-0.8860380054 -0.3635255098,-0.0000000000,0.2683306634,-0.8921030760 -0.3635255098,-0.0000000000,0.2683306634,-0.8921030760 -0.3635255098,-0.0000000000,0.2683306634,-0.8921030760 -0.3635255098,-0.0000000000,0.2683306634,-0.8921030760 -0.3486646712,-0.0000000000,0.2687124312,-0.8979011774 -0.3486646712,-0.0000000000,0.2687124312,-0.8979011774 -0.3486646712,-0.0000000000,0.2687124312,-0.8979011774 -0.3486646712,-0.0000000000,0.2687124312,-0.8979011774 -0.3336924613,-0.0000000000,0.2692006826,-0.9034270048 -0.3336924613,-0.0000000000,0.2692006826,-0.9034270048 -0.3336924613,-0.0000000000,0.2692006826,-0.9034270048 -0.3336924613,-0.0000000000,0.2692006826,-0.9034270048 -0.3186135888,-0.0000000000,0.2698077559,-0.9086743593 -0.3186135888,-0.0000000000,0.2698077559,-0.9086743593 -0.3186135888,-0.0000000000,0.2698077559,-0.9086743593 -0.3186135888,-0.0000000000,0.2698077559,-0.9086743593 -0.3034328222,-0.0000000000,0.2705484629,-0.9136367440 -0.3034328222,-0.0000000000,0.2705484629,-0.9136367440 -0.3034328222,-0.0000000000,0.2705484629,-0.9136367440 -0.3034328222,-0.0000000000,0.2705484629,-0.9136367440 -0.2881550193,-0.0000000000,0.2714410722,-0.9183063507 -0.2881550193,-0.0000000000,0.2714410722,-0.9183063507 -0.2881550193,-0.0000000000,0.2714410722,-0.9183063507 -0.2881550193,-0.0000000000,0.2714410722,-0.9183063507 -0.2727850676,-0.0000000000,0.2725079060,-0.9226742387 -0.2727850676,-0.0000000000,0.2725079060,-0.9226742387 -0.2727850676,-0.0000000000,0.2725079060,-0.9226742387 -0.2727850676,-0.0000000000,0.2725079060,-0.9226742387 -0.2573277950,-0.0000000000,0.2737772465,-0.9267299771 -0.2573277950,-0.0000000000,0.2737772465,-0.9267299771 -0.2573277950,-0.0000000000,0.2737772465,-0.9267299771 -0.2573277950,-0.0000000000,0.2737772465,-0.9267299771 -0.2417882979,-0.0000000000,0.2752842903,-0.9304606318 -0.2417882979,-0.0000000000,0.2752842903,-0.9304606318 -0.2417882979,-0.0000000000,0.2752842903,-0.9304606318 -0.2417882979,-0.0000000000,0.2752842903,-0.9304606318 -0.2261718065,-0.0000000000,0.2770746648,-0.9338500500 -0.2261718065,-0.0000000000,0.2770746648,-0.9338500500 -0.2261718065,-0.0000000000,0.2770746648,-0.9338500500 -0.2261718065,-0.0000000000,0.2770746648,-0.9338500500 -0.2104833573,-0.0000000000,0.2792077065,-0.9368777275 -0.2104833573,-0.0000000000,0.2792077065,-0.9368777275 -0.2104833573,-0.0000000000,0.2792077065,-0.9368777275 -0.2104833573,-0.0000000000,0.2792077065,-0.9368777275 -0.1947282255,-0.0000000000,0.2817620933,-0.9395163655 -0.1947282255,-0.0000000000,0.2817620933,-0.9395163655 -0.1947282255,-0.0000000000,0.2817620933,-0.9395163655 -0.1947282255,-0.0000000000,0.2817620933,-0.9395163655 -0.1789117306,-0.0000000000,0.2848447859,-0.9417293072 -0.1789117306,-0.0000000000,0.2848447859,-0.9417293072 -0.1789117306,-0.0000000000,0.2848447859,-0.9417293072 -0.1789117306,-0.0000000000,0.2848447859,-0.9417293072 -0.1630396843,-0.0000000000,0.2886043489,-0.9434646368 -0.1630396843,-0.0000000000,0.2886043489,-0.9434646368 -0.1630396843,-0.0000000000,0.2886043489,-0.9434646368 -0.1630396843,-0.0000000000,0.2886043489,-0.9434646368 -0.1471180767,-0.0000000000,0.2932541966,-0.9446471930 -0.1471180767,-0.0000000000,0.2932541966,-0.9446471930 -0.1471180767,-0.0000000000,0.2932541966,-0.9446471930 -0.1471180767,-0.0000000000,0.2932541966,-0.9446471930 -0.1311532110,-0.0000000000,0.2991109490,-0.9451620579 -0.1311532110,-0.0000000000,0.2991109490,-0.9451620579 -0.1311532110,-0.0000000000,0.2991109490,-0.9451620579 -0.1311532110,-0.0000000000,0.2991109490,-0.9451620579 -0.1151522323,-0.0000000000,0.3066666424,-0.9448257089 -0.1151522323,-0.0000000000,0.3066666424,-0.9448257089 -0.1151522323,-0.0000000000,0.3066666424,-0.9448257089 -0.1151522323,-0.0000000000,0.3066666424,-0.9448257089 -0.0991233587,-0.0000000000,0.3167278171,-0.9433228970 -0.0991233587,-0.0000000000,0.3167278171,-0.9433228970 -0.0991233587,-0.0000000000,0.3167278171,-0.9433228970 -0.0991233587,-0.0000000000,0.3167278171,-0.9433228970 -0.0830775797,-0.0000000000,0.3307140470,-0.9400672317 -0.0830775797,-0.0000000000,0.3307140470,-0.9400672317 -0.0830775797,-0.0000000000,0.3307140470,-0.9400672317 -0.0830775797,-0.0000000000,0.3307140470,-0.9400672317 -0.0670318305,-0.0000000000,0.3513715565,-0.9338333607 -0.0670318305,-0.0000000000,0.3513715565,-0.9338333607 -0.0670318305,-0.0000000000,0.3513715565,-0.9338333607 -0.0670318305,-0.0000000000,0.3513715565,-0.9338333607 -0.0510168225,-0.0000000000,0.3847688437,-0.9216019511 -0.0510168225,-0.0000000000,0.3847688437,-0.9216019511 -0.0510168225,-0.0000000000,0.3847688437,-0.9216019511 -0.0510168225,-0.0000000000,0.3847688437,-0.9216019511 -0.0351117216,-0.0000000000,0.4472931623,-0.8936978579 -0.0351117216,-0.0000000000,0.4472931623,-0.8936978579 -0.0351117216,-0.0000000000,0.4472931623,-0.8936978579 -0.0351117216,-0.0000000000,0.4472931623,-0.8936978579 -0.0196313690,-0.0000000000,0.6000261307,-0.7997394800 -0.0196313690,-0.0000000000,0.6000261307,-0.7997394800 -0.0196313690,-0.0000000000,0.6000261307,-0.7997394800 -0.0196313690,-0.0000000000,0.6000261307,-0.7997394800 -0.0078511564,0.0000000000,0.9999691844,0.0000662721 -0.0078511564,0.0000000000,0.9999691844,0.0000662721 -0.0078511564,0.0000000000,0.9999691844,0.0000662721 -0.0078511564,0.0000000000,0.9999691844,0.0000662721 -0.0161905438,0.0000000000,0.2425293773,0.9700089097 -0.0161905438,0.0000000000,0.2425293773,0.9700089097 -0.0161905438,0.0000000000,0.2425293773,0.9700089097 -0.0161905438,0.0000000000,0.2425293773,0.9700089097 -0.0314111710,-0.0000000000,-0.0000049969,0.9995065331 -0.0314111710,-0.0000000000,-0.0000049969,0.9995065331 -0.0314111710,-0.0000000000,-0.0000049969,0.9995065331 -0.0314111710,-0.0000000000,-0.0000049969,0.9995065331 -0.0472698174,-0.0000000000,-0.0830788091,0.9954212308 -0.0472698174,-0.0000000000,-0.0830788091,0.9954212308 -0.0472698174,-0.0000000000,-0.0830788091,0.9954212308 -0.0472698174,-0.0000000000,-0.0830788091,0.9954212308 -0.0632764176,-0.0000000000,-0.1241190061,0.9902476668 -0.0632764176,-0.0000000000,-0.1241190061,0.9902476668 -0.0632764176,-0.0000000000,-0.1241190061,0.9902476668 -0.0632764176,-0.0000000000,-0.1241190061,0.9902476668 -0.0793284476,-0.0000000000,-0.1484971792,0.9857259393 -0.0793284476,-0.0000000000,-0.1484971792,0.9857259393 -0.0793284476,-0.0000000000,-0.1484971792,0.9857259393 -0.0793284476,-0.0000000000,-0.1484971792,0.9857259393 -0.0953877345,-0.0000000000,-0.1646493524,0.9817289114 -0.0953877345,-0.0000000000,-0.1646493524,0.9817289114 -0.0953877345,-0.0000000000,-0.1646493524,0.9817289114 -0.0953877345,-0.0000000000,-0.1646493524,0.9817289114 -0.1114358082,-0.0000000000,-0.1761558354,0.9780343175 -0.1114358082,-0.0000000000,-0.1761558354,0.9780343175 -0.1114358082,-0.0000000000,-0.1761558354,0.9780343175 -0.1114358082,-0.0000000000,-0.1761558354,0.9780343175 -0.1274603605,-0.0000000000,-0.1847896427,0.9744775891 -0.1274603605,-0.0000000000,-0.1847896427,0.9744775891 -0.1274603605,-0.0000000000,-0.1847896427,0.9744775891 -0.1274603605,-0.0000000000,-0.1847896427,0.9744775891 -0.1434530020,-0.0000000000,-0.1915278584,0.9709471464 -0.1434530020,-0.0000000000,-0.1915278584,0.9709471464 -0.1434530020,-0.0000000000,-0.1915278584,0.9709471464 -0.1434530020,-0.0000000000,-0.1915278584,0.9709471464 -0.1594059318,-0.0000000000,-0.1969525814,0.9673672318 -0.1594059318,-0.0000000000,-0.1969525814,0.9673672318 -0.1594059318,-0.0000000000,-0.1969525814,0.9673672318 -0.1594059318,-0.0000000000,-0.1969525814,0.9673672318 -0.1753128022,-0.0000000000,-0.2014321983,0.9636858106 -0.1753128022,-0.0000000000,-0.2014321983,0.9636858106 -0.1753128022,-0.0000000000,-0.2014321983,0.9636858106 -0.1753128022,-0.0000000000,-0.2014321983,0.9636858106 -0.1911675930,-0.0000000000,-0.2052110285,0.9598662853 -0.1911675930,-0.0000000000,-0.2052110285,0.9598662853 -0.1911675930,-0.0000000000,-0.2052110285,0.9598662853 -0.1911675930,-0.0000000000,-0.2052110285,0.9598662853 -0.2069646567,-0.0000000000,-0.2084576041,0.9558823705 -0.2069646567,-0.0000000000,-0.2084576041,0.9558823705 -0.2069646567,-0.0000000000,-0.2084576041,0.9558823705 -0.2069646567,-0.0000000000,-0.2084576041,0.9558823705 -0.2226982713,-0.0000000000,-0.2112917453,0.9517148733 -0.2226982713,-0.0000000000,-0.2112917453,0.9517148733 -0.2226982713,-0.0000000000,-0.2112917453,0.9517148733 -0.2226982713,-0.0000000000,-0.2112917453,0.9517148733 -0.2383634448,-0.0000000000,-0.2138012201,0.9473499060 -0.2383634448,-0.0000000000,-0.2138012201,0.9473499060 -0.2383634448,-0.0000000000,-0.2138012201,0.9473499060 -0.2383634448,-0.0000000000,-0.2138012201,0.9473499060 -0.2539547086,-0.0000000000,-0.2160516232,0.9427770972 -0.2539547086,-0.0000000000,-0.2160516232,0.9427770972 -0.2539547086,-0.0000000000,-0.2160516232,0.9427770972 -0.2539547086,-0.0000000000,-0.2160516232,0.9427770972 -0.2694668770,-0.0000000000,-0.2180930376,0.9379887581 -0.2694668770,-0.0000000000,-0.2180930376,0.9379887581 -0.2694668770,-0.0000000000,-0.2180930376,0.9379887581 -0.2694668770,-0.0000000000,-0.2180930376,0.9379887581 -0.2848951221,-0.0000000000,-0.2199643701,0.9329793453 -0.2848951221,-0.0000000000,-0.2199643701,0.9329793453 -0.2848951221,-0.0000000000,-0.2199643701,0.9329793453 -0.2848951221,-0.0000000000,-0.2199643701,0.9329793453 -0.3002344072,-0.0000000000,-0.2216962725,0.9277446270 -0.3002344072,-0.0000000000,-0.2216962725,0.9277446270 -0.3002344072,-0.0000000000,-0.2216962725,0.9277446270 -0.3002344072,-0.0000000000,-0.2216962725,0.9277446270 -0.3154796362,-0.0000000000,-0.2233132571,0.9222818017 -0.3154796362,-0.0000000000,-0.2233132571,0.9222818017 -0.3154796362,-0.0000000000,-0.2233132571,0.9222818017 -0.3154796362,-0.0000000000,-0.2233132571,0.9222818017 -0.3306260109,-0.0000000000,-0.2248352915,0.9165890813 -0.3306260109,-0.0000000000,-0.2248352915,0.9165890813 -0.3306260109,-0.0000000000,-0.2248352915,0.9165890813 -0.3306260109,-0.0000000000,-0.2248352915,0.9165890813 -0.3456688523,-0.0000000000,-0.2262784690,0.9106652737 -0.3456688523,-0.0000000000,-0.2262784690,0.9106652737 -0.3456688523,-0.0000000000,-0.2262784690,0.9106652737 -0.3456688523,-0.0000000000,-0.2262784690,0.9106652737 -0.3606031835,-0.0000000000,-0.2276563197,0.9045097232 -0.3606031835,-0.0000000000,-0.2276563197,0.9045097232 -0.3606031835,-0.0000000000,-0.2276563197,0.9045097232 -0.3606031835,-0.0000000000,-0.2276563197,0.9045097232 -0.3754244745,-0.0000000000,-0.2289800793,0.8981227875 -0.3754244745,-0.0000000000,-0.2289800793,0.8981227875 -0.3754244745,-0.0000000000,-0.2289800793,0.8981227875 -0.3754244745,-0.0000000000,-0.2289800793,0.8981227875 -0.3901280463,-0.0000000000,-0.2302591801,0.8915048242 -0.3901280463,-0.0000000000,-0.2302591801,0.8915048242 -0.3901280463,-0.0000000000,-0.2302591801,0.8915048242 -0.3901280463,-0.0000000000,-0.2302591801,0.8915048242 -0.4047092199,-0.0000000000,-0.2315016240,0.8846566677 -0.4047092199,-0.0000000000,-0.2315016240,0.8846566677 -0.4047092199,-0.0000000000,-0.2315016240,0.8846566677 -0.4047092199,-0.0000000000,-0.2315016240,0.8846566677 -0.4191634655,-0.0000000000,-0.2327143252,0.8775796294 -0.4191634655,-0.0000000000,-0.2327143252,0.8775796294 -0.4191634655,-0.0000000000,-0.2327143252,0.8775796294 -0.4191634655,-0.0000000000,-0.2327143252,0.8775796294 -0.4334862530,-0.0000000000,-0.2339031994,0.8702751994 -0.4334862530,-0.0000000000,-0.2339031994,0.8702751994 -0.4334862530,-0.0000000000,-0.2339031994,0.8702751994 -0.4334862530,-0.0000000000,-0.2339031994,0.8702751994 -0.4476734400,-0.0000000000,-0.2350732982,0.8627449870 -0.4476734400,-0.0000000000,-0.2350732982,0.8627449870 -0.4476734400,-0.0000000000,-0.2350732982,0.8627449870 -0.4476734400,-0.0000000000,-0.2350732982,0.8627449870 -0.4617204368,-0.0000000000,-0.2362291366,0.8549913168 -0.4617204368,-0.0000000000,-0.2362291366,0.8549913168 -0.4617204368,-0.0000000000,-0.2362291366,0.8549913168 -0.4617204368,-0.0000000000,-0.2362291366,0.8549913168 -0.4756228626,-0.0000000000,-0.2373746485,0.8470160365 -0.4756228626,-0.0000000000,-0.2373746485,0.8470160365 -0.4756228626,-0.0000000000,-0.2373746485,0.8470160365 -0.4756228626,-0.0000000000,-0.2373746485,0.8470160365 -0.4893767238,-0.0000000000,-0.2385133356,0.8388217092 -0.4893767238,-0.0000000000,-0.2385133356,0.8388217092 -0.4893767238,-0.0000000000,-0.2385133356,0.8388217092 -0.4893767238,-0.0000000000,-0.2385133356,0.8388217092 -0.5029776692,-0.0000000000,-0.2396482825,0.8304108381 -0.5029776692,-0.0000000000,-0.2396482825,0.8304108381 -0.5029776692,-0.0000000000,-0.2396482825,0.8304108381 -0.5029776692,-0.0000000000,-0.2396482825,0.8304108381 -0.5164215565,-0.0000000000,-0.2407822460,0.8217862844 -0.5164215565,-0.0000000000,-0.2407822460,0.8217862844 -0.5164215565,-0.0000000000,-0.2407822460,0.8217862844 -0.5164215565,-0.0000000000,-0.2407822460,0.8217862844 -0.5297045708,-0.0000000000,-0.2419176549,0.8129507303 -0.5297045708,-0.0000000000,-0.2419176549,0.8129507303 -0.5297045708,-0.0000000000,-0.2419176549,0.8129507303 -0.5297045708,-0.0000000000,-0.2419176549,0.8129507303 -0.5428224802,-0.0000000000,-0.2430568635,0.8039073944 -0.5428224802,-0.0000000000,-0.2430568635,0.8039073944 -0.5428224802,-0.0000000000,-0.2430568635,0.8039073944 -0.5428224802,-0.0000000000,-0.2430568635,0.8039073944 -0.5557715893,-0.0000000000,-0.2442018241,0.7946592569 -0.5557715893,-0.0000000000,-0.2442018241,0.7946592569 -0.5557715893,-0.0000000000,-0.2442018241,0.7946592569 -0.5557715893,-0.0000000000,-0.2442018241,0.7946592569 -0.5685479045,-0.0000000000,-0.2453544289,0.7852097750 -0.5685479045,-0.0000000000,-0.2453544289,0.7852097750 -0.5685479045,-0.0000000000,-0.2453544289,0.7852097750 -0.5685479045,-0.0000000000,-0.2453544289,0.7852097750 -0.5811477900,-0.0000000000,-0.2465164512,0.7755622864 -0.5811477900,-0.0000000000,-0.2465164512,0.7755622864 -0.5811477900,-0.0000000000,-0.2465164512,0.7755622864 -0.5811477900,-0.0000000000,-0.2465164512,0.7755622864 -0.5935676098,-0.0000000000,-0.2476893663,0.7657203078 -0.5935676098,-0.0000000000,-0.2476893663,0.7657203078 -0.5935676098,-0.0000000000,-0.2476893663,0.7657203078 -0.5935676098,-0.0000000000,-0.2476893663,0.7657203078 -0.6058036089,-0.0000000000,-0.2488746941,0.7556873560 -0.6058036089,-0.0000000000,-0.2488746941,0.7556873560 -0.6058036089,-0.0000000000,-0.2488746941,0.7556873560 -0.6058036089,-0.0000000000,-0.2488746941,0.7556873560 -0.6178523898,-0.0000000000,-0.2500738204,0.7454673052 -0.6178523898,-0.0000000000,-0.2500738204,0.7454673052 -0.6178523898,-0.0000000000,-0.2500738204,0.7454673052 -0.6178523898,-0.0000000000,-0.2500738204,0.7454673052 -0.6297104359,-0.0000000000,-0.2512880266,0.7350639701 -0.6297104359,-0.0000000000,-0.2512880266,0.7350639701 -0.6297104359,-0.0000000000,-0.2512880266,0.7350639701 -0.6297104359,-0.0000000000,-0.2512880266,0.7350639701 -0.6413745284,-0.0000000000,-0.2525184751,0.7244813442 -0.6413745284,-0.0000000000,-0.2525184751,0.7244813442 -0.6413745284,-0.0000000000,-0.2525184751,0.7244813442 -0.6413745284,-0.0000000000,-0.2525184751,0.7244813442 -0.6528412700,-0.0000000000,-0.2537663579,0.7137233019 -0.6528412700,-0.0000000000,-0.2537663579,0.7137233019 -0.6528412700,-0.0000000000,-0.2537663579,0.7137233019 -0.6528412700,-0.0000000000,-0.2537663579,0.7137233019 -0.6641075611,-0.0000000000,-0.2550327480,0.7027940154 -0.6641075611,-0.0000000000,-0.2550327480,0.7027940154 -0.6641075611,-0.0000000000,-0.2550327480,0.7027940154 -0.6641075611,-0.0000000000,-0.2550327480,0.7027940154 -0.6751702428,-0.0000000000,-0.2563186884,0.6916978359 -0.6751702428,-0.0000000000,-0.2563186884,0.6916978359 -0.6751702428,-0.0000000000,-0.2563186884,0.6916978359 -0.6751702428,-0.0000000000,-0.2563186884,0.6916978359 -0.6860263348,-0.0000000000,-0.2576251626,0.6804389358 -0.6860263348,-0.0000000000,-0.2576251626,0.6804389358 -0.6860263348,-0.0000000000,-0.2576251626,0.6804389358 -0.6860263348,-0.0000000000,-0.2576251626,0.6804389358 -0.6966729760,-0.0000000000,-0.2589530945,0.6690217257 -0.6966729760,-0.0000000000,-0.2589530945,0.6690217257 -0.6966729760,-0.0000000000,-0.2589530945,0.6690217257 -0.6966729760,-0.0000000000,-0.2589530945,0.6690217257 -0.7071072459,-0.0000000000,-0.2603034973,0.6574506760 -0.7071072459,-0.0000000000,-0.2603034973,0.6574506760 -0.7071072459,-0.0000000000,-0.2603034973,0.6574506760 -0.7071072459,-0.0000000000,-0.2603034973,0.6574506760 -0.7173264623,-0.0000000000,-0.2616772056,0.6457303762 -0.7173264623,-0.0000000000,-0.2616772056,0.6457303762 -0.7173264623,-0.0000000000,-0.2616772056,0.6457303762 -0.7173264623,-0.0000000000,-0.2616772056,0.6457303762 -0.7273280621,-0.0000000000,-0.2630751729,0.6338654160 -0.7273280621,-0.0000000000,-0.2630751729,0.6338654160 -0.7273280621,-0.0000000000,-0.2630751729,0.6338654160 -0.7273280621,-0.0000000000,-0.2630751729,0.6338654160 -0.7371094227,-0.0000000000,-0.2644981444,0.6218605042 -0.7371094227,-0.0000000000,-0.2644981444,0.6218605042 -0.7371094227,-0.0000000000,-0.2644981444,0.6218605042 -0.7371094227,-0.0000000000,-0.2644981444,0.6218605042 -0.7466681004,-0.0000000000,-0.2659470439,0.6097203493 -0.7466681004,-0.0000000000,-0.2659470439,0.6097203493 -0.7466681004,-0.0000000000,-0.2659470439,0.6097203493 -0.7466681004,-0.0000000000,-0.2659470439,0.6097203493 -0.7560017705,-0.0000000000,-0.2674226761,0.5974499583 -0.7560017705,-0.0000000000,-0.2674226761,0.5974499583 -0.7560017705,-0.0000000000,-0.2674226761,0.5974499583 -0.7560017705,-0.0000000000,-0.2674226761,0.5974499583 -0.7651082873,-0.0000000000,-0.2689258754,0.5850540996 -0.7651082873,-0.0000000000,-0.2689258754,0.5850540996 -0.7651082873,-0.0000000000,-0.2689258754,0.5850540996 -0.7651082873,-0.0000000000,-0.2689258754,0.5850540996 -0.7739853859,-0.0000000000,-0.2704574466,0.5725377798 -0.7739853859,-0.0000000000,-0.2704574466,0.5725377798 -0.7739853859,-0.0000000000,-0.2704574466,0.5725377798 -0.7739853859,-0.0000000000,-0.2704574466,0.5725377798 -0.7826309800,-0.0000000000,-0.2720181942,0.5599060655 -0.7826309800,-0.0000000000,-0.2720181942,0.5599060655 -0.7826309800,-0.0000000000,-0.2720181942,0.5599060655 -0.7826309800,-0.0000000000,-0.2720181942,0.5599060655 -0.7910433412,-0.0000000000,-0.2736089230,0.5471641421 -0.7910433412,-0.0000000000,-0.2736089230,0.5471641421 -0.7910433412,-0.0000000000,-0.2736089230,0.5471641421 -0.7910433412,-0.0000000000,-0.2736089230,0.5471641421 -0.7992206216,-0.0000000000,-0.2752304375,0.5343170762 -0.7992206216,-0.0000000000,-0.2752304375,0.5343170762 -0.7992206216,-0.0000000000,-0.2752304375,0.5343170762 -0.7992206216,-0.0000000000,-0.2752304375,0.5343170762 -0.8071609139,-0.0000000000,-0.2768835127,0.5213701725 -0.8071609139,-0.0000000000,-0.2768835127,0.5213701725 -0.8071609139,-0.0000000000,-0.2768835127,0.5213701725 -0.8071609139,-0.0000000000,-0.2768835127,0.5213701725 -0.8148627281,-0.0000000000,-0.2785689533,0.5083286762 -0.8148627281,-0.0000000000,-0.2785689533,0.5083286762 -0.8148627281,-0.0000000000,-0.2785689533,0.5083286762 -0.8148627281,-0.0000000000,-0.2785689533,0.5083286762 -0.8223246336,-0.0000000000,-0.2802876234,0.4951979816 -0.8223246336,-0.0000000000,-0.2802876234,0.4951979816 -0.8223246336,-0.0000000000,-0.2802876234,0.4951979816 -0.8223246336,-0.0000000000,-0.2802876234,0.4951979816 -0.8295451403,-0.0000000000,-0.2820402682,0.4819835722 -0.8295451403,-0.0000000000,-0.2820402682,0.4819835722 -0.8295451403,-0.0000000000,-0.2820402682,0.4819835722 -0.8295451403,-0.0000000000,-0.2820402682,0.4819835722 -0.8365230560,-0.0000000000,-0.2838277221,0.4686907828 -0.8365230560,-0.0000000000,-0.2838277221,0.4686907828 -0.8365230560,-0.0000000000,-0.2838277221,0.4686907828 -0.8365230560,-0.0000000000,-0.2838277221,0.4686907828 -0.8432571292,-0.0000000000,-0.2856507897,0.4553252459 -0.8432571292,-0.0000000000,-0.2856507897,0.4553252459 -0.8432571292,-0.0000000000,-0.2856507897,0.4553252459 -0.8432571292,-0.0000000000,-0.2856507897,0.4553252459 -0.8497463465,-0.0000000000,-0.2875103056,0.4418924749 -0.8497463465,-0.0000000000,-0.2875103056,0.4418924749 -0.8497463465,-0.0000000000,-0.2875103056,0.4418924749 -0.8497463465,-0.0000000000,-0.2875103056,0.4418924749 -0.8559898734,-0.0000000000,-0.2894071341,0.4283981323 -0.8559898734,-0.0000000000,-0.2894071341,0.4283981323 -0.8559898734,-0.0000000000,-0.2894071341,0.4283981323 -0.8559898734,-0.0000000000,-0.2894071341,0.4283981323 -0.8619866371,-0.0000000000,-0.2913420498,0.4148478508 -0.8619866371,-0.0000000000,-0.2913420498,0.4148478508 -0.8619866371,-0.0000000000,-0.2913420498,0.4148478508 -0.8619866371,-0.0000000000,-0.2913420498,0.4148478508 -0.8677362800,-0.0000000000,-0.2933160067,0.4012474120 -0.8677362800,-0.0000000000,-0.2933160067,0.4012474120 -0.8677362800,-0.0000000000,-0.2933160067,0.4012474120 -0.8677362800,-0.0000000000,-0.2933160067,0.4012474120 -0.8732380271,-0.0000000000,-0.2953297496,0.3876025379 -0.8732380271,-0.0000000000,-0.2953297496,0.3876025379 -0.8732380271,-0.0000000000,-0.2953297496,0.3876025379 -0.8732380271,-0.0000000000,-0.2953297496,0.3876025379 -0.8784913421,-0.0000000000,-0.2973842621,0.3739190698 -0.8784913421,-0.0000000000,-0.2973842621,0.3739190698 -0.8784913421,-0.0000000000,-0.2973842621,0.3739190698 -0.8784913421,-0.0000000000,-0.2973842621,0.3739190698 -0.8834961057,-0.0000000000,-0.2994803786,0.3602029085 -0.8834961057,-0.0000000000,-0.2994803786,0.3602029085 -0.8834961057,-0.0000000000,-0.2994803786,0.3602029085 -0.8834961057,-0.0000000000,-0.2994803786,0.3602029085 -0.8882519603,-0.0000000000,-0.3016189933,0.3464599252 -0.8882519603,-0.0000000000,-0.3016189933,0.3464599252 -0.8882519603,-0.0000000000,-0.3016189933,0.3464599252 -0.8882519603,-0.0000000000,-0.3016189933,0.3464599252 -0.8927589059,-0.0000000000,-0.3038010001,0.3326959908 -0.8927589059,-0.0000000000,-0.3038010001,0.3326959908 -0.8927589059,-0.0000000000,-0.3038010001,0.3326959908 -0.8927589059,-0.0000000000,-0.3038010001,0.3326959908 -0.8970167637,-0.0000000000,-0.3060273230,0.3189172745 -0.8970167637,-0.0000000000,-0.3060273230,0.3189172745 -0.8970167637,-0.0000000000,-0.3060273230,0.3189172745 -0.8970167637,-0.0000000000,-0.3060273230,0.3189172745 -0.9010259509,-0.0000000000,-0.3082989752,0.3051296473 -0.9010259509,-0.0000000000,-0.3082989752,0.3051296473 -0.9010259509,-0.0000000000,-0.3082989752,0.3051296473 -0.9010259509,-0.0000000000,-0.3082989752,0.3051296473 -0.9047864676,-0.0000000000,-0.3106168211,0.2913392782 -0.9047864676,-0.0000000000,-0.3106168211,0.2913392782 -0.9047864676,-0.0000000000,-0.3106168211,0.2913392782 -0.9047864676,-0.0000000000,-0.3106168211,0.2913392782 -0.9082989693,-0.0000000000,-0.3129819334,0.2775522470 -0.9082989693,-0.0000000000,-0.3129819334,0.2775522470 -0.9082989693,-0.0000000000,-0.3129819334,0.2775522470 -0.9082989693,-0.0000000000,-0.3129819334,0.2775522470 -0.9115639329,-0.0000000000,-0.3153951764,0.2637746632 -0.9115639329,-0.0000000000,-0.3153951764,0.2637746632 -0.9115639329,-0.0000000000,-0.3153951764,0.2637746632 -0.9115639329,-0.0000000000,-0.3153951764,0.2637746632 -0.9145818949,-0.0000000000,-0.3178575933,0.2500127852 -0.9145818949,-0.0000000000,-0.3178575933,0.2500127852 -0.9145818949,-0.0000000000,-0.3178575933,0.2500127852 -0.9145818949,-0.0000000000,-0.3178575933,0.2500127852 -0.9173538089,-0.0000000000,-0.3203702271,0.2362728119 -0.9173538089,-0.0000000000,-0.3203702271,0.2362728119 -0.9173538089,-0.0000000000,-0.3203702271,0.2362728119 -0.9173538089,-0.0000000000,-0.3203702271,0.2362728119 -0.9198805690,-0.0000000000,-0.3229340613,0.2225610018 -0.9198805690,-0.0000000000,-0.3229340613,0.2225610018 -0.9198805690,-0.0000000000,-0.3229340613,0.2225610018 -0.9198805690,-0.0000000000,-0.3229340613,0.2225610018 -0.9221630692,-0.0000000000,-0.3255501986,0.2088836282 -0.9221630692,-0.0000000000,-0.3255501986,0.2088836282 -0.9221630692,-0.0000000000,-0.3255501986,0.2088836282 -0.9221630692,-0.0000000000,-0.3255501986,0.2088836282 -0.9242026210,-0.0000000000,-0.3282195926,0.1952470690 -0.9242026210,-0.0000000000,-0.3282195926,0.1952470690 -0.9242026210,-0.0000000000,-0.3282195926,0.1952470690 -0.9242026210,-0.0000000000,-0.3282195926,0.1952470690 -0.9260004759,-0.0000000000,-0.3309434354,0.1816576570 -0.9260004759,-0.0000000000,-0.3309434354,0.1816576570 -0.9260004759,-0.0000000000,-0.3309434354,0.1816576570 -0.9260004759,-0.0000000000,-0.3309434354,0.1816576570 -0.9275581837,-0.0000000000,-0.3337226808,0.1681217551 -0.9275581837,-0.0000000000,-0.3337226808,0.1681217551 -0.9275581837,-0.0000000000,-0.3337226808,0.1681217551 -0.9275581837,-0.0000000000,-0.3337226808,0.1681217551 -0.9288772345,-0.0000000000,-0.3365585208,0.1546458602 -0.9288772345,-0.0000000000,-0.3365585208,0.1546458602 -0.9288772345,-0.0000000000,-0.3365585208,0.1546458602 -0.9288772345,-0.0000000000,-0.3365585208,0.1546458602 -0.9299594164,-0.0000000000,-0.3394520283,0.1412363946 -0.9299594164,-0.0000000000,-0.3394520283,0.1412363946 -0.9299594164,-0.0000000000,-0.3394520283,0.1412363946 -0.9299594164,-0.0000000000,-0.3394520283,0.1412363946 -0.9308065176,-0.0000000000,-0.3424043357,0.1278998852 -0.9308065176,-0.0000000000,-0.3424043357,0.1278998852 -0.9308065176,-0.0000000000,-0.3424043357,0.1278998852 -0.9308065176,-0.0000000000,-0.3424043357,0.1278998852 -0.9314206243,-0.0000000000,-0.3454166055,0.1146428585 -0.9314206243,-0.0000000000,-0.3454166055,0.1146428585 -0.9314206243,-0.0000000000,-0.3454166055,0.1146428585 -0.9314206243,-0.0000000000,-0.3454166055,0.1146428585 -0.9318037629,-0.0000000000,-0.3484899700,0.1014718637 -0.9318037629,-0.0000000000,-0.3484899700,0.1014718637 -0.9318037629,-0.0000000000,-0.3484899700,0.1014718637 -0.9318037629,-0.0000000000,-0.3484899700,0.1014718637 -0.9319581985,-0.0000000000,-0.3516255617,0.0883934870 -0.9319581985,-0.0000000000,-0.3516255617,0.0883934870 -0.9319581985,-0.0000000000,-0.3516255617,0.0883934870 -0.9319581985,-0.0000000000,-0.3516255617,0.0883934870 -0.9318864346,-0.0000000000,-0.3548245430,0.0754143670 -0.9318864346,-0.0000000000,-0.3548245430,0.0754143670 -0.9318864346,-0.0000000000,-0.3548245430,0.0754143670 -0.9318864346,-0.0000000000,-0.3548245430,0.0754143670 -0.9315908551,-0.0000000000,-0.3580881059,0.0625411645 -0.9315908551,-0.0000000000,-0.3580881059,0.0625411645 -0.9315908551,-0.0000000000,-0.3580881059,0.0625411645 -0.9315908551,-0.0000000000,-0.3580881059,0.0625411645 -0.9310743213,-0.0000000000,-0.3614174128,0.0497805700 -0.9310743213,-0.0000000000,-0.3614174128,0.0497805700 -0.9310743213,-0.0000000000,-0.3614174128,0.0497805700 -0.9310743213,-0.0000000000,-0.3614174128,0.0497805700 -0.9303395152,-0.0000000000,-0.3648136854,0.0371393040 -0.9303395152,-0.0000000000,-0.3648136854,0.0371393040 -0.9303395152,-0.0000000000,-0.3648136854,0.0371393040 -0.9303395152,-0.0000000000,-0.3648136854,0.0371393040 -0.9293895364,-0.0000000000,-0.3682780564,0.0246241186 -0.9293895364,-0.0000000000,-0.3682780564,0.0246241186 -0.9293895364,-0.0000000000,-0.3682780564,0.0246241186 -0.9293895364,-0.0000000000,-0.3682780564,0.0246241186 -0.9282274842,-0.0000000000,-0.3718117476,0.0122418087 -0.9282274842,-0.0000000000,-0.3718117476,0.0122418087 -0.9282274842,-0.0000000000,-0.3718117476,0.0122418087 -0.9282274842,-0.0000000000,-0.3718117476,0.0122418087 -0.9268564582,-0.0000000000,-0.3754158616,-0.0000008066 -0.9268564582,-0.0000000000,-0.3754158616,-0.0000008066 -0.9268564582,-0.0000000000,-0.3754158616,-0.0000008066 -0.9268564582,-0.0000000000,-0.3754158616,-0.0000008066 +0.9223,-0.0000,0.3863,-0.0119 +0.9223,-0.0000,0.3863,-0.0119 +0.9223,-0.0000,0.3863,-0.0119 +0.9223,-0.0000,0.3863,-0.0119 +0.9235,-0.0000,0.3828,-0.0240 +0.9235,-0.0000,0.3828,-0.0240 +0.9235,-0.0000,0.3828,-0.0240 +0.9235,-0.0000,0.3828,-0.0240 +0.9245,-0.0000,0.3794,-0.0363 +0.9245,-0.0000,0.3794,-0.0363 +0.9245,-0.0000,0.3794,-0.0363 +0.9245,-0.0000,0.3794,-0.0363 +0.9253,-0.0000,0.3760,-0.0486 +0.9253,-0.0000,0.3760,-0.0486 +0.9253,-0.0000,0.3760,-0.0486 +0.9253,-0.0000,0.3760,-0.0486 +0.9259,-0.0000,0.3727,-0.0611 +0.9259,-0.0000,0.3727,-0.0611 +0.9259,-0.0000,0.3727,-0.0611 +0.9259,-0.0000,0.3727,-0.0611 +0.9263,-0.0000,0.3695,-0.0737 +0.9263,-0.0000,0.3695,-0.0737 +0.9263,-0.0000,0.3695,-0.0737 +0.9263,-0.0000,0.3695,-0.0737 +0.9265,-0.0000,0.3663,-0.0865 +0.9265,-0.0000,0.3663,-0.0865 +0.9265,-0.0000,0.3663,-0.0865 +0.9265,-0.0000,0.3663,-0.0865 +0.9264,-0.0000,0.3632,-0.0993 +0.9264,-0.0000,0.3632,-0.0993 +0.9264,-0.0000,0.3632,-0.0993 +0.9264,-0.0000,0.3632,-0.0993 +0.9261,-0.0000,0.3602,-0.1122 +0.9261,-0.0000,0.3602,-0.1122 +0.9261,-0.0000,0.3602,-0.1122 +0.9261,-0.0000,0.3602,-0.1122 +0.9256,-0.0000,0.3572,-0.1252 +0.9256,-0.0000,0.3572,-0.1252 +0.9256,-0.0000,0.3572,-0.1252 +0.9256,-0.0000,0.3572,-0.1252 +0.9248,-0.0000,0.3543,-0.1383 +0.9248,-0.0000,0.3543,-0.1383 +0.9248,-0.0000,0.3543,-0.1383 +0.9248,-0.0000,0.3543,-0.1383 +0.9239,-0.0000,0.3515,-0.1515 +0.9239,-0.0000,0.3515,-0.1515 +0.9239,-0.0000,0.3515,-0.1515 +0.9239,-0.0000,0.3515,-0.1515 +0.9226,-0.0000,0.3487,-0.1648 +0.9226,-0.0000,0.3487,-0.1648 +0.9226,-0.0000,0.3487,-0.1648 +0.9226,-0.0000,0.3487,-0.1648 +0.9212,-0.0000,0.3460,-0.1781 +0.9212,-0.0000,0.3460,-0.1781 +0.9212,-0.0000,0.3460,-0.1781 +0.9212,-0.0000,0.3460,-0.1781 +0.9195,-0.0000,0.3433,-0.1914 +0.9195,-0.0000,0.3433,-0.1914 +0.9195,-0.0000,0.3433,-0.1914 +0.9195,-0.0000,0.3433,-0.1914 +0.9176,-0.0000,0.3407,-0.2049 +0.9176,-0.0000,0.3407,-0.2049 +0.9176,-0.0000,0.3407,-0.2049 +0.9176,-0.0000,0.3407,-0.2049 +0.9154,-0.0000,0.3382,-0.2183 +0.9154,-0.0000,0.3382,-0.2183 +0.9154,-0.0000,0.3382,-0.2183 +0.9154,-0.0000,0.3382,-0.2183 +0.9130,-0.0000,0.3357,-0.2319 +0.9130,-0.0000,0.3357,-0.2319 +0.9130,-0.0000,0.3357,-0.2319 +0.9130,-0.0000,0.3357,-0.2319 +0.9104,-0.0000,0.3332,-0.2454 +0.9104,-0.0000,0.3332,-0.2454 +0.9104,-0.0000,0.3332,-0.2454 +0.9104,-0.0000,0.3332,-0.2454 +0.9075,-0.0000,0.3308,-0.2590 +0.9075,-0.0000,0.3308,-0.2590 +0.9075,-0.0000,0.3308,-0.2590 +0.9075,-0.0000,0.3308,-0.2590 +0.9043,-0.0000,0.3285,-0.2726 +0.9043,-0.0000,0.3285,-0.2726 +0.9043,-0.0000,0.3285,-0.2726 +0.9043,-0.0000,0.3285,-0.2726 +0.9009,-0.0000,0.3262,-0.2862 +0.9009,-0.0000,0.3262,-0.2862 +0.9009,-0.0000,0.3262,-0.2862 +0.9009,-0.0000,0.3262,-0.2862 +0.8973,-0.0000,0.3240,-0.2998 +0.8973,-0.0000,0.3240,-0.2998 +0.8973,-0.0000,0.3240,-0.2998 +0.8973,-0.0000,0.3240,-0.2998 +0.8934,-0.0000,0.3218,-0.3134 +0.8934,-0.0000,0.3218,-0.3134 +0.8934,-0.0000,0.3218,-0.3134 +0.8934,-0.0000,0.3218,-0.3134 +0.8893,-0.0000,0.3197,-0.3271 +0.8893,-0.0000,0.3197,-0.3271 +0.8893,-0.0000,0.3197,-0.3271 +0.8893,-0.0000,0.3197,-0.3271 +0.8849,-0.0000,0.3176,-0.3407 +0.8849,-0.0000,0.3176,-0.3407 +0.8849,-0.0000,0.3176,-0.3407 +0.8849,-0.0000,0.3176,-0.3407 +0.8803,-0.0000,0.3156,-0.3543 +0.8803,-0.0000,0.3156,-0.3543 +0.8803,-0.0000,0.3156,-0.3543 +0.8803,-0.0000,0.3156,-0.3543 +0.8754,-0.0000,0.3136,-0.3678 +0.8754,-0.0000,0.3136,-0.3678 +0.8754,-0.0000,0.3136,-0.3678 +0.8754,-0.0000,0.3136,-0.3678 +0.8703,-0.0000,0.3116,-0.3814 +0.8703,-0.0000,0.3116,-0.3814 +0.8703,-0.0000,0.3116,-0.3814 +0.8703,-0.0000,0.3116,-0.3814 +0.8650,-0.0000,0.3097,-0.3949 +0.8650,-0.0000,0.3097,-0.3949 +0.8650,-0.0000,0.3097,-0.3949 +0.8650,-0.0000,0.3097,-0.3949 +0.8593,-0.0000,0.3079,-0.4083 +0.8593,-0.0000,0.3079,-0.4083 +0.8593,-0.0000,0.3079,-0.4083 +0.8593,-0.0000,0.3079,-0.4083 +0.8535,-0.0000,0.3061,-0.4217 +0.8535,-0.0000,0.3061,-0.4217 +0.8535,-0.0000,0.3061,-0.4217 +0.8535,-0.0000,0.3061,-0.4217 +0.8474,-0.0000,0.3043,-0.4351 +0.8474,-0.0000,0.3043,-0.4351 +0.8474,-0.0000,0.3043,-0.4351 +0.8474,-0.0000,0.3043,-0.4351 +0.8410,-0.0000,0.3026,-0.4484 +0.8410,-0.0000,0.3026,-0.4484 +0.8410,-0.0000,0.3026,-0.4484 +0.8410,-0.0000,0.3026,-0.4484 +0.8344,-0.0000,0.3010,-0.4617 +0.8344,-0.0000,0.3010,-0.4617 +0.8344,-0.0000,0.3010,-0.4617 +0.8344,-0.0000,0.3010,-0.4617 +0.8276,-0.0000,0.2993,-0.4748 +0.8276,-0.0000,0.2993,-0.4748 +0.8276,-0.0000,0.2993,-0.4748 +0.8276,-0.0000,0.2993,-0.4748 +0.8205,-0.0000,0.2978,-0.4879 +0.8205,-0.0000,0.2978,-0.4879 +0.8205,-0.0000,0.2978,-0.4879 +0.8205,-0.0000,0.2978,-0.4879 +0.8132,-0.0000,0.2962,-0.5010 +0.8132,-0.0000,0.2962,-0.5010 +0.8132,-0.0000,0.2962,-0.5010 +0.8132,-0.0000,0.2962,-0.5010 +0.8056,-0.0000,0.2947,-0.5139 +0.8056,-0.0000,0.2947,-0.5139 +0.8056,-0.0000,0.2947,-0.5139 +0.8056,-0.0000,0.2947,-0.5139 +0.7978,-0.0000,0.2932,-0.5267 +0.7978,-0.0000,0.2932,-0.5267 +0.7978,-0.0000,0.2932,-0.5267 +0.7978,-0.0000,0.2932,-0.5267 +0.7898,-0.0000,0.2918,-0.5395 +0.7898,-0.0000,0.2918,-0.5395 +0.7898,-0.0000,0.2918,-0.5395 +0.7898,-0.0000,0.2918,-0.5395 +0.7815,-0.0000,0.2904,-0.5521 +0.7815,-0.0000,0.2904,-0.5521 +0.7815,-0.0000,0.2904,-0.5521 +0.7815,-0.0000,0.2904,-0.5521 +0.7730,-0.0000,0.2891,-0.5647 +0.7730,-0.0000,0.2891,-0.5647 +0.7730,-0.0000,0.2891,-0.5647 +0.7730,-0.0000,0.2891,-0.5647 +0.7643,-0.0000,0.2878,-0.5771 +0.7643,-0.0000,0.2878,-0.5771 +0.7643,-0.0000,0.2878,-0.5771 +0.7643,-0.0000,0.2878,-0.5771 +0.7553,-0.0000,0.2865,-0.5894 +0.7553,-0.0000,0.2865,-0.5894 +0.7553,-0.0000,0.2865,-0.5894 +0.7553,-0.0000,0.2865,-0.5894 +0.7461,-0.0000,0.2853,-0.6016 +0.7461,-0.0000,0.2853,-0.6016 +0.7461,-0.0000,0.2853,-0.6016 +0.7461,-0.0000,0.2853,-0.6016 +0.7367,-0.0000,0.2841,-0.6136 +0.7367,-0.0000,0.2841,-0.6136 +0.7367,-0.0000,0.2841,-0.6136 +0.7367,-0.0000,0.2841,-0.6136 +0.7271,-0.0000,0.2830,-0.6255 +0.7271,-0.0000,0.2830,-0.6255 +0.7271,-0.0000,0.2830,-0.6255 +0.7271,-0.0000,0.2830,-0.6255 +0.7172,-0.0000,0.2819,-0.6373 +0.7172,-0.0000,0.2819,-0.6373 +0.7172,-0.0000,0.2819,-0.6373 +0.7172,-0.0000,0.2819,-0.6373 +0.7071,-0.0000,0.2808,-0.6490 +0.7071,-0.0000,0.2808,-0.6490 +0.7071,-0.0000,0.2808,-0.6490 +0.7071,-0.0000,0.2808,-0.6490 +0.6968,-0.0000,0.2798,-0.6604 +0.6968,-0.0000,0.2798,-0.6604 +0.6968,-0.0000,0.2798,-0.6604 +0.6968,-0.0000,0.2798,-0.6604 +0.6863,-0.0000,0.2788,-0.6718 +0.6863,-0.0000,0.2788,-0.6718 +0.6863,-0.0000,0.2788,-0.6718 +0.6863,-0.0000,0.2788,-0.6718 +0.6756,-0.0000,0.2779,-0.6829 +0.6756,-0.0000,0.2779,-0.6829 +0.6756,-0.0000,0.2779,-0.6829 +0.6756,-0.0000,0.2779,-0.6829 +0.6646,-0.0000,0.2769,-0.6940 +0.6646,-0.0000,0.2769,-0.6940 +0.6646,-0.0000,0.2769,-0.6940 +0.6646,-0.0000,0.2769,-0.6940 +0.6535,-0.0000,0.2761,-0.7048 +0.6535,-0.0000,0.2761,-0.7048 +0.6535,-0.0000,0.2761,-0.7048 +0.6535,-0.0000,0.2761,-0.7048 +0.6422,-0.0000,0.2752,-0.7155 +0.6422,-0.0000,0.2752,-0.7155 +0.6422,-0.0000,0.2752,-0.7155 +0.6422,-0.0000,0.2752,-0.7155 +0.6306,-0.0000,0.2744,-0.7260 +0.6306,-0.0000,0.2744,-0.7260 +0.6306,-0.0000,0.2744,-0.7260 +0.6306,-0.0000,0.2744,-0.7260 +0.6189,-0.0000,0.2737,-0.7363 +0.6189,-0.0000,0.2737,-0.7363 +0.6189,-0.0000,0.2737,-0.7363 +0.6189,-0.0000,0.2737,-0.7363 +0.6069,-0.0000,0.2730,-0.7464 +0.6069,-0.0000,0.2730,-0.7464 +0.6069,-0.0000,0.2730,-0.7464 +0.6069,-0.0000,0.2730,-0.7464 +0.5948,-0.0000,0.2723,-0.7563 +0.5948,-0.0000,0.2723,-0.7563 +0.5948,-0.0000,0.2723,-0.7563 +0.5948,-0.0000,0.2723,-0.7563 +0.5825,-0.0000,0.2716,-0.7661 +0.5825,-0.0000,0.2716,-0.7661 +0.5825,-0.0000,0.2716,-0.7661 +0.5825,-0.0000,0.2716,-0.7661 +0.5700,-0.0000,0.2710,-0.7756 +0.5700,-0.0000,0.2710,-0.7756 +0.5700,-0.0000,0.2710,-0.7756 +0.5700,-0.0000,0.2710,-0.7756 +0.5574,-0.0000,0.2705,-0.7850 +0.5574,-0.0000,0.2705,-0.7850 +0.5574,-0.0000,0.2705,-0.7850 +0.5574,-0.0000,0.2705,-0.7850 +0.5445,-0.0000,0.2700,-0.7941 +0.5445,-0.0000,0.2700,-0.7941 +0.5445,-0.0000,0.2700,-0.7941 +0.5445,-0.0000,0.2700,-0.7941 +0.5315,-0.0000,0.2695,-0.8030 +0.5315,-0.0000,0.2695,-0.8030 +0.5315,-0.0000,0.2695,-0.8030 +0.5315,-0.0000,0.2695,-0.8030 +0.5184,-0.0000,0.2691,-0.8117 +0.5184,-0.0000,0.2691,-0.8117 +0.5184,-0.0000,0.2691,-0.8117 +0.5184,-0.0000,0.2691,-0.8117 +0.5050,-0.0000,0.2687,-0.8202 +0.5050,-0.0000,0.2687,-0.8202 +0.5050,-0.0000,0.2687,-0.8202 +0.5050,-0.0000,0.2687,-0.8202 +0.4915,-0.0000,0.2684,-0.8285 +0.4915,-0.0000,0.2684,-0.8285 +0.4915,-0.0000,0.2684,-0.8285 +0.4915,-0.0000,0.2684,-0.8285 +0.4779,-0.0000,0.2682,-0.8365 +0.4779,-0.0000,0.2682,-0.8365 +0.4779,-0.0000,0.2682,-0.8365 +0.4779,-0.0000,0.2682,-0.8365 +0.4640,-0.0000,0.2680,-0.8443 +0.4640,-0.0000,0.2680,-0.8443 +0.4640,-0.0000,0.2680,-0.8443 +0.4640,-0.0000,0.2680,-0.8443 +0.4501,-0.0000,0.2678,-0.8519 +0.4501,-0.0000,0.2678,-0.8519 +0.4501,-0.0000,0.2678,-0.8519 +0.4501,-0.0000,0.2678,-0.8519 +0.4360,-0.0000,0.2677,-0.8592 +0.4360,-0.0000,0.2677,-0.8592 +0.4360,-0.0000,0.2677,-0.8592 +0.4360,-0.0000,0.2677,-0.8592 +0.4218,-0.0000,0.2677,-0.8663 +0.4218,-0.0000,0.2677,-0.8663 +0.4218,-0.0000,0.2677,-0.8663 +0.4218,-0.0000,0.2677,-0.8663 +0.4074,-0.0000,0.2677,-0.8731 +0.4074,-0.0000,0.2677,-0.8731 +0.4074,-0.0000,0.2677,-0.8731 +0.4074,-0.0000,0.2677,-0.8731 +0.3929,-0.0000,0.2678,-0.8797 +0.3929,-0.0000,0.2678,-0.8797 +0.3929,-0.0000,0.2678,-0.8797 +0.3929,-0.0000,0.2678,-0.8797 +0.3783,-0.0000,0.2680,-0.8860 +0.3783,-0.0000,0.2680,-0.8860 +0.3783,-0.0000,0.2680,-0.8860 +0.3783,-0.0000,0.2680,-0.8860 +0.3635,-0.0000,0.2683,-0.8921 +0.3635,-0.0000,0.2683,-0.8921 +0.3635,-0.0000,0.2683,-0.8921 +0.3635,-0.0000,0.2683,-0.8921 +0.3487,-0.0000,0.2687,-0.8979 +0.3487,-0.0000,0.2687,-0.8979 +0.3487,-0.0000,0.2687,-0.8979 +0.3487,-0.0000,0.2687,-0.8979 +0.3337,-0.0000,0.2692,-0.9034 +0.3337,-0.0000,0.2692,-0.9034 +0.3337,-0.0000,0.2692,-0.9034 +0.3337,-0.0000,0.2692,-0.9034 +0.3186,-0.0000,0.2698,-0.9087 +0.3186,-0.0000,0.2698,-0.9087 +0.3186,-0.0000,0.2698,-0.9087 +0.3186,-0.0000,0.2698,-0.9087 +0.3034,-0.0000,0.2705,-0.9136 +0.3034,-0.0000,0.2705,-0.9136 +0.3034,-0.0000,0.2705,-0.9136 +0.3034,-0.0000,0.2705,-0.9136 +0.2882,-0.0000,0.2714,-0.9183 +0.2882,-0.0000,0.2714,-0.9183 +0.2882,-0.0000,0.2714,-0.9183 +0.2882,-0.0000,0.2714,-0.9183 +0.2728,-0.0000,0.2725,-0.9227 +0.2728,-0.0000,0.2725,-0.9227 +0.2728,-0.0000,0.2725,-0.9227 +0.2728,-0.0000,0.2725,-0.9227 +0.2573,-0.0000,0.2738,-0.9267 +0.2573,-0.0000,0.2738,-0.9267 +0.2573,-0.0000,0.2738,-0.9267 +0.2573,-0.0000,0.2738,-0.9267 +0.2418,-0.0000,0.2753,-0.9305 +0.2418,-0.0000,0.2753,-0.9305 +0.2418,-0.0000,0.2753,-0.9305 +0.2418,-0.0000,0.2753,-0.9305 +0.2262,-0.0000,0.2771,-0.9339 +0.2262,-0.0000,0.2771,-0.9339 +0.2262,-0.0000,0.2771,-0.9339 +0.2262,-0.0000,0.2771,-0.9339 +0.2105,-0.0000,0.2792,-0.9369 +0.2105,-0.0000,0.2792,-0.9369 +0.2105,-0.0000,0.2792,-0.9369 +0.2105,-0.0000,0.2792,-0.9369 +0.1947,-0.0000,0.2818,-0.9395 +0.1947,-0.0000,0.2818,-0.9395 +0.1947,-0.0000,0.2818,-0.9395 +0.1947,-0.0000,0.2818,-0.9395 +0.1789,-0.0000,0.2848,-0.9417 +0.1789,-0.0000,0.2848,-0.9417 +0.1789,-0.0000,0.2848,-0.9417 +0.1789,-0.0000,0.2848,-0.9417 +0.1630,-0.0000,0.2886,-0.9435 +0.1630,-0.0000,0.2886,-0.9435 +0.1630,-0.0000,0.2886,-0.9435 +0.1630,-0.0000,0.2886,-0.9435 +0.1471,-0.0000,0.2933,-0.9446 +0.1471,-0.0000,0.2933,-0.9446 +0.1471,-0.0000,0.2933,-0.9446 +0.1471,-0.0000,0.2933,-0.9446 +0.1312,-0.0000,0.2991,-0.9452 +0.1312,-0.0000,0.2991,-0.9452 +0.1312,-0.0000,0.2991,-0.9452 +0.1312,-0.0000,0.2991,-0.9452 +0.1152,-0.0000,0.3067,-0.9448 +0.1152,-0.0000,0.3067,-0.9448 +0.1152,-0.0000,0.3067,-0.9448 +0.1152,-0.0000,0.3067,-0.9448 +0.0991,-0.0000,0.3167,-0.9433 +0.0991,-0.0000,0.3167,-0.9433 +0.0991,-0.0000,0.3167,-0.9433 +0.0991,-0.0000,0.3167,-0.9433 +0.0831,-0.0000,0.3307,-0.9401 +0.0831,-0.0000,0.3307,-0.9401 +0.0831,-0.0000,0.3307,-0.9401 +0.0831,-0.0000,0.3307,-0.9401 +0.0670,-0.0000,0.3514,-0.9338 +0.0670,-0.0000,0.3514,-0.9338 +0.0670,-0.0000,0.3514,-0.9338 +0.0670,-0.0000,0.3514,-0.9338 +0.0510,-0.0000,0.3848,-0.9216 +0.0510,-0.0000,0.3848,-0.9216 +0.0510,-0.0000,0.3848,-0.9216 +0.0510,-0.0000,0.3848,-0.9216 +0.0351,-0.0000,0.4473,-0.8937 +0.0351,-0.0000,0.4473,-0.8937 +0.0351,-0.0000,0.4473,-0.8937 +0.0351,-0.0000,0.4473,-0.8937 +0.0196,-0.0000,0.6000,-0.7997 +0.0196,-0.0000,0.6000,-0.7997 +0.0196,-0.0000,0.6000,-0.7997 +0.0196,-0.0000,0.6000,-0.7997 +0.0079,0.0000,1.0000,0.0001 +0.0079,0.0000,1.0000,0.0001 +0.0079,0.0000,1.0000,0.0001 +0.0079,0.0000,1.0000,0.0001 +0.0162,0.0000,0.2425,0.9700 +0.0162,0.0000,0.2425,0.9700 +0.0162,0.0000,0.2425,0.9700 +0.0162,0.0000,0.2425,0.9700 +0.0314,-0.0000,-0.0000,0.9995 +0.0314,-0.0000,-0.0000,0.9995 +0.0314,-0.0000,-0.0000,0.9995 +0.0314,-0.0000,-0.0000,0.9995 +0.0473,-0.0000,-0.0831,0.9954 +0.0473,-0.0000,-0.0831,0.9954 +0.0473,-0.0000,-0.0831,0.9954 +0.0473,-0.0000,-0.0831,0.9954 +0.0633,-0.0000,-0.1241,0.9902 +0.0633,-0.0000,-0.1241,0.9902 +0.0633,-0.0000,-0.1241,0.9902 +0.0633,-0.0000,-0.1241,0.9902 +0.0793,-0.0000,-0.1485,0.9857 +0.0793,-0.0000,-0.1485,0.9857 +0.0793,-0.0000,-0.1485,0.9857 +0.0793,-0.0000,-0.1485,0.9857 +0.0954,-0.0000,-0.1646,0.9817 +0.0954,-0.0000,-0.1646,0.9817 +0.0954,-0.0000,-0.1646,0.9817 +0.0954,-0.0000,-0.1646,0.9817 +0.1114,-0.0000,-0.1762,0.9780 +0.1114,-0.0000,-0.1762,0.9780 +0.1114,-0.0000,-0.1762,0.9780 +0.1114,-0.0000,-0.1762,0.9780 +0.1275,-0.0000,-0.1848,0.9745 +0.1275,-0.0000,-0.1848,0.9745 +0.1275,-0.0000,-0.1848,0.9745 +0.1275,-0.0000,-0.1848,0.9745 +0.1435,-0.0000,-0.1915,0.9709 +0.1435,-0.0000,-0.1915,0.9709 +0.1435,-0.0000,-0.1915,0.9709 +0.1435,-0.0000,-0.1915,0.9709 +0.1594,-0.0000,-0.1970,0.9674 +0.1594,-0.0000,-0.1970,0.9674 +0.1594,-0.0000,-0.1970,0.9674 +0.1594,-0.0000,-0.1970,0.9674 +0.1753,-0.0000,-0.2014,0.9637 +0.1753,-0.0000,-0.2014,0.9637 +0.1753,-0.0000,-0.2014,0.9637 +0.1753,-0.0000,-0.2014,0.9637 +0.1912,-0.0000,-0.2052,0.9599 +0.1912,-0.0000,-0.2052,0.9599 +0.1912,-0.0000,-0.2052,0.9599 +0.1912,-0.0000,-0.2052,0.9599 +0.2070,-0.0000,-0.2085,0.9559 +0.2070,-0.0000,-0.2085,0.9559 +0.2070,-0.0000,-0.2085,0.9559 +0.2070,-0.0000,-0.2085,0.9559 +0.2227,-0.0000,-0.2113,0.9517 +0.2227,-0.0000,-0.2113,0.9517 +0.2227,-0.0000,-0.2113,0.9517 +0.2227,-0.0000,-0.2113,0.9517 +0.2384,-0.0000,-0.2138,0.9473 +0.2384,-0.0000,-0.2138,0.9473 +0.2384,-0.0000,-0.2138,0.9473 +0.2384,-0.0000,-0.2138,0.9473 +0.2540,-0.0000,-0.2161,0.9428 +0.2540,-0.0000,-0.2161,0.9428 +0.2540,-0.0000,-0.2161,0.9428 +0.2540,-0.0000,-0.2161,0.9428 +0.2695,-0.0000,-0.2181,0.9380 +0.2695,-0.0000,-0.2181,0.9380 +0.2695,-0.0000,-0.2181,0.9380 +0.2695,-0.0000,-0.2181,0.9380 +0.2849,-0.0000,-0.2200,0.9330 +0.2849,-0.0000,-0.2200,0.9330 +0.2849,-0.0000,-0.2200,0.9330 +0.2849,-0.0000,-0.2200,0.9330 +0.3002,-0.0000,-0.2217,0.9277 +0.3002,-0.0000,-0.2217,0.9277 +0.3002,-0.0000,-0.2217,0.9277 +0.3002,-0.0000,-0.2217,0.9277 +0.3155,-0.0000,-0.2233,0.9223 +0.3155,-0.0000,-0.2233,0.9223 +0.3155,-0.0000,-0.2233,0.9223 +0.3155,-0.0000,-0.2233,0.9223 +0.3306,-0.0000,-0.2248,0.9166 +0.3306,-0.0000,-0.2248,0.9166 +0.3306,-0.0000,-0.2248,0.9166 +0.3306,-0.0000,-0.2248,0.9166 +0.3457,-0.0000,-0.2263,0.9107 +0.3457,-0.0000,-0.2263,0.9107 +0.3457,-0.0000,-0.2263,0.9107 +0.3457,-0.0000,-0.2263,0.9107 +0.3606,-0.0000,-0.2277,0.9045 +0.3606,-0.0000,-0.2277,0.9045 +0.3606,-0.0000,-0.2277,0.9045 +0.3606,-0.0000,-0.2277,0.9045 +0.3754,-0.0000,-0.2290,0.8981 +0.3754,-0.0000,-0.2290,0.8981 +0.3754,-0.0000,-0.2290,0.8981 +0.3754,-0.0000,-0.2290,0.8981 +0.3901,-0.0000,-0.2303,0.8915 +0.3901,-0.0000,-0.2303,0.8915 +0.3901,-0.0000,-0.2303,0.8915 +0.3901,-0.0000,-0.2303,0.8915 +0.4047,-0.0000,-0.2315,0.8847 +0.4047,-0.0000,-0.2315,0.8847 +0.4047,-0.0000,-0.2315,0.8847 +0.4047,-0.0000,-0.2315,0.8847 +0.4192,-0.0000,-0.2327,0.8776 +0.4192,-0.0000,-0.2327,0.8776 +0.4192,-0.0000,-0.2327,0.8776 +0.4192,-0.0000,-0.2327,0.8776 +0.4335,-0.0000,-0.2339,0.8703 +0.4335,-0.0000,-0.2339,0.8703 +0.4335,-0.0000,-0.2339,0.8703 +0.4335,-0.0000,-0.2339,0.8703 +0.4477,-0.0000,-0.2351,0.8627 +0.4477,-0.0000,-0.2351,0.8627 +0.4477,-0.0000,-0.2351,0.8627 +0.4477,-0.0000,-0.2351,0.8627 +0.4617,-0.0000,-0.2362,0.8550 +0.4617,-0.0000,-0.2362,0.8550 +0.4617,-0.0000,-0.2362,0.8550 +0.4617,-0.0000,-0.2362,0.8550 +0.4756,-0.0000,-0.2374,0.8470 +0.4756,-0.0000,-0.2374,0.8470 +0.4756,-0.0000,-0.2374,0.8470 +0.4756,-0.0000,-0.2374,0.8470 +0.4894,-0.0000,-0.2385,0.8388 +0.4894,-0.0000,-0.2385,0.8388 +0.4894,-0.0000,-0.2385,0.8388 +0.4894,-0.0000,-0.2385,0.8388 +0.5030,-0.0000,-0.2396,0.8304 +0.5030,-0.0000,-0.2396,0.8304 +0.5030,-0.0000,-0.2396,0.8304 +0.5030,-0.0000,-0.2396,0.8304 +0.5164,-0.0000,-0.2408,0.8218 +0.5164,-0.0000,-0.2408,0.8218 +0.5164,-0.0000,-0.2408,0.8218 +0.5164,-0.0000,-0.2408,0.8218 +0.5297,-0.0000,-0.2419,0.8130 +0.5297,-0.0000,-0.2419,0.8130 +0.5297,-0.0000,-0.2419,0.8130 +0.5297,-0.0000,-0.2419,0.8130 +0.5428,-0.0000,-0.2431,0.8039 +0.5428,-0.0000,-0.2431,0.8039 +0.5428,-0.0000,-0.2431,0.8039 +0.5428,-0.0000,-0.2431,0.8039 +0.5558,-0.0000,-0.2442,0.7947 +0.5558,-0.0000,-0.2442,0.7947 +0.5558,-0.0000,-0.2442,0.7947 +0.5558,-0.0000,-0.2442,0.7947 +0.5685,-0.0000,-0.2454,0.7852 +0.5685,-0.0000,-0.2454,0.7852 +0.5685,-0.0000,-0.2454,0.7852 +0.5685,-0.0000,-0.2454,0.7852 +0.5811,-0.0000,-0.2465,0.7756 +0.5811,-0.0000,-0.2465,0.7756 +0.5811,-0.0000,-0.2465,0.7756 +0.5811,-0.0000,-0.2465,0.7756 +0.5936,-0.0000,-0.2477,0.7657 +0.5936,-0.0000,-0.2477,0.7657 +0.5936,-0.0000,-0.2477,0.7657 +0.5936,-0.0000,-0.2477,0.7657 +0.6058,-0.0000,-0.2489,0.7557 +0.6058,-0.0000,-0.2489,0.7557 +0.6058,-0.0000,-0.2489,0.7557 +0.6058,-0.0000,-0.2489,0.7557 +0.6179,-0.0000,-0.2501,0.7455 +0.6179,-0.0000,-0.2501,0.7455 +0.6179,-0.0000,-0.2501,0.7455 +0.6179,-0.0000,-0.2501,0.7455 +0.6297,-0.0000,-0.2513,0.7351 +0.6297,-0.0000,-0.2513,0.7351 +0.6297,-0.0000,-0.2513,0.7351 +0.6297,-0.0000,-0.2513,0.7351 +0.6414,-0.0000,-0.2525,0.7245 +0.6414,-0.0000,-0.2525,0.7245 +0.6414,-0.0000,-0.2525,0.7245 +0.6414,-0.0000,-0.2525,0.7245 +0.6528,-0.0000,-0.2538,0.7137 +0.6528,-0.0000,-0.2538,0.7137 +0.6528,-0.0000,-0.2538,0.7137 +0.6528,-0.0000,-0.2538,0.7137 +0.6641,-0.0000,-0.2550,0.7028 +0.6641,-0.0000,-0.2550,0.7028 +0.6641,-0.0000,-0.2550,0.7028 +0.6641,-0.0000,-0.2550,0.7028 +0.6752,-0.0000,-0.2563,0.6917 +0.6752,-0.0000,-0.2563,0.6917 +0.6752,-0.0000,-0.2563,0.6917 +0.6752,-0.0000,-0.2563,0.6917 +0.6860,-0.0000,-0.2576,0.6804 +0.6860,-0.0000,-0.2576,0.6804 +0.6860,-0.0000,-0.2576,0.6804 +0.6860,-0.0000,-0.2576,0.6804 +0.6967,-0.0000,-0.2590,0.6690 +0.6967,-0.0000,-0.2590,0.6690 +0.6967,-0.0000,-0.2590,0.6690 +0.6967,-0.0000,-0.2590,0.6690 +0.7071,-0.0000,-0.2603,0.6575 +0.7071,-0.0000,-0.2603,0.6575 +0.7071,-0.0000,-0.2603,0.6575 +0.7071,-0.0000,-0.2603,0.6575 +0.7173,-0.0000,-0.2617,0.6457 +0.7173,-0.0000,-0.2617,0.6457 +0.7173,-0.0000,-0.2617,0.6457 +0.7173,-0.0000,-0.2617,0.6457 +0.7273,-0.0000,-0.2631,0.6339 +0.7273,-0.0000,-0.2631,0.6339 +0.7273,-0.0000,-0.2631,0.6339 +0.7273,-0.0000,-0.2631,0.6339 +0.7371,-0.0000,-0.2645,0.6219 +0.7371,-0.0000,-0.2645,0.6219 +0.7371,-0.0000,-0.2645,0.6219 +0.7371,-0.0000,-0.2645,0.6219 +0.7467,-0.0000,-0.2659,0.6097 +0.7467,-0.0000,-0.2659,0.6097 +0.7467,-0.0000,-0.2659,0.6097 +0.7467,-0.0000,-0.2659,0.6097 +0.7560,-0.0000,-0.2674,0.5974 +0.7560,-0.0000,-0.2674,0.5974 +0.7560,-0.0000,-0.2674,0.5974 +0.7560,-0.0000,-0.2674,0.5974 +0.7651,-0.0000,-0.2689,0.5851 +0.7651,-0.0000,-0.2689,0.5851 +0.7651,-0.0000,-0.2689,0.5851 +0.7651,-0.0000,-0.2689,0.5851 +0.7740,-0.0000,-0.2705,0.5725 +0.7740,-0.0000,-0.2705,0.5725 +0.7740,-0.0000,-0.2705,0.5725 +0.7740,-0.0000,-0.2705,0.5725 +0.7826,-0.0000,-0.2720,0.5599 +0.7826,-0.0000,-0.2720,0.5599 +0.7826,-0.0000,-0.2720,0.5599 +0.7826,-0.0000,-0.2720,0.5599 +0.7910,-0.0000,-0.2736,0.5472 +0.7910,-0.0000,-0.2736,0.5472 +0.7910,-0.0000,-0.2736,0.5472 +0.7910,-0.0000,-0.2736,0.5472 +0.7992,-0.0000,-0.2752,0.5343 +0.7992,-0.0000,-0.2752,0.5343 +0.7992,-0.0000,-0.2752,0.5343 +0.7992,-0.0000,-0.2752,0.5343 +0.8072,-0.0000,-0.2769,0.5214 +0.8072,-0.0000,-0.2769,0.5214 +0.8072,-0.0000,-0.2769,0.5214 +0.8072,-0.0000,-0.2769,0.5214 +0.8149,-0.0000,-0.2786,0.5083 +0.8149,-0.0000,-0.2786,0.5083 +0.8149,-0.0000,-0.2786,0.5083 +0.8149,-0.0000,-0.2786,0.5083 +0.8223,-0.0000,-0.2803,0.4952 +0.8223,-0.0000,-0.2803,0.4952 +0.8223,-0.0000,-0.2803,0.4952 +0.8223,-0.0000,-0.2803,0.4952 +0.8295,-0.0000,-0.2820,0.4820 +0.8295,-0.0000,-0.2820,0.4820 +0.8295,-0.0000,-0.2820,0.4820 +0.8295,-0.0000,-0.2820,0.4820 +0.8365,-0.0000,-0.2838,0.4687 +0.8365,-0.0000,-0.2838,0.4687 +0.8365,-0.0000,-0.2838,0.4687 +0.8365,-0.0000,-0.2838,0.4687 +0.8433,-0.0000,-0.2857,0.4553 +0.8433,-0.0000,-0.2857,0.4553 +0.8433,-0.0000,-0.2857,0.4553 +0.8433,-0.0000,-0.2857,0.4553 +0.8497,-0.0000,-0.2875,0.4419 +0.8497,-0.0000,-0.2875,0.4419 +0.8497,-0.0000,-0.2875,0.4419 +0.8497,-0.0000,-0.2875,0.4419 +0.8560,-0.0000,-0.2894,0.4284 +0.8560,-0.0000,-0.2894,0.4284 +0.8560,-0.0000,-0.2894,0.4284 +0.8560,-0.0000,-0.2894,0.4284 +0.8620,-0.0000,-0.2913,0.4148 +0.8620,-0.0000,-0.2913,0.4148 +0.8620,-0.0000,-0.2913,0.4148 +0.8620,-0.0000,-0.2913,0.4148 +0.8677,-0.0000,-0.2933,0.4012 +0.8677,-0.0000,-0.2933,0.4012 +0.8677,-0.0000,-0.2933,0.4012 +0.8677,-0.0000,-0.2933,0.4012 +0.8732,-0.0000,-0.2953,0.3876 +0.8732,-0.0000,-0.2953,0.3876 +0.8732,-0.0000,-0.2953,0.3876 +0.8732,-0.0000,-0.2953,0.3876 +0.8785,-0.0000,-0.2974,0.3739 +0.8785,-0.0000,-0.2974,0.3739 +0.8785,-0.0000,-0.2974,0.3739 +0.8785,-0.0000,-0.2974,0.3739 +0.8835,-0.0000,-0.2995,0.3602 +0.8835,-0.0000,-0.2995,0.3602 +0.8835,-0.0000,-0.2995,0.3602 +0.8835,-0.0000,-0.2995,0.3602 +0.8883,-0.0000,-0.3016,0.3465 +0.8883,-0.0000,-0.3016,0.3465 +0.8883,-0.0000,-0.3016,0.3465 +0.8883,-0.0000,-0.3016,0.3465 +0.8928,-0.0000,-0.3038,0.3327 +0.8928,-0.0000,-0.3038,0.3327 +0.8928,-0.0000,-0.3038,0.3327 +0.8928,-0.0000,-0.3038,0.3327 +0.8970,-0.0000,-0.3060,0.3189 +0.8970,-0.0000,-0.3060,0.3189 +0.8970,-0.0000,-0.3060,0.3189 +0.8970,-0.0000,-0.3060,0.3189 +0.9010,-0.0000,-0.3083,0.3051 +0.9010,-0.0000,-0.3083,0.3051 +0.9010,-0.0000,-0.3083,0.3051 +0.9010,-0.0000,-0.3083,0.3051 +0.9048,-0.0000,-0.3106,0.2913 +0.9048,-0.0000,-0.3106,0.2913 +0.9048,-0.0000,-0.3106,0.2913 +0.9048,-0.0000,-0.3106,0.2913 +0.9083,-0.0000,-0.3130,0.2776 +0.9083,-0.0000,-0.3130,0.2776 +0.9083,-0.0000,-0.3130,0.2776 +0.9083,-0.0000,-0.3130,0.2776 +0.9116,-0.0000,-0.3154,0.2638 +0.9116,-0.0000,-0.3154,0.2638 +0.9116,-0.0000,-0.3154,0.2638 +0.9116,-0.0000,-0.3154,0.2638 +0.9146,-0.0000,-0.3179,0.2500 +0.9146,-0.0000,-0.3179,0.2500 +0.9146,-0.0000,-0.3179,0.2500 +0.9146,-0.0000,-0.3179,0.2500 +0.9174,-0.0000,-0.3204,0.2363 +0.9174,-0.0000,-0.3204,0.2363 +0.9174,-0.0000,-0.3204,0.2363 +0.9174,-0.0000,-0.3204,0.2363 +0.9199,-0.0000,-0.3229,0.2226 +0.9199,-0.0000,-0.3229,0.2226 +0.9199,-0.0000,-0.3229,0.2226 +0.9199,-0.0000,-0.3229,0.2226 +0.9222,-0.0000,-0.3256,0.2089 +0.9222,-0.0000,-0.3256,0.2089 +0.9222,-0.0000,-0.3256,0.2089 +0.9222,-0.0000,-0.3256,0.2089 +0.9242,-0.0000,-0.3282,0.1952 +0.9242,-0.0000,-0.3282,0.1952 +0.9242,-0.0000,-0.3282,0.1952 +0.9242,-0.0000,-0.3282,0.1952 +0.9260,-0.0000,-0.3309,0.1817 +0.9260,-0.0000,-0.3309,0.1817 +0.9260,-0.0000,-0.3309,0.1817 +0.9260,-0.0000,-0.3309,0.1817 +0.9276,-0.0000,-0.3337,0.1681 +0.9276,-0.0000,-0.3337,0.1681 +0.9276,-0.0000,-0.3337,0.1681 +0.9276,-0.0000,-0.3337,0.1681 +0.9289,-0.0000,-0.3366,0.1546 +0.9289,-0.0000,-0.3366,0.1546 +0.9289,-0.0000,-0.3366,0.1546 +0.9289,-0.0000,-0.3366,0.1546 +0.9300,-0.0000,-0.3395,0.1412 +0.9300,-0.0000,-0.3395,0.1412 +0.9300,-0.0000,-0.3395,0.1412 +0.9300,-0.0000,-0.3395,0.1412 +0.9308,-0.0000,-0.3424,0.1279 +0.9308,-0.0000,-0.3424,0.1279 +0.9308,-0.0000,-0.3424,0.1279 +0.9308,-0.0000,-0.3424,0.1279 +0.9314,-0.0000,-0.3454,0.1146 +0.9314,-0.0000,-0.3454,0.1146 +0.9314,-0.0000,-0.3454,0.1146 +0.9314,-0.0000,-0.3454,0.1146 +0.9318,-0.0000,-0.3485,0.1015 +0.9318,-0.0000,-0.3485,0.1015 +0.9318,-0.0000,-0.3485,0.1015 +0.9318,-0.0000,-0.3485,0.1015 +0.9320,-0.0000,-0.3516,0.0884 +0.9320,-0.0000,-0.3516,0.0884 +0.9320,-0.0000,-0.3516,0.0884 +0.9320,-0.0000,-0.3516,0.0884 +0.9319,-0.0000,-0.3548,0.0754 +0.9319,-0.0000,-0.3548,0.0754 +0.9319,-0.0000,-0.3548,0.0754 +0.9319,-0.0000,-0.3548,0.0754 +0.9316,-0.0000,-0.3581,0.0625 +0.9316,-0.0000,-0.3581,0.0625 +0.9316,-0.0000,-0.3581,0.0625 +0.9316,-0.0000,-0.3581,0.0625 +0.9311,-0.0000,-0.3614,0.0498 +0.9311,-0.0000,-0.3614,0.0498 +0.9311,-0.0000,-0.3614,0.0498 +0.9311,-0.0000,-0.3614,0.0498 +0.9303,-0.0000,-0.3648,0.0371 +0.9303,-0.0000,-0.3648,0.0371 +0.9303,-0.0000,-0.3648,0.0371 +0.9303,-0.0000,-0.3648,0.0371 +0.9294,-0.0000,-0.3683,0.0246 +0.9294,-0.0000,-0.3683,0.0246 +0.9294,-0.0000,-0.3683,0.0246 +0.9294,-0.0000,-0.3683,0.0246 +0.9282,-0.0000,-0.3718,0.0122 +0.9282,-0.0000,-0.3718,0.0122 +0.9282,-0.0000,-0.3718,0.0122 +0.9282,-0.0000,-0.3718,0.0122 +0.9269,-0.0000,-0.3754,-0.0000 +0.9269,-0.0000,-0.3754,-0.0000 +0.9269,-0.0000,-0.3754,-0.0000 +0.9269,-0.0000,-0.3754,-0.0000 diff --git a/tests/renderer/constants.py b/tests/renderer/constants.py index 2d6a4daee41b8ad5187cd1d953f9ff39ae99e862..f1827aba09c5006186f0ed40c0b489c259e0c73c 100644 --- a/tests/renderer/constants.py +++ b/tests/renderer/constants.py @@ -30,8 +30,8 @@ accordance with the laws of the Federal Republic of Germany excluding its confli the United Nations Convention on Contracts on the International Sales of Goods. """ -import platform from pathlib import Path +import platform """ Set up paths """ TESTS_DIR = Path(__file__).parent @@ -55,8 +55,6 @@ elif platform.system() in ["Linux", "Darwin"]: else: assert False, f"Unsupported platform {platform.system()}" -SAMPLING_RATES = ["48kHz", "32kHz", "16kHz"] - """ Renderer commandline template """ RENDERER_CMD = [ str(TESTS_DIR.parent.parent.joinpath("IVAS_rend")), @@ -117,27 +115,27 @@ FORMAT_TO_FILE_SMOKETEST = { "NDP_ISM4": NCHAN_TO_FILE[4], "MASA1": NCHAN_TO_FILE[1], "MASA2": NCHAN_TO_FILE[2], - "ISM1MASA1": NCHAN_TO_FILE[2], - "ISM2MASA1": NCHAN_TO_FILE[3], - "ISM3MASA1": NCHAN_TO_FILE[4], - "ISM4MASA1": NCHAN_TO_FILE[5], - "ISM1MASA2": NCHAN_TO_FILE[3], - "ISM2MASA2": NCHAN_TO_FILE[4], - "ISM3MASA2": NCHAN_TO_FILE[5], - "ISM4MASA2": NCHAN_TO_FILE[6], - "ISM1SBA1": NCHAN_TO_FILE[5], - "ISM2SBA1": NCHAN_TO_FILE[6], - "ISM3SBA1": NCHAN_TO_FILE[7], - "ISM4SBA1": NCHAN_TO_FILE[8], - "ISM1SBA2": NCHAN_TO_FILE[10], - "ISM2SBA2": NCHAN_TO_FILE[11], - "ISM3SBA2": NCHAN_TO_FILE[12], - "ISM4SBA2": NCHAN_TO_FILE[13], - "ISM1SBA3": NCHAN_TO_FILE[17], - "ISM2SBA3": NCHAN_TO_FILE[18], - "ISM3SBA3": NCHAN_TO_FILE[19], - "ISM4SBA3": NCHAN_TO_FILE[20], - "META": TEST_VECTOR_DIR.joinpath("mixed_scene_48.txt"), + "OMASA_1_1": NCHAN_TO_FILE[2], + "OMASA_1_2": NCHAN_TO_FILE[3], + "OMASA_1_3": NCHAN_TO_FILE[4], + "OMASA_1_4": NCHAN_TO_FILE[5], + "OMASA_2_1": NCHAN_TO_FILE[3], + "OMASA_2_2": NCHAN_TO_FILE[4], + "OMASA_2_3": NCHAN_TO_FILE[5], + "OMASA_2_4": NCHAN_TO_FILE[6], + "OSBA_1_1": NCHAN_TO_FILE[5], + "OSBA_2_1": NCHAN_TO_FILE[6], + "OSBA_3_1": NCHAN_TO_FILE[7], + "OSBA_4_1": NCHAN_TO_FILE[8], + "OSBA_1_2": NCHAN_TO_FILE[10], + "OSBA_2_2": NCHAN_TO_FILE[11], + "OSBA_3_2": NCHAN_TO_FILE[12], + "OSBA_4_2": NCHAN_TO_FILE[13], + "OSBA_1_3": NCHAN_TO_FILE[17], + "OSBA_2_3": NCHAN_TO_FILE[18], + "OSBA_3_3": NCHAN_TO_FILE[19], + "OSBA_4_3": NCHAN_TO_FILE[20], + "META": TEST_VECTOR_DIR.joinpath("mixed_scene.txt"), "16ch_8+4+4": NCHAN_TO_FILE[16], "4d4": NCHAN_TO_FILE[8], "t_design_4": NCHAN_TO_FILE[12], @@ -160,27 +158,27 @@ FORMAT_TO_FILE_COMPARETEST = { "ISM4": TESTV_DIR.joinpath("stv4ISM48s.wav"), "MASA1": TESTV_DIR.joinpath("stv1MASA1TC48c.wav"), "MASA2": TESTV_DIR.joinpath("stv2MASA2TC48c.wav"), - "ISM1MASA1": TESTV_DIR.joinpath("stvOMASA_1ISM_1MASA1TC48c.wav"), - "ISM2MASA1": TESTV_DIR.joinpath("stvOMASA_2ISM_2MASA1TC48c.wav"), - "ISM3MASA1": TESTV_DIR.joinpath("stvOMASA_3ISM_1MASA1TC48c.wav"), - "ISM4MASA1": TESTV_DIR.joinpath("stvOMASA_4ISM_2MASA1TC48c.wav"), - "ISM1MASA2": TESTV_DIR.joinpath("stvOMASA_1ISM_1MASA2TC48c.wav"), - "ISM2MASA2": TESTV_DIR.joinpath("stvOMASA_2ISM_2MASA2TC48c.wav"), - "ISM3MASA2": TESTV_DIR.joinpath("stvOMASA_3ISM_1MASA2TC48c.wav"), - "ISM4MASA2": TESTV_DIR.joinpath("stvOMASA_4ISM_2MASA2TC48c.wav"), - "ISM1SBA1": TESTV_DIR.joinpath("stvOSBA_1ISM_FOA48c.wav"), - "ISM1SBA2": TESTV_DIR.joinpath("stvOSBA_1ISM_2OA48c.wav"), - "ISM1SBA3": TESTV_DIR.joinpath("stvOSBA_1ISM_3OA48c.wav"), - "ISM2SBA1": TESTV_DIR.joinpath("stvOSBA_2ISM_FOA48c.wav"), - "ISM2SBA2": TESTV_DIR.joinpath("stvOSBA_2ISM_2OA48c.wav"), - "ISM2SBA3": TESTV_DIR.joinpath("stvOSBA_2ISM_3OA48c.wav"), - "ISM3SBA1": TESTV_DIR.joinpath("stvOSBA_3ISM_FOA48c.wav"), - "ISM3SBA2": TESTV_DIR.joinpath("stvOSBA_3ISM_2OA48c.wav"), - "ISM3SBA3": TESTV_DIR.joinpath("stvOSBA_3ISM_3OA48c.wav"), - "ISM4SBA1": TESTV_DIR.joinpath("stvOSBA_4ISM_FOA48c.wav"), - "ISM4SBA2": TESTV_DIR.joinpath("stvOSBA_4ISM_2OA48c.wav"), - "ISM4SBA3": TESTV_DIR.joinpath("stvOSBA_4ISM_3OA48c.wav"), - "META": TEST_VECTOR_DIR.joinpath("mixed_scene_48.txt"), + "OMASA_1_1": TESTV_DIR.joinpath("stvOMASA_1ISM_1MASA1TC48c.wav"), + "OMASA_1_2": TESTV_DIR.joinpath("stvOMASA_2ISM_2MASA1TC48c.wav"), + "OMASA_1_3": TESTV_DIR.joinpath("stvOMASA_3ISM_1MASA1TC48c.wav"), + "OMASA_1_4": TESTV_DIR.joinpath("stvOMASA_4ISM_2MASA1TC48c.wav"), + "OMASA_2_1": TESTV_DIR.joinpath("stvOMASA_1ISM_1MASA2TC48c.wav"), + "OMASA_2_2": TESTV_DIR.joinpath("stvOMASA_2ISM_2MASA2TC48c.wav"), + "OMASA_2_3": TESTV_DIR.joinpath("stvOMASA_3ISM_1MASA2TC48c.wav"), + "OMASA_2_4": TESTV_DIR.joinpath("stvOMASA_4ISM_2MASA2TC48c.wav"), + "OSBA_1_1": TESTV_DIR.joinpath("stvOSBA_1ISM_FOA48c.wav"), + "OSBA_1_2": TESTV_DIR.joinpath("stvOSBA_1ISM_2OA48c.wav"), + "OSBA_1_3": TESTV_DIR.joinpath("stvOSBA_1ISM_3OA48c.wav"), + "OSBA_2_1": TESTV_DIR.joinpath("stvOSBA_2ISM_FOA48c.wav"), + "OSBA_2_2": TESTV_DIR.joinpath("stvOSBA_2ISM_2OA48c.wav"), + "OSBA_2_3": TESTV_DIR.joinpath("stvOSBA_2ISM_3OA48c.wav"), + "OSBA_3_1": TESTV_DIR.joinpath("stvOSBA_3ISM_FOA48c.wav"), + "OSBA_3_2": TESTV_DIR.joinpath("stvOSBA_3ISM_2OA48c.wav"), + "OSBA_3_3": TESTV_DIR.joinpath("stvOSBA_3ISM_3OA48c.wav"), + "OSBA_4_1": TESTV_DIR.joinpath("stvOSBA_4ISM_FOA48c.wav"), + "OSBA_4_2": TESTV_DIR.joinpath("stvOSBA_4ISM_2OA48c.wav"), + "OSBA_4_3": TESTV_DIR.joinpath("stvOSBA_4ISM_3OA48c.wav"), + "META": TEST_VECTOR_DIR.joinpath("mixed_scene.txt"), "16ch_8+4+4": TESTV_DIR.joinpath("stv3OA48c.wav"), "4d4": TESTV_DIR.joinpath("stv71MC48c.wav"), "t_design_4": TESTV_DIR.joinpath("stv714MC48c.wav"), @@ -203,27 +201,27 @@ FORMAT_TO_FILE_LTV = { "ISM4": LTV_DIR.joinpath("ltv48_4ISM.wav"), "MASA1": LTV_DIR.joinpath("ltv48_MASA1TC.wav"), "MASA2": LTV_DIR.joinpath("ltv48_MASA2TC.wav"), - "ISM1MASA1": LTV_DIR.joinpath("ltv48_OMASA_1ISM_1TC.wav"), - "ISM2MASA1": LTV_DIR.joinpath("ltv48_OMASA_2ISM_1TC.wav"), - "ISM3MASA1": LTV_DIR.joinpath("ltv48_OMASA_3ISM_1TC.wav"), - "ISM4MASA1": LTV_DIR.joinpath("ltv48_OMASA_4ISM_1TC.wav"), - "ISM1MASA2": LTV_DIR.joinpath("ltv48_OMASA_1ISM_2TC.wav"), - "ISM2MASA2": LTV_DIR.joinpath("ltv48_OMASA_2ISM_2TC.wav"), - "ISM3MASA2": LTV_DIR.joinpath("ltv48_OMASA_3ISM_2TC.wav"), - "ISM4MASA2": LTV_DIR.joinpath("ltv48_OMASA_4ISM_2TC.wav"), - "ISM1SBA1": LTV_DIR.joinpath("ltv48_OSBA_1ISM_FOA.wav"), - "ISM1SBA2": LTV_DIR.joinpath("ltv48_OSBA_1ISM_HOA2.wav"), - "ISM1SBA3": LTV_DIR.joinpath("ltv48_OSBA_1ISM_HOA3.wav"), - "ISM2SBA1": LTV_DIR.joinpath("ltv48_OSBA_2ISM_FOA.wav"), - "ISM2SBA2": LTV_DIR.joinpath("ltv48_OSBA_2ISM_HOA2.wav"), - "ISM2SBA3": LTV_DIR.joinpath("ltv48_OSBA_2ISM_HOA3.wav"), - "ISM3SBA1": LTV_DIR.joinpath("ltv48_OSBA_3ISM_FOA.wav"), - "ISM3SBA2": LTV_DIR.joinpath("ltv48_OSBA_3ISM_HOA2.wav"), - "ISM3SBA3": LTV_DIR.joinpath("ltv48_OSBA_3ISM_HOA3.wav"), - "ISM4SBA1": LTV_DIR.joinpath("ltv48_OSBA_4ISM_FOA.wav"), - "ISM4SBA2": LTV_DIR.joinpath("ltv48_OSBA_4ISM_HOA2.wav"), - "ISM4SBA3": LTV_DIR.joinpath("ltv48_OSBA_4ISM_HOA3.wav"), - "META": TEST_VECTOR_DIR.joinpath("mixed_scene_48.txt"), + "OMASA_1_1": LTV_DIR.joinpath("ltv48_OMASA_1ISM_1TC.wav"), + "OMASA_1_2": LTV_DIR.joinpath("ltv48_OMASA_2ISM_1TC.wav"), + "OMASA_1_3": LTV_DIR.joinpath("ltv48_OMASA_3ISM_1TC.wav"), + "OMASA_1_4": LTV_DIR.joinpath("ltv48_OMASA_4ISM_1TC.wav"), + "OMASA_2_1": LTV_DIR.joinpath("ltv48_OMASA_1ISM_2TC.wav"), + "OMASA_2_2": LTV_DIR.joinpath("ltv48_OMASA_2ISM_2TC.wav"), + "OMASA_2_3": LTV_DIR.joinpath("ltv48_OMASA_3ISM_2TC.wav"), + "OMASA_2_4": LTV_DIR.joinpath("ltv48_OMASA_4ISM_2TC.wav"), + "OSBA_1_1": LTV_DIR.joinpath("ltv48_OSBA_1ISM_FOA.wav"), + "OSBA_1_2": LTV_DIR.joinpath("ltv48_OSBA_1ISM_HOA2.wav"), + "OSBA_1_3": LTV_DIR.joinpath("ltv48_OSBA_1ISM_HOA3.wav"), + "OSBA_2_1": LTV_DIR.joinpath("ltv48_OSBA_2ISM_FOA.wav"), + "OSBA_2_2": LTV_DIR.joinpath("ltv48_OSBA_2ISM_HOA2.wav"), + "OSBA_2_3": LTV_DIR.joinpath("ltv48_OSBA_2ISM_HOA3.wav"), + "OSBA_3_1": LTV_DIR.joinpath("ltv48_OSBA_3ISM_FOA.wav"), + "OSBA_3_2": LTV_DIR.joinpath("ltv48_OSBA_3ISM_HOA2.wav"), + "OSBA_3_3": LTV_DIR.joinpath("ltv48_OSBA_3ISM_HOA3.wav"), + "OSBA_4_1": LTV_DIR.joinpath("ltv48_OSBA_4ISM_FOA.wav"), + "OSBA_4_2": LTV_DIR.joinpath("ltv48_OSBA_4ISM_HOA2.wav"), + "OSBA_4_3": LTV_DIR.joinpath("ltv48_OSBA_4ISM_HOA3.wav"), + "META": TEST_VECTOR_DIR.joinpath("mixed_scene.txt"), "16ch_8+4+4": LTV_DIR.joinpath("ltv48_HOA3.wav"), "4d4": LTV_DIR.joinpath("ltv48_MC71.wav"), "t_design_4": LTV_DIR.joinpath("ltv48_MC714.wav"), @@ -254,44 +252,44 @@ FORMAT_TO_METADATA_FILES = { ], "MASA1": [str(TESTV_DIR.joinpath("stv1MASA1TC48c.met"))], "MASA2": [str(TESTV_DIR.joinpath("stv2MASA2TC48c.met"))], - "ISM1MASA1": [ + "OMASA_1_1": [ str(TESTV_DIR.joinpath("stvISM1.csv")), str(TESTV_DIR.joinpath("stvOMASA_1ISM_1MASA1TC48c.met")), ], - "ISM2MASA1": [ + "OMASA_1_2": [ str(TESTV_DIR.joinpath("stvISM1.csv")), str(TESTV_DIR.joinpath("stvISM2.csv")), str(TESTV_DIR.joinpath("stvOMASA_2ISM_2MASA1TC48c.met")), ], - "ISM3MASA1": [ + "OMASA_1_3": [ str(TESTV_DIR.joinpath("stvISM1.csv")), str(TESTV_DIR.joinpath("stvISM2.csv")), str(TESTV_DIR.joinpath("stvISM3.csv")), str(TESTV_DIR.joinpath("stvOMASA_3ISM_1MASA1TC48c.met")), ], - "ISM4MASA1": [ + "OMASA_1_4": [ str(TESTV_DIR.joinpath("stvISM1.csv")), str(TESTV_DIR.joinpath("stvISM2.csv")), str(TESTV_DIR.joinpath("stvISM3.csv")), str(TESTV_DIR.joinpath("stvISM4.csv")), str(TESTV_DIR.joinpath("stvOMASA_4ISM_2MASA1TC48c.met")), ], - "ISM1MASA2": [ + "OMASA_2_1": [ str(TESTV_DIR.joinpath("stvISM1.csv")), str(TESTV_DIR.joinpath("stvOMASA_1ISM_1MASA2TC48c.met")), ], - "ISM2MASA2": [ + "OMASA_2_2": [ str(TESTV_DIR.joinpath("stvISM1.csv")), str(TESTV_DIR.joinpath("stvISM2.csv")), str(TESTV_DIR.joinpath("stvOMASA_2ISM_2MASA2TC48c.met")), ], - "ISM3MASA2": [ + "OMASA_2_3": [ str(TESTV_DIR.joinpath("stvISM1.csv")), str(TESTV_DIR.joinpath("stvISM2.csv")), str(TESTV_DIR.joinpath("stvISM3.csv")), str(TESTV_DIR.joinpath("stvOMASA_3ISM_1MASA2TC48c.met")), ], - "ISM4MASA2": [ + "OMASA_2_4": [ str(TESTV_DIR.joinpath("stvISM1.csv")), str(TESTV_DIR.joinpath("stvISM2.csv")), str(TESTV_DIR.joinpath("stvISM3.csv")), @@ -317,7 +315,7 @@ FORMAT_TO_METADATA_FILES_LTV = { str(LTV_DIR.joinpath("ltvISM3.csv")), str(LTV_DIR.joinpath("ltvISM4.csv")), ], - "NDP_ISM4": [ # Should not be needed, because it is included in all ISM metadata files. + "NDP_ISM4": [ # Should not be needed, because it is included in all ISM metadata files. str(LTV_DIR.joinpath("ltvISM1.csv")), str(LTV_DIR.joinpath("ltvISM2.csv")), str(LTV_DIR.joinpath("ltvISM3.csv")), @@ -325,44 +323,44 @@ FORMAT_TO_METADATA_FILES_LTV = { ], "MASA1": [str(LTV_DIR.joinpath("ltv48_MASA1TC.met"))], "MASA2": [str(LTV_DIR.joinpath("ltv48_MASA2TC.met"))], - "ISM1MASA1": [ + "OMASA_1_1": [ str(LTV_DIR.joinpath("ltvISM1.csv")), str(LTV_DIR.joinpath("ltv48_OMASA_1ISM_1TC.met")), ], - "ISM2MASA1": [ + "OMASA_1_2": [ str(LTV_DIR.joinpath("ltvISM1.csv")), str(LTV_DIR.joinpath("ltvISM2.csv")), - str(LTV_DIR.joinpath("ltv48_OMASA_2ISM_1TC.met")), + str(LTV_DIR.joinpath("ltv48_OMASA_2ISM_1TC.met ")), ], - "ISM3MASA1": [ + "OMASA_1_3": [ str(LTV_DIR.joinpath("ltvISM1.csv")), str(LTV_DIR.joinpath("ltvISM2.csv")), str(LTV_DIR.joinpath("ltvISM3.csv")), str(LTV_DIR.joinpath("ltv48_OMASA_3ISM_1TC.met")), ], - "ISM4MASA1": [ + "OMASA_1_4": [ str(LTV_DIR.joinpath("ltvISM1.csv")), str(LTV_DIR.joinpath("ltvISM2.csv")), str(LTV_DIR.joinpath("ltvISM3.csv")), str(LTV_DIR.joinpath("ltvISM4.csv")), str(LTV_DIR.joinpath("ltv48_OMASA_4ISM_1TC.met")), ], - "ISM1MASA2": [ + "OMASA_2_1": [ str(LTV_DIR.joinpath("ltvISM1.csv")), str(LTV_DIR.joinpath("ltv48_OMASA_1ISM_2TC.met")), ], - "ISM2MASA2": [ + "OMASA_2_2": [ str(LTV_DIR.joinpath("ltvISM1.csv")), str(LTV_DIR.joinpath("ltvISM2.csv")), str(LTV_DIR.joinpath("ltv48_OMASA_2ISM_2TC.met")), ], - "ISM3MASA2": [ + "OMASA_2_3": [ str(LTV_DIR.joinpath("ltvISM1.csv")), str(LTV_DIR.joinpath("ltvISM2.csv")), str(LTV_DIR.joinpath("ltvISM3.csv")), str(LTV_DIR.joinpath("ltv48_OMASA_3ISM_2TC.met")), ], - "ISM4MASA2": [ + "OMASA_2_4": [ str(LTV_DIR.joinpath("ltvISM1.csv")), str(LTV_DIR.joinpath("ltvISM2.csv")), str(LTV_DIR.joinpath("ltvISM3.csv")), @@ -376,31 +374,6 @@ INPUT_FORMATS_AMBI = ["FOA", "HOA2", "HOA3"] INPUT_FORMATS_MC = ["MONO", "STEREO", "5_1", "5_1_2", "5_1_4", "7_1", "7_1_4"] INPUT_FORMATS_ISM = ["ISM1", "ISM2", "ISM3", "ISM4"] INPUT_FORMATS_MASA = ["MASA1", "MASA2"] -INPUT_FORMATS_OMASA = [ - "ISM1MASA1", - "ISM2MASA1", - "ISM3MASA1", - "ISM4MASA1", - "ISM1MASA2", - "ISM2MASA2", - "ISM3MASA2", - "ISM4MASA2", -] -INPUT_FORMATS_OSBA = [ - "ISM1SBA1", - "ISM1SBA2", - "ISM1SBA3", - "ISM2SBA1", - "ISM2SBA2", - "ISM2SBA3", - "ISM3SBA1", - "ISM3SBA2", - "ISM3SBA3", - "ISM4SBA1", - "ISM4SBA2", - "ISM4SBA3", -] - """ Non binaural / parametric output formats """ OUTPUT_FORMATS = [ @@ -445,3 +418,4 @@ PEAQ_SUPPORTED_FMT = [ "BINAURAL_ROOM_IR", "BINAURAL_ROOM_REVERB", ] + diff --git a/tests/renderer/test_renderer.py b/tests/renderer/test_renderer.py index 64923b185cf733ef6b0cd709d57e4c96d12a3435..ef080ea15d9abae869e0adc8a7d02b5f99b1c5bc 100644 --- a/tests/renderer/test_renderer.py +++ b/tests/renderer/test_renderer.py @@ -33,26 +33,25 @@ the United Nations Convention on Contracts on the International Sales of Goods. import pytest from .constants import ( - CUSTOM_LAYOUT_DIR, - CUSTOM_LS_TO_TEST, - EXE_SUFFIX, + FORMAT_TO_METADATA_FILES_LTV, + OUTPUT_FORMATS, + INPUT_FORMATS_AMBI, FRAMING_TO_TEST, + EXE_SUFFIX, + OUTPUT_FORMATS_BINAURAL, HR_TRAJECTORIES_TO_TEST, HR_TRAJECTORY_DIR, - INPUT_FORMATS_AMBI, + INPUT_FORMATS_MC, INPUT_FORMATS_ISM, INPUT_FORMATS_MASA, - INPUT_FORMATS_MC, - INPUT_FORMATS_OMASA, - INPUT_FORMATS_OSBA, - METADATA_SCENES_TO_TEST, METADATA_SCENES_TO_TEST_MASA_PREREND, - OUTPUT_FORMATS, - OUTPUT_FORMATS_BINAURAL, - SAMPLING_RATES, TEST_VECTOR_DIR, + CUSTOM_LS_TO_TEST, + CUSTOM_LAYOUT_DIR, + METADATA_SCENES_TO_TEST, ) -from .utils import compare_renderer_args, run_renderer +from .utils import run_renderer, compare_renderer_args +from ..conftest import props_to_record ############################################################################## # Bit-exactness tests @@ -66,7 +65,6 @@ from .utils import compare_renderer_args, run_renderer @pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS) @pytest.mark.parametrize("in_fmt", INPUT_FORMATS_AMBI) @pytest.mark.parametrize("frame_size", FRAMING_TO_TEST) -@pytest.mark.parametrize("fs", SAMPLING_RATES) def test_ambisonics( record_property, props_to_record, @@ -74,7 +72,6 @@ def test_ambisonics( in_fmt, out_fmt, frame_size, - fs, get_mld, get_mld_lim, get_ssnr, @@ -96,14 +93,12 @@ def test_ambisonics( get_odg=get_odg, get_odg_bin=get_odg_bin, split_comparison=split_comparison, - sr=fs, ) @pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS_BINAURAL) @pytest.mark.parametrize("in_fmt", INPUT_FORMATS_AMBI) @pytest.mark.parametrize("frame_size", FRAMING_TO_TEST) -@pytest.mark.parametrize("fs", SAMPLING_RATES) def test_ambisonics_binaural_static( record_property, props_to_record, @@ -111,7 +106,6 @@ def test_ambisonics_binaural_static( in_fmt, out_fmt, frame_size, - fs, get_mld, get_mld_lim, get_ssnr, @@ -133,7 +127,6 @@ def test_ambisonics_binaural_static( get_odg=get_odg, get_odg_bin=get_odg_bin, split_comparison=split_comparison, - sr=fs, ) @@ -141,7 +134,6 @@ def test_ambisonics_binaural_static( @pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS_BINAURAL) @pytest.mark.parametrize("in_fmt", INPUT_FORMATS_AMBI) @pytest.mark.parametrize("frame_size", FRAMING_TO_TEST) -@pytest.mark.parametrize("fs", SAMPLING_RATES) def test_ambisonics_binaural_headrotation( record_property, props_to_record, @@ -150,7 +142,6 @@ def test_ambisonics_binaural_headrotation( out_fmt, trj_file, frame_size, - fs, get_mld, get_mld_lim, get_ssnr, @@ -173,7 +164,6 @@ def test_ambisonics_binaural_headrotation( get_odg=get_odg, get_odg_bin=get_odg_bin, split_comparison=split_comparison, - sr=fs, ) @@ -182,7 +172,6 @@ def test_ambisonics_binaural_headrotation( @pytest.mark.parametrize("in_fmt", INPUT_FORMATS_AMBI) @pytest.mark.parametrize("frame_size", FRAMING_TO_TEST) @pytest.mark.parametrize("aeid", ["1", "0"]) -@pytest.mark.parametrize("fs", SAMPLING_RATES) def test_dynamic_acoustic_environment( record_property, props_to_record, @@ -190,7 +179,6 @@ def test_dynamic_acoustic_environment( in_fmt, out_fmt, frame_size, - fs, get_mld, get_mld_lim, get_ssnr, @@ -199,8 +187,8 @@ def test_dynamic_acoustic_environment( aeid, split_comparison, ): - rend_config_path = TEST_VECTOR_DIR.joinpath("rend_config_combined.cfg") - rend_config_path.with_stem("rend_config") + rend_config_path = TEST_VECTOR_DIR.joinpath(f"rend_config_combined.cfg") + rend_config_path.with_stem(f"rend_config") run_renderer( record_property, @@ -218,7 +206,6 @@ def test_dynamic_acoustic_environment( config_file=rend_config_path, aeid=aeid, split_comparison=split_comparison, - sr=fs, ) @@ -226,7 +213,6 @@ def test_dynamic_acoustic_environment( @pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS_BINAURAL[2:]) @pytest.mark.parametrize("in_fmt", INPUT_FORMATS_AMBI) @pytest.mark.parametrize("frame_size", FRAMING_TO_TEST) -@pytest.mark.parametrize("fs", SAMPLING_RATES) def test_dynamic_acoustic_environment_file( record_property, props_to_record, @@ -234,7 +220,6 @@ def test_dynamic_acoustic_environment_file( in_fmt, out_fmt, frame_size, - fs, get_mld, get_mld_lim, get_ssnr, @@ -242,10 +227,10 @@ def test_dynamic_acoustic_environment_file( get_odg_bin, split_comparison, ): - rend_config_path = TEST_VECTOR_DIR.joinpath("rend_config_combined.cfg") - rend_config_path.with_stem("rend_config") + rend_config_path = TEST_VECTOR_DIR.joinpath(f"rend_config_combined.cfg") + rend_config_path.with_stem(f"rend_config") - aeid = TEST_VECTOR_DIR.joinpath("aeid1.txt") + aeid = TEST_VECTOR_DIR.joinpath(f"aeid1.txt") run_renderer( record_property, @@ -263,7 +248,6 @@ def test_dynamic_acoustic_environment_file( config_file=rend_config_path, aeid=aeid, split_comparison=split_comparison, - sr=fs, ) @@ -273,7 +257,6 @@ def test_dynamic_acoustic_environment_file( @pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS) @pytest.mark.parametrize("in_fmt", INPUT_FORMATS_MC) @pytest.mark.parametrize("frame_size", FRAMING_TO_TEST) -@pytest.mark.parametrize("fs", SAMPLING_RATES) def test_multichannel( record_property, props_to_record, @@ -281,7 +264,6 @@ def test_multichannel( in_fmt, out_fmt, frame_size, - fs, get_mld, get_mld_lim, get_ssnr, @@ -303,14 +285,12 @@ def test_multichannel( get_odg=get_odg, get_odg_bin=get_odg_bin, split_comparison=split_comparison, - sr=fs, ) @pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS_BINAURAL) @pytest.mark.parametrize("in_fmt", INPUT_FORMATS_MC) @pytest.mark.parametrize("frame_size", FRAMING_TO_TEST) -@pytest.mark.parametrize("fs", SAMPLING_RATES) def test_multichannel_binaural_static( record_property, props_to_record, @@ -318,7 +298,6 @@ def test_multichannel_binaural_static( in_fmt, out_fmt, frame_size, - fs, get_mld, get_mld_lim, get_ssnr, @@ -343,7 +322,6 @@ def test_multichannel_binaural_static( get_odg=get_odg, get_odg_bin=get_odg_bin, split_comparison=split_comparison, - sr=fs, ) @@ -351,7 +329,6 @@ def test_multichannel_binaural_static( @pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS_BINAURAL) @pytest.mark.parametrize("in_fmt", INPUT_FORMATS_MC) @pytest.mark.parametrize("frame_size", FRAMING_TO_TEST) -@pytest.mark.parametrize("fs", SAMPLING_RATES) def test_multichannel_binaural_headrotation( record_property, props_to_record, @@ -360,7 +337,6 @@ def test_multichannel_binaural_headrotation( out_fmt, trj_file, frame_size, - fs, get_mld, get_mld_lim, get_ssnr, @@ -386,7 +362,6 @@ def test_multichannel_binaural_headrotation( get_odg=get_odg, get_odg_bin=get_odg_bin, split_comparison=split_comparison, - sr=fs, ) @@ -396,7 +371,6 @@ def test_multichannel_binaural_headrotation( @pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS) @pytest.mark.parametrize("in_fmt", INPUT_FORMATS_ISM) @pytest.mark.parametrize("frame_size", FRAMING_TO_TEST) -@pytest.mark.parametrize("fs", SAMPLING_RATES) def test_ism( record_property, props_to_record, @@ -404,7 +378,6 @@ def test_ism( in_fmt, out_fmt, frame_size, - fs, get_mld, get_mld_lim, get_ssnr, @@ -426,14 +399,12 @@ def test_ism( get_odg=get_odg, get_odg_bin=get_odg_bin, split_comparison=split_comparison, - sr=fs, ) @pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS_BINAURAL) @pytest.mark.parametrize("in_fmt", INPUT_FORMATS_ISM) @pytest.mark.parametrize("frame_size", FRAMING_TO_TEST) -@pytest.mark.parametrize("fs", SAMPLING_RATES) def test_ism_binaural_static( record_property, props_to_record, @@ -441,7 +412,6 @@ def test_ism_binaural_static( in_fmt, out_fmt, frame_size, - fs, get_mld, get_mld_lim, get_ssnr, @@ -463,7 +433,6 @@ def test_ism_binaural_static( get_odg=get_odg, get_odg_bin=get_odg_bin, split_comparison=split_comparison, - sr=fs, ) @@ -471,7 +440,6 @@ def test_ism_binaural_static( @pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS_BINAURAL) @pytest.mark.parametrize("in_fmt", INPUT_FORMATS_ISM) @pytest.mark.parametrize("frame_size", FRAMING_TO_TEST) -@pytest.mark.parametrize("fs", SAMPLING_RATES) def test_ism_binaural_headrotation( record_property, props_to_record, @@ -480,7 +448,6 @@ def test_ism_binaural_headrotation( out_fmt, trj_file, frame_size, - fs, get_mld, get_mld_lim, get_ssnr, @@ -503,7 +470,6 @@ def test_ism_binaural_headrotation( get_odg=get_odg, get_odg_bin=get_odg_bin, split_comparison=split_comparison, - sr=fs, ) @@ -513,7 +479,6 @@ def test_ism_binaural_headrotation( @pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS) @pytest.mark.parametrize("in_fmt", INPUT_FORMATS_MASA) @pytest.mark.parametrize("frame_size", FRAMING_TO_TEST) -@pytest.mark.parametrize("fs", SAMPLING_RATES) def test_masa( record_property, props_to_record, @@ -521,7 +486,6 @@ def test_masa( in_fmt, out_fmt, frame_size, - fs, get_mld, get_mld_lim, get_ssnr, @@ -543,14 +507,12 @@ def test_masa( get_odg=get_odg, get_odg_bin=get_odg_bin, split_comparison=split_comparison, - sr=fs, ) @pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS_BINAURAL) @pytest.mark.parametrize("in_fmt", INPUT_FORMATS_MASA) @pytest.mark.parametrize("frame_size", FRAMING_TO_TEST) -@pytest.mark.parametrize("fs", SAMPLING_RATES) def test_masa_binaural_static( record_property, props_to_record, @@ -558,7 +520,6 @@ def test_masa_binaural_static( in_fmt, out_fmt, frame_size, - fs, get_mld, get_mld_lim, get_ssnr, @@ -566,6 +527,9 @@ def test_masa_binaural_static( get_odg_bin, split_comparison, ): + if out_fmt in ["BINAURAL_ROOM_IR", "BINAURAL_ROOM_REVERB"]: + pytest.skip("Skipping binaural room outputs for MASA as unimplemented.") + run_renderer( record_property, props_to_record, @@ -580,7 +544,6 @@ def test_masa_binaural_static( get_odg=get_odg, get_odg_bin=get_odg_bin, split_comparison=split_comparison, - sr=fs, ) @@ -588,7 +551,6 @@ def test_masa_binaural_static( @pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS_BINAURAL) @pytest.mark.parametrize("in_fmt", INPUT_FORMATS_MASA) @pytest.mark.parametrize("frame_size", FRAMING_TO_TEST) -@pytest.mark.parametrize("fs", SAMPLING_RATES) def test_masa_binaural_headrotation( record_property, props_to_record, @@ -597,7 +559,6 @@ def test_masa_binaural_headrotation( out_fmt, trj_file, frame_size, - fs, get_mld, get_mld_lim, get_ssnr, @@ -605,6 +566,9 @@ def test_masa_binaural_headrotation( get_odg_bin, split_comparison, ): + if out_fmt in ["BINAURAL_ROOM_IR", "BINAURAL_ROOM_REVERB"]: + pytest.skip("Skipping binaural room outputs for MASA as unimplemented.") + run_renderer( record_property, props_to_record, @@ -620,56 +584,15 @@ def test_masa_binaural_headrotation( get_odg=get_odg, get_odg_bin=get_odg_bin, split_comparison=split_comparison, - sr=fs, - ) - - -@pytest.mark.parametrize("out_fmt", INPUT_FORMATS_MASA) -@pytest.mark.parametrize("in_fmt", INPUT_FORMATS_OMASA) -@pytest.mark.parametrize("fs", SAMPLING_RATES) -def test_masa_prerend( - record_property, - props_to_record, - test_info, - in_fmt, - out_fmt, - fs, - get_mld, - get_mld_lim, - get_ssnr, - get_odg, - get_odg_bin, - split_comparison, -): - if fs != "48kHz": - pytest.skip("MASA Prerendering at 16 and 32 kHz WIP") - run_renderer( - record_property, - props_to_record, - test_info, - in_fmt, - out_fmt, - binary_suffix=EXE_SUFFIX, - get_mld=get_mld, - mld_lim=get_mld_lim, - get_ssnr=get_ssnr, - get_odg=get_odg, - get_odg_bin=get_odg_bin, - split_comparison=split_comparison, - sr=fs, ) -@pytest.mark.parametrize("out_fmt", INPUT_FORMATS_MASA) @pytest.mark.parametrize("in_fmt", METADATA_SCENES_TO_TEST_MASA_PREREND) -@pytest.mark.parametrize("fs", SAMPLING_RATES) -def test_masa_prerend_scenes( +def test_masa_prerend( record_property, props_to_record, test_info, in_fmt, - out_fmt, - fs, get_mld, get_mld_lim, get_ssnr, @@ -677,257 +600,20 @@ def test_masa_prerend_scenes( get_odg_bin, split_comparison, ): - if fs != "48kHz": - pytest.skip("MASA Prerendering at 16 and 32 kHz WIP") run_renderer( record_property, props_to_record, test_info, "META", - out_fmt, - metadata_input=TEST_VECTOR_DIR.joinpath(f"{in_fmt}_{fs[:2]}.txt"), - binary_suffix=EXE_SUFFIX, - get_mld=get_mld, - mld_lim=get_mld_lim, - get_ssnr=get_ssnr, - get_odg=get_odg, - get_odg_bin=get_odg_bin, - split_comparison=split_comparison, - sr=fs, - ) - - -""" OMASA """ - - -@pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS) -@pytest.mark.parametrize("in_fmt", INPUT_FORMATS_OMASA) -@pytest.mark.parametrize("frame_size", FRAMING_TO_TEST) -@pytest.mark.parametrize("fs", SAMPLING_RATES) -def test_omasa( - record_property, - props_to_record, - test_info, - in_fmt, - out_fmt, - fs, - frame_size, - get_mld, - get_mld_lim, - get_ssnr, - get_odg, - get_odg_bin, - split_comparison, -): - run_renderer( - record_property, - props_to_record, - test_info, - in_fmt, - out_fmt, - binary_suffix=EXE_SUFFIX, - frame_size=frame_size, - get_mld=get_mld, - mld_lim=get_mld_lim, - get_ssnr=get_ssnr, - get_odg=get_odg, - get_odg_bin=get_odg_bin, - split_comparison=split_comparison, - sr=fs, - ) - - -@pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS_BINAURAL) -@pytest.mark.parametrize("in_fmt", INPUT_FORMATS_OMASA) -@pytest.mark.parametrize("frame_size", FRAMING_TO_TEST) -@pytest.mark.parametrize("fs", SAMPLING_RATES) -def test_omasa_binaural_static( - record_property, - props_to_record, - test_info, - in_fmt, - out_fmt, - fs, - frame_size, - get_mld, - get_mld_lim, - get_ssnr, - get_odg, - get_odg_bin, - split_comparison, -): - run_renderer( - record_property, - props_to_record, - test_info, - in_fmt, - out_fmt, - binary_suffix=EXE_SUFFIX, - frame_size=frame_size, - get_mld=get_mld, - mld_lim=get_mld_lim, - get_ssnr=get_ssnr, - get_odg=get_odg, - get_odg_bin=get_odg_bin, - split_comparison=split_comparison, - sr=fs, - ) - - -@pytest.mark.parametrize("trj_file", HR_TRAJECTORIES_TO_TEST) -@pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS_BINAURAL) -@pytest.mark.parametrize("in_fmt", INPUT_FORMATS_OMASA) -@pytest.mark.parametrize("frame_size", FRAMING_TO_TEST) -@pytest.mark.parametrize("fs", SAMPLING_RATES) -def test_omasa_binaural_headrotation( - record_property, - props_to_record, - test_info, - in_fmt, - out_fmt, - fs, - trj_file, - frame_size, - get_mld, - get_mld_lim, - get_ssnr, - get_odg, - get_odg_bin, - split_comparison, -): - run_renderer( - record_property, - props_to_record, - test_info, - in_fmt, - out_fmt, - trj_file=HR_TRAJECTORY_DIR.joinpath(f"{trj_file}.csv"), - binary_suffix=EXE_SUFFIX, - frame_size=frame_size, - get_mld=get_mld, - mld_lim=get_mld_lim, - get_ssnr=get_ssnr, - get_odg=get_odg, - get_odg_bin=get_odg_bin, - split_comparison=split_comparison, - sr=fs, - ) - - -""" OSBA """ - - -@pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS) -@pytest.mark.parametrize("in_fmt", INPUT_FORMATS_OSBA) -@pytest.mark.parametrize("frame_size", FRAMING_TO_TEST) -@pytest.mark.parametrize("fs", SAMPLING_RATES) -def test_osba( - record_property, - props_to_record, - test_info, - in_fmt, - out_fmt, - fs, - frame_size, - get_mld, - get_mld_lim, - get_ssnr, - get_odg, - get_odg_bin, - split_comparison, -): - run_renderer( - record_property, - props_to_record, - test_info, - in_fmt, - out_fmt, + "MASA2", + metadata_input=TEST_VECTOR_DIR.joinpath(f"{in_fmt}.txt"), binary_suffix=EXE_SUFFIX, - frame_size=frame_size, get_mld=get_mld, mld_lim=get_mld_lim, get_ssnr=get_ssnr, get_odg=get_odg, get_odg_bin=get_odg_bin, split_comparison=split_comparison, - sr=fs, - ) - - -@pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS_BINAURAL) -@pytest.mark.parametrize("in_fmt", INPUT_FORMATS_OSBA) -@pytest.mark.parametrize("frame_size", FRAMING_TO_TEST) -@pytest.mark.parametrize("fs", SAMPLING_RATES) -def test_osba_binaural_static( - record_property, - props_to_record, - test_info, - in_fmt, - out_fmt, - fs, - frame_size, - get_mld, - get_mld_lim, - get_ssnr, - get_odg, - get_odg_bin, - split_comparison, -): - run_renderer( - record_property, - props_to_record, - test_info, - in_fmt, - out_fmt, - binary_suffix=EXE_SUFFIX, - frame_size=frame_size, - get_mld=get_mld, - mld_lim=get_mld_lim, - get_ssnr=get_ssnr, - get_odg=get_odg, - get_odg_bin=get_odg_bin, - split_comparison=split_comparison, - sr=fs, - ) - - -@pytest.mark.parametrize("trj_file", HR_TRAJECTORIES_TO_TEST) -@pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS_BINAURAL) -@pytest.mark.parametrize("in_fmt", INPUT_FORMATS_OSBA) -@pytest.mark.parametrize("frame_size", FRAMING_TO_TEST) -@pytest.mark.parametrize("fs", SAMPLING_RATES) -def test_osba_binaural_headrotation( - record_property, - props_to_record, - test_info, - in_fmt, - out_fmt, - fs, - trj_file, - frame_size, - get_mld, - get_mld_lim, - get_ssnr, - get_odg, - get_odg_bin, - split_comparison, -): - run_renderer( - record_property, - props_to_record, - test_info, - in_fmt, - out_fmt, - trj_file=HR_TRAJECTORY_DIR.joinpath(f"{trj_file}.csv"), - binary_suffix=EXE_SUFFIX, - frame_size=frame_size, - get_mld=get_mld, - mld_lim=get_mld_lim, - get_ssnr=get_ssnr, - get_odg=get_odg, - get_odg_bin=get_odg_bin, - split_comparison=split_comparison, - sr=fs, ) @@ -937,7 +623,6 @@ def test_osba_binaural_headrotation( @pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS) @pytest.mark.parametrize("in_layout", CUSTOM_LS_TO_TEST) @pytest.mark.parametrize("frame_size", FRAMING_TO_TEST) -@pytest.mark.parametrize("fs", SAMPLING_RATES) def test_custom_ls_input( record_property, props_to_record, @@ -945,7 +630,6 @@ def test_custom_ls_input( in_layout, out_fmt, frame_size, - fs, get_mld, get_mld_lim, get_ssnr, @@ -967,30 +651,20 @@ def test_custom_ls_input( get_odg=get_odg, get_odg_bin=get_odg_bin, split_comparison=split_comparison, - sr=fs, ) @pytest.mark.parametrize("out_fmt", CUSTOM_LS_TO_TEST) @pytest.mark.parametrize( "in_fmt", - [ - *INPUT_FORMATS_AMBI, - *INPUT_FORMATS_MC, - *INPUT_FORMATS_ISM, - *INPUT_FORMATS_MASA, - *INPUT_FORMATS_OMASA, - *INPUT_FORMATS_OSBA, - ], + [*INPUT_FORMATS_AMBI, *INPUT_FORMATS_MC, *INPUT_FORMATS_ISM, *INPUT_FORMATS_MASA], ) -@pytest.mark.parametrize("fs", SAMPLING_RATES) def test_custom_ls_output( record_property, props_to_record, test_info, in_fmt, out_fmt, - fs, get_mld, get_mld_lim, get_ssnr, @@ -1016,20 +690,17 @@ def test_custom_ls_output( get_odg=get_odg, get_odg_bin=get_odg_bin, split_comparison=split_comparison, - sr=fs, ) @pytest.mark.parametrize("out_fmt", CUSTOM_LS_TO_TEST) @pytest.mark.parametrize("in_fmt", CUSTOM_LS_TO_TEST) -@pytest.mark.parametrize("fs", SAMPLING_RATES) def test_custom_ls_input_output( record_property, props_to_record, test_info, in_fmt, out_fmt, - fs, get_mld, get_mld_lim, get_ssnr, @@ -1050,14 +721,12 @@ def test_custom_ls_input_output( get_odg=get_odg, get_odg_bin=get_odg_bin, split_comparison=split_comparison, - sr=fs, ) @pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS_BINAURAL) @pytest.mark.parametrize("in_layout", CUSTOM_LS_TO_TEST) @pytest.mark.parametrize("frame_size", FRAMING_TO_TEST) -@pytest.mark.parametrize("fs", SAMPLING_RATES) def test_custom_ls_input_binaural( record_property, props_to_record, @@ -1065,7 +734,6 @@ def test_custom_ls_input_binaural( in_layout, out_fmt, frame_size, - fs, get_mld, get_mld_lim, get_ssnr, @@ -1087,7 +755,6 @@ def test_custom_ls_input_binaural( get_odg=get_odg, get_odg_bin=get_odg_bin, split_comparison=split_comparison, - sr=fs, ) @@ -1095,7 +762,6 @@ def test_custom_ls_input_binaural( @pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS_BINAURAL) @pytest.mark.parametrize("in_layout", CUSTOM_LS_TO_TEST) @pytest.mark.parametrize("frame_size", FRAMING_TO_TEST) -@pytest.mark.parametrize("fs", SAMPLING_RATES) def test_custom_ls_input_binaural_headrotation( record_property, props_to_record, @@ -1104,7 +770,6 @@ def test_custom_ls_input_binaural_headrotation( out_fmt, trj_file, frame_size, - fs, get_mld, get_mld_lim, get_ssnr, @@ -1127,7 +792,6 @@ def test_custom_ls_input_binaural_headrotation( get_odg=get_odg, get_odg_bin=get_odg_bin, split_comparison=split_comparison, - sr=fs, ) @@ -1137,7 +801,6 @@ def test_custom_ls_input_binaural_headrotation( @pytest.mark.parametrize("out_fmt", OUTPUT_FORMATS) @pytest.mark.parametrize("in_fmt", METADATA_SCENES_TO_TEST) @pytest.mark.parametrize("frame_size", FRAMING_TO_TEST) -@pytest.mark.parametrize("fs", SAMPLING_RATES) def test_metadata( record_property, props_to_record, @@ -1145,7 +808,6 @@ def test_metadata( in_fmt, out_fmt, frame_size, - fs, get_mld, get_mld_lim, get_ssnr, @@ -1159,7 +821,7 @@ def test_metadata( test_info, "META", out_fmt, - metadata_input=TEST_VECTOR_DIR.joinpath(f"{in_fmt}_{fs[:2]}.txt"), + metadata_input=TEST_VECTOR_DIR.joinpath(f"{in_fmt}.txt"), binary_suffix=EXE_SUFFIX, frame_size=frame_size, get_mld=get_mld, @@ -1168,7 +830,6 @@ def test_metadata( get_odg=get_odg, get_odg_bin=get_odg_bin, split_comparison=split_comparison, - sr=fs, ) @@ -1178,7 +839,6 @@ def test_metadata( @pytest.mark.parametrize("out_fmt", ["STEREO"]) @pytest.mark.parametrize("in_fmt", ["MONO"]) @pytest.mark.parametrize("non_diegetic_pan", ["0", "-30", "45", "90", "-90"]) -@pytest.mark.parametrize("fs", SAMPLING_RATES) def test_non_diegetic_pan_static( record_property, props_to_record, @@ -1186,7 +846,6 @@ def test_non_diegetic_pan_static( in_fmt, out_fmt, non_diegetic_pan, - fs, get_mld, get_mld_lim, get_ssnr, @@ -1208,21 +867,18 @@ def test_non_diegetic_pan_static( get_odg=get_odg, get_odg_bin=get_odg_bin, split_comparison=split_comparison, - sr=fs, ) @pytest.mark.parametrize("out_fmt", ["STEREO"]) @pytest.mark.parametrize("in_fmt", ["ISM1"]) @pytest.mark.parametrize("non_diegetic_pan", ["0", "-30", "45", "90", "-90"]) -@pytest.mark.parametrize("fs", SAMPLING_RATES) def test_non_diegetic_pan_ism_static( record_property, props_to_record, test_info, in_fmt, out_fmt, - fs, non_diegetic_pan, get_mld, get_mld_lim, @@ -1245,7 +901,6 @@ def test_non_diegetic_pan_ism_static( get_odg=get_odg, get_odg_bin=get_odg_bin, split_comparison=split_comparison, - sr=fs, ) @@ -1389,27 +1044,31 @@ def test_ambisonics_binaural_headrotation_refvecequal( if test_info.config.option.create_ref or test_info.config.option.create_cut: pytest.skip("OTR tests only run for smoke test") - compare_renderer_args( - record_property, - props_to_record, - test_info, - in_fmt, - out_fmt, - ref_kwargs={ - "name_extension": "refvecequal", - "frame_size": "5", - }, - cut_kwargs={ - "trj_file": HR_TRAJECTORY_DIR.joinpath( - "full-circle-with-up-and-down-4s.csv" - ), - "refvec_file": HR_TRAJECTORY_DIR.joinpath( - "full-circle-with-up-and-down-4s-Vector3.csv" - ), - "frame_size": "5", - }, - split_comparison=split_comparison, - ) + # TODO revert + if in_fmt == "HOA3" and out_fmt == "BINAURAL_ROOM_REVERB": + pytest.xfail("WIP : minor differences to be resolved") + else: + compare_renderer_args( + record_property, + props_to_record, + test_info, + in_fmt, + out_fmt, + ref_kwargs={ + "name_extension": "refvecequal", + "frame_size": "5", + }, + cut_kwargs={ + "trj_file": HR_TRAJECTORY_DIR.joinpath( + "full-circle-with-up-and-down-4s.csv" + ), + "refvec_file": HR_TRAJECTORY_DIR.joinpath( + "full-circle-with-up-and-down-4s-Vector3.csv" + ), + "frame_size": "5", + }, + split_comparison=split_comparison, + ) # This test compares rendering with: @@ -1429,28 +1088,32 @@ def test_ambisonics_binaural_headrotation_refvec_rotating( if test_info.config.option.create_ref or test_info.config.option.create_cut: pytest.skip("OTR tests only run for smoke test") - compare_renderer_args( - record_property, - props_to_record, - test_info, - in_fmt, - out_fmt, - ref_kwargs={ - "name_extension": "refvec_rotating", - "trj_file": HR_TRAJECTORY_DIR.joinpath( - "full-circle-with-up-and-down-4s.csv" - ), - "frame_size": "5", - }, - cut_kwargs={ - "trj_file": HR_TRAJECTORY_DIR.joinpath("const000.csv"), - "refvec_file": HR_TRAJECTORY_DIR.joinpath( - "full-circle-with-up-and-down-4s-ccw-Vector3.csv" - ), - "frame_size": "5", - }, - split_comparison=split_comparison, - ) + # TODO revert + if in_fmt == "HOA2" and out_fmt == "BINAURAL_ROOM_REVERB": + pytest.xfail("WIP : minor differences to be resolved") + else: + compare_renderer_args( + record_property, + props_to_record, + test_info, + in_fmt, + out_fmt, + ref_kwargs={ + "name_extension": "refvec_rotating", + "trj_file": HR_TRAJECTORY_DIR.joinpath( + "full-circle-with-up-and-down-4s.csv" + ), + "frame_size": "5", + }, + cut_kwargs={ + "trj_file": HR_TRAJECTORY_DIR.joinpath("const000.csv"), + "refvec_file": HR_TRAJECTORY_DIR.joinpath( + "full-circle-with-up-and-down-4s-ccw-Vector3.csv" + ), + "frame_size": "5", + }, + split_comparison=split_comparison, + ) # This test compares rendering with: diff --git a/tests/renderer/utils.py b/tests/renderer/utils.py index 29ee307fad470b1b3234fcda772250720dd255e4..1e66afd606b98804429e02538d97f2843593f4fd 100644 --- a/tests/renderer/utils.py +++ b/tests/renderer/utils.py @@ -30,42 +30,41 @@ accordance with the laws of the Federal Republic of Germany excluding its confli the United Nations Convention on Contracts on the International Sales of Goods. """ -import errno import filecmp import logging import os -import re +from pathlib import Path import subprocess as sp import sys -import tempfile -from pathlib import Path from typing import Dict, Optional, Union import numpy as np import pytest +import re +import errno +import tempfile -from ..constants import CAT_NORMAL from .compare_audio import compare_audio_arrays from .constants import ( - BIN_SUFFIX_MERGETARGET, + LTV_DIR, + SCRIPTS_DIR, + OUTPUT_PATH_REF, + OUTPUT_PATH_CUT, FORMAT_TO_FILE_COMPARETEST, FORMAT_TO_FILE_LTV, - FORMAT_TO_FILE_SMOKETEST, FORMAT_TO_METADATA_FILES, FORMAT_TO_METADATA_FILES_LTV, - LTV_DIR, - OUTPUT_PATH_CUT, - OUTPUT_PATH_REF, - PEAQ_SUPPORTED_FMT, + FORMAT_TO_FILE_SMOKETEST, RENDERER_CMD, - SCRIPTS_DIR, + BIN_SUFFIX_MERGETARGET, + PEAQ_SUPPORTED_FMT, ) +from ..constants import CAT_NORMAL sys.path.append(SCRIPTS_DIR) from pyaudio3dtools.audiofile import readfile - from ..cmp_pcm import cmp_pcm -from ..conftest import get_split_idx, parse_properties +from ..conftest import parse_properties, get_split_idx def _run_cmd(cmd, env, test_info=None): @@ -176,7 +175,7 @@ def run_renderer( aeid: Optional[Union[Path, int]] = None, in_file=None, out_file=None, - sr="48kHz", + sr=48, render_for_peaq=False, split_comparison=False, ) -> str: @@ -268,13 +267,12 @@ def run_renderer( else: in_file = format_to_file[in_fmt] in_name = in_fmt - in_file = str(in_file).replace("48", sr[:2]) if in_meta_files is None and in_fmt in format_to_metadata_files: in_meta_files = format_to_metadata_files[in_fmt] if out_file is None: - out_file_stem = f"{in_name}_to_{out_name}{trj_name}{non_diegetic_pan}{refrot_name}{refvec_name}{refveclev_name}{config_name}{framing_name}{hrtf_file_name}{name_extension}{aeid_name}_{sr}.wav" + out_file_stem = f"{in_name}_to_{out_name}{trj_name}{non_diegetic_pan}{refrot_name}{refvec_name}{refveclev_name}{config_name}{framing_name}{hrtf_file_name}{name_extension}{aeid_name}.wav" out_file = str(output_path_base.joinpath(out_file_stem)) cmd = RENDERER_CMD[:] @@ -282,7 +280,7 @@ def run_renderer( cmd[4] = str(in_fmt) cmd[6] = str(out_file) cmd[8] = str(out_fmt) - cmd[10] = str(sr[:2]) + cmd[10] = str(sr) if test_info.config.option.create_ref: cmd[0] += BIN_SUFFIX_MERGETARGET @@ -372,7 +370,7 @@ def run_renderer( cmd2[4] = str(out_fmt) # in_fmt cmd2[6] = odg_test # out_file cmd2[8] = new_fmt # out_fmt - cmd2[10] = str(sr[:2]) + cmd2[10] = str(sr) cmd2[0] += BIN_SUFFIX_MERGETARGET # Use IVAS_rend_ref for re-rendering cmd2[0] += binary_suffix if "MASA" in str(out_fmt): @@ -552,8 +550,8 @@ def binauralize_input_and_output( # If extended metadata is not used, strip the metadata for the external renderer extended_md_used = ( re.search(r"-ism\s?\+[1-4]", enc_opts) - and "OMASA" not in in_fmt - and "OSBA" not in in_fmt + and not "OMASA" in in_fmt + and not "OSBA" in in_fmt ) if not extended_md_used and n_obj > 0: truncated_meta_files = [] @@ -635,7 +633,7 @@ def binauralize_input_and_output( aeid = findstr(r"-aeid\s+(\S+)", dec_opts) - if output_config.upper() not in PEAQ_SUPPORTED_FMT: + if not output_config.upper() in PEAQ_SUPPORTED_FMT: # Render output to BINAURAL output_reformat = "BINAURAL" diff --git a/tests/split_rendering/constants.py b/tests/split_rendering/constants.py index 10ed5a9393dc40a57de0a1fa3a48cad10065ec29..5869ec3b78fe331a57ff69c64515a632e7c9dd2a 100644 --- a/tests/split_rendering/constants.py +++ b/tests/split_rendering/constants.py @@ -1,37 +1,46 @@ #!/usr/bin/env python3 """ -(C) 2022-2025 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -contributors to this repository. All Rights Reserved. - -This software is protected by copyright law and by international treaties. -The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -contributors to this repository retain full ownership rights in their respective contributions in -the software. This notice grants no license of any kind, including but not limited to patent -license, nor is any license granted by implication, estoppel or otherwise. - -Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -contributions. - -This software is provided "AS IS", without any express or implied warranties. The software is in the -development stage. It is intended exclusively for experts who have experience with such software and -solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -and fitness for a particular purpose are hereby disclaimed and excluded. - -Any dispute, controversy or claim arising under or in relation to providing this software shall be -submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -the United Nations Convention on Contracts on the International Sales of Goods. + (C) 2022-2025 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, + Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., + Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, + Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other + contributors to this repository. All Rights Reserved. + + This software is protected by copyright law and by international treaties. + The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, + Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., + Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, + Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other + contributors to this repository retain full ownership rights in their respective contributions in + the software. This notice grants no license of any kind, including but not limited to patent + license, nor is any license granted by implication, estoppel or otherwise. + + Contributors are required to enter into the IVAS codec Public Collaboration agreement before making + contributions. + + This software is provided "AS IS", without any express or implied warranties. The software is in the + development stage. It is intended exclusively for experts who have experience with such software and + solely for the purpose of inspection. All implied warranties of non-infringement, merchantability + and fitness for a particular purpose are hereby disclaimed and excluded. + + Any dispute, controversy or claim arising under or in relation to providing this software shall be + submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in + accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and + the United Nations Convention on Contracts on the International Sales of Goods. """ -import platform from pathlib import Path +import platform + +from tests.renderer.constants import ( + BIN_SUFFIX_MERGETARGET, + CUSTOM_LS_TO_TEST, + FORMAT_TO_FILE_COMPARETEST, + FORMAT_TO_FILE_SMOKETEST, + FORMAT_TO_METADATA_FILES, + METADATA_SCENES_TO_TEST, +) if platform.system() == "Windows": EXE_SUFFIX = ".exe" @@ -43,9 +52,7 @@ else: """ Set up paths """ TESTS_DIR = Path(__file__).parent RENDER_CFG_DIR = TESTS_DIR.joinpath("renderer_configs").resolve() -RENDER_FRAMING_CFG_DIR = ( - TESTS_DIR.joinpath("renderer_configs").joinpath("framing").resolve() -) +RENDER_FRAMING_CFG_DIR = TESTS_DIR.joinpath("renderer_configs").joinpath("framing").resolve() ERROR_PATTERNS_DIR = TESTS_DIR.joinpath("error_patterns").resolve() OUTPUT_PATH_REF = TESTS_DIR.joinpath("ref") @@ -93,9 +100,7 @@ RENDERER_CONFIGS_TO_TEST_OMASA = ( RENDERER_CONFIGS_TO_TEST_OSBA = ( RENDERER_CONFIGS_DEFAULT_CODEC + RENDERER_CONFIGS_LC3PLUS_CODEC ) -RENDERER_CONFIGS_TO_TEST_PLC = ( - RENDERER_CONFIGS_FASTCONV_RENDERER + RENDERER_CONFIGS_LC3PLUS_CODEC -) +RENDERER_CONFIGS_TO_TEST_PLC = RENDERER_CONFIGS_FASTCONV_RENDERER + RENDERER_CONFIGS_LC3PLUS_CODEC """ Trajectories """ SPLIT_REND_HR_TRAJECTORIES_TO_TEST = [ @@ -120,48 +125,43 @@ FORMAT_TO_IVAS_COD_FORMAT = { "HOA3": ["-sba", "3"], "MASA1": ["-masa", "1"], "MASA2": ["-masa", "2"], - "ISM1MASA1": ["-ism_masa", "1", "1"], - "ISM2MASA1": ["-ism_masa", "2", "1"], - "ISM3MASA1": ["-ism_masa", "3", "1"], - "ISM4MASA1": ["-ism_masa", "4", "1"], - "ISM1MASA2": ["-ism_masa", "1", "2"], - "ISM2MASA2": ["-ism_masa", "2", "2"], - "ISM3MASA2": ["-ism_masa", "3", "2"], - "ISM4MASA2": ["-ism_masa", "4", "2"], - "ISM1SBA1": ["-ism_sba", "1", "1"], - "ISM1SBA2": ["-ism_sba", "1", "2"], - "ISM1SBA3": ["-ism_sba", "1", "3"], - "ISM2SBA1": ["-ism_sba", "2", "1"], - "ISM2SBA2": ["-ism_sba", "2", "2"], - "ISM2SBA3": ["-ism_sba", "2", "3"], - "ISM3SBA1": ["-ism_sba", "3", "1"], - "ISM3SBA2": ["-ism_sba", "3", "2"], - "ISM3SBA3": ["-ism_sba", "3", "3"], - "ISM4SBA1": ["-ism_sba", "4", "1"], - "ISM4SBA2": ["-ism_sba", "4", "2"], - "ISM4SBA3": ["-ism_sba", "4", "3"], + "OMASA_1_1": ["-ism_masa", "1", "1"], + "OMASA_1_2": ["-ism_masa", "2", "1"], + "OMASA_1_3": ["-ism_masa", "3", "1"], + "OMASA_1_4": ["-ism_masa", "4", "1"], + "OMASA_2_1": ["-ism_masa", "1", "2"], + "OMASA_2_2": ["-ism_masa", "2", "2"], + "OMASA_2_3": ["-ism_masa", "3", "2"], + "OMASA_2_4": ["-ism_masa", "4", "2"], + "OSBA_1_1": ["-ism_sba", "1", "1"], + "OSBA_1_2": ["-ism_sba", "1", "2"], + "OSBA_1_3": ["-ism_sba", "1", "3"], + "OSBA_2_1": ["-ism_sba", "2", "1"], + "OSBA_2_2": ["-ism_sba", "2", "2"], + "OSBA_2_3": ["-ism_sba", "2", "3"], + "OSBA_3_1": ["-ism_sba", "3", "1"], + "OSBA_3_2": ["-ism_sba", "3", "2"], + "OSBA_3_3": ["-ism_sba", "3", "3"], + "OSBA_4_1": ["-ism_sba", "4", "1"], + "OSBA_4_2": ["-ism_sba", "4", "2"], + "OSBA_4_3": ["-ism_sba", "4", "3"], } INPUT_FORMATS_AMBI_SPLIT_REND = ["FOA", "HOA3"] INPUT_FORMATS_MC_SPLIT_REND = ["5_1", "7_1_4"] INPUT_FORMATS_ISM_SPLIT_REND = ["ISM4"] INPUT_FORMATS_MASA_SPLIT_REND = ["MASA1", "MASA2"] -INPUT_FORMATS_OMASA_SPLIT_REND = ["ISM1MASA1", "ISM4MASA2"] +INPUT_FORMATS_OMASA_SPLIT_REND = ["OMASA_1_1", "OMASA_2_4"] # number of TCs in MASA, number of ISM objects INPUT_FORMATS_OSBA_SPLIT_REND = [ - "ISM1SBA1", - "ISM4SBA3", -] + "OSBA_1_1", + "OSBA_4_3", +] # number of ISM objects, then SBA order IVAS_BITRATES_AMBI = ["80000", "512000"] IVAS_BITRATES_MC = ["128000", "160000", "384000"] IVAS_BITRATES_ISM = ["128000"] IVAS_BITRATES_MASA = ["24400", "128000"] -IVAS_BITRATES_OMASA = [ - "16400", - "32000", - "96000", - "384000", -] # test all underlying coding modes (here, for 4 ISM) +IVAS_BITRATES_OMASA = ["16400", "32000", "96000", "384000"] # test all underlying coding modes (here, for 4 ISM) IVAS_BITRATES_OSBA = ["256000", "512000"] IVAS_MAX_ISM_BITRATE = { diff --git a/tests/split_rendering/test_split_rendering.py b/tests/split_rendering/test_split_rendering.py index cac6c9b94921675123f985c72b93381b7fae2ffd..a881a7ad23f65902c620f7de9a1d39e6f9676832 100644 --- a/tests/split_rendering/test_split_rendering.py +++ b/tests/split_rendering/test_split_rendering.py @@ -1,42 +1,44 @@ #!/usr/bin/env python3 """ -(C) 2022-2025 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, -Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -contributors to this repository. All Rights Reserved. - -This software is protected by copyright law and by international treaties. -The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, -Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., -Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, -Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other -contributors to this repository retain full ownership rights in their respective contributions in -the software. This notice grants no license of any kind, including but not limited to patent -license, nor is any license granted by implication, estoppel or otherwise. - -Contributors are required to enter into the IVAS codec Public Collaboration agreement before making -contributions. - -This software is provided "AS IS", without any express or implied warranties. The software is in the -development stage. It is intended exclusively for experts who have experience with such software and -solely for the purpose of inspection. All implied warranties of non-infringement, merchantability -and fitness for a particular purpose are hereby disclaimed and excluded. - -Any dispute, controversy or claim arising under or in relation to providing this software shall be -submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in -accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and -the United Nations Convention on Contracts on the International Sales of Goods. + (C) 2022-2025 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, + Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., + Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, + Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other + contributors to this repository. All Rights Reserved. + + This software is protected by copyright law and by international treaties. + The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, + Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., + Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, + Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other + contributors to this repository retain full ownership rights in their respective contributions in + the software. This notice grants no license of any kind, including but not limited to patent + license, nor is any license granted by implication, estoppel or otherwise. + + Contributors are required to enter into the IVAS codec Public Collaboration agreement before making + contributions. + + This software is provided "AS IS", without any express or implied warranties. The software is in the + development stage. It is intended exclusively for experts who have experience with such software and + solely for the purpose of inspection. All implied warranties of non-infringement, merchantability + and fitness for a particular purpose are hereby disclaimed and excluded. + + Any dispute, controversy or claim arising under or in relation to providing this software shall be + submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in + accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and + the United Nations Convention on Contracts on the International Sales of Goods. """ import pytest from tests.split_rendering.utils import * + """ Ambisonics """ + @pytest.mark.parametrize("trajectory", SPLIT_REND_HR_TRAJECTORIES_TO_TEST) @pytest.mark.parametrize("render_config", RENDERER_CONFIGS_TO_TEST_AMBI) @pytest.mark.parametrize("bitrate", IVAS_BITRATES_AMBI) @@ -45,15 +47,11 @@ def test_ambisonics_full_chain_split( record_property, props_to_record, get_mld, - get_mld_lim, + get_mld_lim, get_ssnr, get_odg, - get_odg_bin, - test_info, - in_fmt, - bitrate, - render_config, - trajectory, + get_odg_bin, + test_info, in_fmt, bitrate, render_config, trajectory ): post_trajectory = HR_TRAJECTORY_DIR.joinpath(f"{trajectory}.csv") pre_trajectory = post_trajectory.with_stem(f"{post_trajectory.stem}_delayed") @@ -69,13 +67,14 @@ def test_ambisonics_full_chain_split( pre_trajectory=pre_trajectory, post_trajectory=post_trajectory, get_mld=get_mld, - mld_lim=get_mld_lim, + mld_lim=get_mld_lim, get_ssnr=get_ssnr, get_odg=get_odg, - get_odg_bin=get_odg_bin, + get_odg_bin=get_odg_bin, ) + @pytest.mark.parametrize("trajectory", SPLIT_REND_HR_TRAJECTORIES_TO_TEST) @pytest.mark.parametrize("render_config", RENDERER_CONFIGS_TO_TEST_AMBI) @pytest.mark.parametrize("in_fmt", INPUT_FORMATS_AMBI_SPLIT_REND) @@ -83,37 +82,34 @@ def test_ambisonics_external_split( record_property, props_to_record, get_mld, - get_mld_lim, + get_mld_lim, get_ssnr, get_odg, - get_odg_bin, - test_info, - in_fmt, - render_config, - trajectory, -): + get_odg_bin, + test_info, in_fmt, render_config, trajectory): post_trajectory = HR_TRAJECTORY_DIR.joinpath(f"{trajectory}.csv") pre_trajectory = post_trajectory.with_stem(f"{post_trajectory.stem}_delayed") run_external_split_rendering( - record_property, - props_to_record, + record_property, + props_to_record, test_info, in_fmt=in_fmt, render_config=RENDER_CFG_DIR.joinpath(f"{render_config}.txt"), pre_trajectory=pre_trajectory, post_trajectory=post_trajectory, get_mld=get_mld, - mld_lim=get_mld_lim, + mld_lim=get_mld_lim, get_ssnr=get_ssnr, get_odg=get_odg, - get_odg_bin=get_odg_bin, + get_odg_bin=get_odg_bin, ) """ Multichannel """ + @pytest.mark.parametrize("trajectory", SPLIT_REND_HR_TRAJECTORIES_TO_TEST) @pytest.mark.parametrize("render_config", RENDERER_CONFIGS_TO_TEST_MC) @pytest.mark.parametrize("bitrate", IVAS_BITRATES_MC) @@ -122,22 +118,18 @@ def test_multichannel_full_chain_split( record_property, props_to_record, get_mld, - get_mld_lim, + get_mld_lim, get_ssnr, get_odg, - get_odg_bin, - test_info, - in_fmt, - bitrate, - render_config, - trajectory, + get_odg_bin, + test_info, in_fmt, bitrate, render_config, trajectory ): post_trajectory = HR_TRAJECTORY_DIR.joinpath(f"{trajectory}.csv") pre_trajectory = post_trajectory.with_stem(f"{post_trajectory.stem}_delayed") run_full_chain_split_rendering( - record_property, - props_to_record, + record_property, + props_to_record, test_info, in_fmt=in_fmt, bitrate=bitrate, @@ -146,13 +138,14 @@ def test_multichannel_full_chain_split( pre_trajectory=pre_trajectory, post_trajectory=post_trajectory, get_mld=get_mld, - mld_lim=get_mld_lim, + mld_lim=get_mld_lim, get_ssnr=get_ssnr, get_odg=get_odg, - get_odg_bin=get_odg_bin, + get_odg_bin=get_odg_bin, ) + @pytest.mark.parametrize("trajectory", SPLIT_REND_HR_TRAJECTORIES_TO_TEST) @pytest.mark.parametrize("render_config", RENDERER_CONFIGS_TO_TEST_MC) @pytest.mark.parametrize("in_fmt", INPUT_FORMATS_MC_SPLIT_REND) @@ -160,37 +153,34 @@ def test_multichannel_external_split( record_property, props_to_record, get_mld, - get_mld_lim, + get_mld_lim, get_ssnr, get_odg, - get_odg_bin, - test_info, - in_fmt, - render_config, - trajectory, -): + get_odg_bin, +test_info, in_fmt, render_config, trajectory): post_trajectory = HR_TRAJECTORY_DIR.joinpath(f"{trajectory}.csv") pre_trajectory = post_trajectory.with_stem(f"{post_trajectory.stem}_delayed") run_external_split_rendering( - record_property, - props_to_record, + record_property, + props_to_record, test_info, in_fmt=in_fmt, render_config=RENDER_CFG_DIR.joinpath(f"{render_config}.txt"), pre_trajectory=pre_trajectory, post_trajectory=post_trajectory, get_mld=get_mld, - mld_lim=get_mld_lim, + mld_lim=get_mld_lim, get_ssnr=get_ssnr, get_odg=get_odg, - get_odg_bin=get_odg_bin, + get_odg_bin=get_odg_bin, ) """ ISM """ + @pytest.mark.parametrize("trajectory", SPLIT_REND_HR_TRAJECTORIES_TO_TEST) @pytest.mark.parametrize("render_config", RENDERER_CONFIGS_TO_TEST_ISM) @pytest.mark.parametrize("bitrate", IVAS_BITRATES_ISM) @@ -199,22 +189,17 @@ def test_ism_full_chain_split( record_property, props_to_record, get_mld, - get_mld_lim, + get_mld_lim, get_ssnr, get_odg, - get_odg_bin, - test_info, - in_fmt, - bitrate, - render_config, - trajectory, -): + get_odg_bin, +test_info, in_fmt, bitrate, render_config, trajectory): post_trajectory = HR_TRAJECTORY_DIR.joinpath(f"{trajectory}.csv") pre_trajectory = post_trajectory.with_stem(f"{post_trajectory.stem}_delayed") run_full_chain_split_rendering( - record_property, - props_to_record, + record_property, + props_to_record, test_info, in_fmt=in_fmt, bitrate=bitrate, @@ -223,13 +208,14 @@ def test_ism_full_chain_split( pre_trajectory=pre_trajectory, post_trajectory=post_trajectory, get_mld=get_mld, - mld_lim=get_mld_lim, + mld_lim=get_mld_lim, get_ssnr=get_ssnr, get_odg=get_odg, - get_odg_bin=get_odg_bin, + get_odg_bin=get_odg_bin, ) + @pytest.mark.parametrize("trajectory", SPLIT_REND_HR_TRAJECTORIES_TO_TEST) @pytest.mark.parametrize("render_config", RENDERER_CONFIGS_TO_TEST_ISM) @pytest.mark.parametrize("in_fmt", INPUT_FORMATS_ISM_SPLIT_REND) @@ -237,37 +223,34 @@ def test_ism_external_split( record_property, props_to_record, get_mld, - get_mld_lim, + get_mld_lim, get_ssnr, get_odg, - get_odg_bin, - test_info, - in_fmt, - render_config, - trajectory, -): + get_odg_bin, +test_info, in_fmt, render_config, trajectory): post_trajectory = HR_TRAJECTORY_DIR.joinpath(f"{trajectory}.csv") pre_trajectory = post_trajectory.with_stem(f"{post_trajectory.stem}_delayed") run_external_split_rendering( - record_property, - props_to_record, + record_property, + props_to_record, test_info, in_fmt=in_fmt, render_config=RENDER_CFG_DIR.joinpath(f"{render_config}.txt"), pre_trajectory=pre_trajectory, post_trajectory=post_trajectory, get_mld=get_mld, - mld_lim=get_mld_lim, + mld_lim=get_mld_lim, get_ssnr=get_ssnr, get_odg=get_odg, - get_odg_bin=get_odg_bin, + get_odg_bin=get_odg_bin, ) """ MASA """ + @pytest.mark.parametrize("trajectory", SPLIT_REND_HR_TRAJECTORIES_TO_TEST) @pytest.mark.parametrize("render_config", RENDERER_CONFIGS_TO_TEST_MASA) @pytest.mark.parametrize("bitrate", IVAS_BITRATES_MASA) @@ -276,22 +259,17 @@ def test_masa_full_chain_split( record_property, props_to_record, get_mld, - get_mld_lim, + get_mld_lim, get_ssnr, get_odg, - get_odg_bin, - test_info, - in_fmt, - bitrate, - render_config, - trajectory, -): + get_odg_bin, +test_info, in_fmt, bitrate, render_config, trajectory): post_trajectory = HR_TRAJECTORY_DIR.joinpath(f"{trajectory}.csv") pre_trajectory = post_trajectory.with_stem(f"{post_trajectory.stem}_delayed") run_full_chain_split_rendering( - record_property, - props_to_record, + record_property, + props_to_record, test_info, in_fmt=in_fmt, bitrate=bitrate, @@ -300,13 +278,14 @@ def test_masa_full_chain_split( pre_trajectory=pre_trajectory, post_trajectory=post_trajectory, get_mld=get_mld, - mld_lim=get_mld_lim, + mld_lim=get_mld_lim, get_ssnr=get_ssnr, get_odg=get_odg, - get_odg_bin=get_odg_bin, + get_odg_bin=get_odg_bin, ) + @pytest.mark.parametrize("trajectory", SPLIT_REND_HR_TRAJECTORIES_TO_TEST) @pytest.mark.parametrize("render_config", RENDERER_CONFIGS_TO_TEST_MASA) @pytest.mark.parametrize("in_fmt", INPUT_FORMATS_MASA_SPLIT_REND) @@ -314,37 +293,34 @@ def test_masa_external_split( record_property, props_to_record, get_mld, - get_mld_lim, + get_mld_lim, get_ssnr, get_odg, - get_odg_bin, - test_info, - in_fmt, - render_config, - trajectory, -): + get_odg_bin, +test_info, in_fmt, render_config, trajectory): post_trajectory = HR_TRAJECTORY_DIR.joinpath(f"{trajectory}.csv") pre_trajectory = post_trajectory.with_stem(f"{post_trajectory.stem}_delayed") run_external_split_rendering( - record_property, - props_to_record, + record_property, + props_to_record, test_info, in_fmt=in_fmt, render_config=RENDER_CFG_DIR.joinpath(f"{render_config}.txt"), pre_trajectory=pre_trajectory, post_trajectory=post_trajectory, get_mld=get_mld, - mld_lim=get_mld_lim, + mld_lim=get_mld_lim, get_ssnr=get_ssnr, get_odg=get_odg, - get_odg_bin=get_odg_bin, + get_odg_bin=get_odg_bin, ) """ OMASA """ + @pytest.mark.parametrize("trajectory", SPLIT_REND_HR_TRAJECTORIES_TO_TEST) @pytest.mark.parametrize("render_config", RENDERER_CONFIGS_TO_TEST_OMASA) @pytest.mark.parametrize("bitrate", IVAS_BITRATES_OMASA) @@ -353,22 +329,17 @@ def test_omasa_full_chain_split( record_property, props_to_record, get_mld, - get_mld_lim, + get_mld_lim, get_ssnr, get_odg, - get_odg_bin, - test_info, - in_fmt, - bitrate, - render_config, - trajectory, -): + get_odg_bin, +test_info, in_fmt, bitrate, render_config, trajectory): post_trajectory = HR_TRAJECTORY_DIR.joinpath(f"{trajectory}.csv") pre_trajectory = post_trajectory.with_stem(f"{post_trajectory.stem}_delayed") run_full_chain_split_rendering( - record_property, - props_to_record, + record_property, + props_to_record, test_info, in_fmt=in_fmt, bitrate=bitrate, @@ -377,51 +348,17 @@ def test_omasa_full_chain_split( pre_trajectory=pre_trajectory, post_trajectory=post_trajectory, get_mld=get_mld, - mld_lim=get_mld_lim, + mld_lim=get_mld_lim, get_ssnr=get_ssnr, get_odg=get_odg, - get_odg_bin=get_odg_bin, - ) - - -@pytest.mark.parametrize("trajectory", SPLIT_REND_HR_TRAJECTORIES_TO_TEST) -@pytest.mark.parametrize("render_config", RENDERER_CONFIGS_TO_TEST_OMASA) -@pytest.mark.parametrize("in_fmt", INPUT_FORMATS_OMASA_SPLIT_REND) -def test_omasa_external_split( - record_property, - props_to_record, - get_mld, - get_mld_lim, - get_ssnr, - get_odg, - get_odg_bin, - test_info, - in_fmt, - render_config, - trajectory, -): - post_trajectory = HR_TRAJECTORY_DIR.joinpath(f"{trajectory}.csv") - pre_trajectory = post_trajectory.with_stem(f"{post_trajectory.stem}_delayed") - - run_external_split_rendering( - record_property, - props_to_record, - test_info, - in_fmt=in_fmt, - render_config=RENDER_CFG_DIR.joinpath(f"{render_config}.txt"), - pre_trajectory=pre_trajectory, - post_trajectory=post_trajectory, - get_mld=get_mld, - mld_lim=get_mld_lim, - get_ssnr=get_ssnr, - get_odg=get_odg, - get_odg_bin=get_odg_bin, + get_odg_bin=get_odg_bin, ) """ OSBA """ + @pytest.mark.parametrize("trajectory", SPLIT_REND_HR_TRAJECTORIES_TO_TEST) @pytest.mark.parametrize("render_config", RENDERER_CONFIGS_TO_TEST_OSBA) @pytest.mark.parametrize("bitrate", IVAS_BITRATES_OSBA) @@ -433,19 +370,14 @@ def test_osba_full_chain_split( get_mld_lim, get_ssnr, get_odg, - get_odg_bin, - test_info, - in_fmt, - bitrate, - render_config, - trajectory, -): + get_odg_bin, +test_info, in_fmt, bitrate, render_config, trajectory): post_trajectory = HR_TRAJECTORY_DIR.joinpath(f"{trajectory}.csv") pre_trajectory = post_trajectory.with_stem(f"{post_trajectory.stem}_delayed") run_full_chain_split_rendering( - record_property, - props_to_record, + record_property, + props_to_record, test_info, in_fmt=in_fmt, bitrate=bitrate, @@ -454,51 +386,17 @@ def test_osba_full_chain_split( pre_trajectory=pre_trajectory, post_trajectory=post_trajectory, get_mld=get_mld, - mld_lim=get_mld_lim, + mld_lim=get_mld_lim, get_ssnr=get_ssnr, get_odg=get_odg, - get_odg_bin=get_odg_bin, - ) - - -@pytest.mark.parametrize("trajectory", SPLIT_REND_HR_TRAJECTORIES_TO_TEST) -@pytest.mark.parametrize("render_config", RENDERER_CONFIGS_TO_TEST_OSBA) -@pytest.mark.parametrize("in_fmt", INPUT_FORMATS_OSBA_SPLIT_REND) -def test_osba_external_split( - record_property, - props_to_record, - get_mld, - get_mld_lim, - get_ssnr, - get_odg, - get_odg_bin, - test_info, - in_fmt, - render_config, - trajectory, -): - post_trajectory = HR_TRAJECTORY_DIR.joinpath(f"{trajectory}.csv") - pre_trajectory = post_trajectory.with_stem(f"{post_trajectory.stem}_delayed") - - run_external_split_rendering( - record_property, - props_to_record, - test_info, - in_fmt=in_fmt, - render_config=RENDER_CFG_DIR.joinpath(f"{render_config}.txt"), - pre_trajectory=pre_trajectory, - post_trajectory=post_trajectory, - get_mld=get_mld, - mld_lim=get_mld_lim, - get_ssnr=get_ssnr, - get_odg=get_odg, - get_odg_bin=get_odg_bin, + get_odg_bin=get_odg_bin, ) """ PLC """ + @pytest.mark.parametrize("error_pattern", PLC_ERROR_PATTERNS) @pytest.mark.parametrize("trajectory", SPLIT_REND_HR_TRAJECTORIES_TO_TEST) @pytest.mark.parametrize("render_config", RENDERER_CONFIGS_TO_TEST_PLC) @@ -507,22 +405,17 @@ def test_post_rend_plc( record_property, props_to_record, get_mld, - get_mld_lim, + get_mld_lim, get_ssnr, get_odg, - get_odg_bin, - test_info, - in_fmt, - render_config, - trajectory, - error_pattern, -): + get_odg_bin, +test_info, in_fmt, render_config, trajectory, error_pattern): post_trajectory = HR_TRAJECTORY_DIR.joinpath(f"{trajectory}.csv") pre_trajectory = post_trajectory.with_stem(f"{post_trajectory.stem}_delayed") run_external_split_rendering( - record_property, - props_to_record, + record_property, + props_to_record, test_info, in_fmt=in_fmt, render_config=RENDER_CFG_DIR.joinpath(f"{render_config}.txt"), @@ -530,10 +423,10 @@ def test_post_rend_plc( post_trajectory=post_trajectory, plc_error_pattern=ERROR_PATTERNS_DIR.joinpath(f"{error_pattern}.ep"), get_mld=get_mld, - mld_lim=get_mld_lim, + mld_lim=get_mld_lim, get_ssnr=get_ssnr, get_odg=get_odg, - get_odg_bin=get_odg_bin, + get_odg_bin=get_odg_bin, ) @@ -545,31 +438,28 @@ full_chain_split_pcm_params = [ ("7_1_4", "512000", "split_renderer_config_3dofhq_512k_lc3plus"), ("ISM4", "384000", "split_renderer_config_2dof_768k_default"), ("MASA2", "256000", "split_renderer_config_3dof_384k_lcld"), - ("ISM4MASA2", "256000", "split_renderer_config_3dof_384k_lcld"), + ("OMASA_2_4", "256000", "split_renderer_config_3dof_384k_lcld"), ] + @pytest.mark.parametrize("in_fmt,bitrate,render_config", full_chain_split_pcm_params) def test_full_chain_split_pcm( record_property, props_to_record, get_mld, - get_mld_lim, + get_mld_lim, get_ssnr, get_odg, - get_odg_bin, - test_info, - in_fmt, - bitrate, - render_config, -): + get_odg_bin, +test_info, in_fmt, bitrate, render_config): trajectory = SPLIT_REND_HR_TRAJECTORIES_TO_TEST[0] post_trajectory = HR_TRAJECTORY_DIR.joinpath(f"{trajectory}.csv") pre_trajectory = post_trajectory.with_stem(f"{post_trajectory.stem}_delayed") run_full_chain_split_rendering( - record_property, - props_to_record, + record_property, + props_to_record, test_info, in_fmt=in_fmt, bitrate=bitrate, @@ -579,10 +469,10 @@ def test_full_chain_split_pcm( post_trajectory=post_trajectory, renderer_fmt="BINAURAL_SPLIT_PCM", get_mld=get_mld, - mld_lim=get_mld_lim, + mld_lim=get_mld_lim, get_ssnr=get_ssnr, get_odg=get_odg, - get_odg_bin=get_odg_bin, + get_odg_bin=get_odg_bin, ) @@ -593,26 +483,24 @@ external_split_pcm_params = [ ] + @pytest.mark.parametrize("in_fmt,render_config", external_split_pcm_params) def test_external_split_pcm( record_property, props_to_record, get_mld, - get_mld_lim, + get_mld_lim, get_ssnr, get_odg, - get_odg_bin, - test_info, - in_fmt, - render_config, -): + get_odg_bin, +test_info, in_fmt, render_config): trajectory = SPLIT_REND_HR_TRAJECTORIES_TO_TEST[0] post_trajectory = HR_TRAJECTORY_DIR.joinpath(f"{trajectory}.csv") pre_trajectory = post_trajectory.with_stem(f"{post_trajectory.stem}_delayed") run_external_split_rendering( - record_property, - props_to_record, + record_property, + props_to_record, test_info, in_fmt=in_fmt, render_config=RENDER_CFG_DIR.joinpath(f"{render_config}.txt"), @@ -620,10 +508,10 @@ def test_external_split_pcm( post_trajectory=post_trajectory, renderer_fmt="BINAURAL_SPLIT_PCM", get_mld=get_mld, - mld_lim=get_mld_lim, + mld_lim=get_mld_lim, get_ssnr=get_ssnr, get_odg=get_odg, - get_odg_bin=get_odg_bin, + get_odg_bin=get_odg_bin, ) @@ -636,23 +524,17 @@ def test_framing_combinations_external_split( record_property, props_to_record, get_mld, - get_mld_lim, + get_mld_lim, get_ssnr, get_odg, - get_odg_bin, - test_info, - in_fmt, - render_config, - trajectory, - post_rend_fr, - pre_rend_fr, -): + get_odg_bin, +test_info, in_fmt, render_config, trajectory, post_rend_fr, pre_rend_fr): post_trajectory = HR_TRAJECTORY_DIR.joinpath(f"{trajectory}.csv") pre_trajectory = post_trajectory.with_stem(f"{post_trajectory.stem}_delayed") run_external_split_rendering( - record_property, - props_to_record, + record_property, + props_to_record, test_info, in_fmt=in_fmt, render_config=RENDER_FRAMING_CFG_DIR.joinpath(f"{render_config}.txt"), @@ -661,13 +543,12 @@ def test_framing_combinations_external_split( post_rend_fr=post_rend_fr, pre_rend_fr=pre_rend_fr, get_mld=get_mld, - mld_lim=get_mld_lim, + mld_lim=get_mld_lim, get_ssnr=get_ssnr, get_odg=get_odg, - get_odg_bin=get_odg_bin, + get_odg_bin=get_odg_bin, ) - @pytest.mark.parametrize("trajectory", SPLIT_REND_HR_TRAJECTORIES_TO_TEST) @pytest.mark.parametrize("render_config", RENDERER_CONFIGS_FRAMING) @pytest.mark.parametrize("in_fmt", ["5_1"]) @@ -677,23 +558,18 @@ def test_framing_combinations_full_chain_split( record_property, props_to_record, get_mld, - get_mld_lim, + get_mld_lim, get_ssnr, get_odg, - get_odg_bin, - test_info, - in_fmt, - render_config, - trajectory, - post_rend_fr, - pre_rend_fr, + get_odg_bin, + test_info, in_fmt, render_config, trajectory, post_rend_fr, pre_rend_fr ): post_trajectory = HR_TRAJECTORY_DIR.joinpath(f"{trajectory}.csv") pre_trajectory = post_trajectory.with_stem(f"{post_trajectory.stem}_delayed") run_full_chain_split_rendering( - record_property, - props_to_record, + record_property, + props_to_record, test_info, in_fmt=in_fmt, render_config=RENDER_FRAMING_CFG_DIR.joinpath(f"{render_config}.txt"), @@ -704,8 +580,8 @@ def test_framing_combinations_full_chain_split( post_rend_fr=post_rend_fr, pre_rend_fr=pre_rend_fr, get_mld=get_mld, - mld_lim=get_mld_lim, + mld_lim=get_mld_lim, get_ssnr=get_ssnr, get_odg=get_odg, - get_odg_bin=get_odg_bin, + get_odg_bin=get_odg_bin, ) diff --git a/tests/split_rendering/utils.py b/tests/split_rendering/utils.py index 1a6ff61edc55c9edac6e1400ffef6c040e30b072..ccc6a9b5c8aa6fc231373952097eaa12dff88df2 100644 --- a/tests/split_rendering/utils.py +++ b/tests/split_rendering/utils.py @@ -30,8 +30,8 @@ accordance with the laws of the Federal Republic of Germany excluding its confli the United Nations Convention on Contracts on the International Sales of Goods. """ -import re import sys +import re from pathlib import Path from tempfile import TemporaryDirectory from typing import Tuple @@ -39,20 +39,14 @@ from typing import Tuple import numpy as np import pytest -from tests.renderer.constants import ( - BIN_SUFFIX_MERGETARGET, - FORMAT_TO_FILE_COMPARETEST, - FORMAT_TO_FILE_SMOKETEST, - FORMAT_TO_METADATA_FILES, -) from tests.renderer.utils import ( - run_isar_ext_rend_cmd, - run_isar_post_rend_cmd, - run_ivas_isar_dec_cmd, + check_BE, run_ivas_isar_enc_cmd, + run_ivas_isar_dec_cmd, + run_isar_post_rend_cmd, + run_isar_ext_rend_cmd, ) from tests.split_rendering.constants import * - from ..cmp_pcm import cmp_pcm from ..conftest import parse_properties @@ -116,7 +110,7 @@ def check_xfail( f"Unsupported configuration with {in_fmt} at IVAS bitrate {ivas_bitrate}bps" ) - if "0dof" not in render_config and pre_rend_fr != 20: + if not "0dof" in render_config and pre_rend_fr != 20: pytest.xfail("pose correction (== !0dof) is expected to use 20ms") if ( @@ -221,10 +215,14 @@ def run_full_chain_split_rendering( split_md_file = output_path_base.joinpath(split_md_file_stem) # check for metadata files - if in_fmt.upper().startswith("ISM") and "SBA" in in_fmt.upper(): + if in_fmt.upper().startswith("OSBA"): # use same MD as ISM - in_meta_files = FORMAT_TO_METADATA_FILES[f"ISM{in_fmt[3]}"] - elif in_fmt.upper().startswith("ISM") or in_fmt.upper().startswith("MASA"): + in_meta_files = FORMAT_TO_METADATA_FILES[f"ISM{in_fmt[5]}"] + elif ( + in_fmt.upper().startswith("ISM") + or in_fmt.upper().startswith("MASA") + or in_fmt.upper().startswith("OMASA") + ): in_meta_files = FORMAT_TO_METADATA_FILES[in_fmt] else: in_meta_files = None @@ -292,28 +290,46 @@ def run_full_chain_split_rendering( # CUT creation mode will run a comparison with REF out_file_ref = str(OUTPUT_PATH_REF.joinpath(out_file_stem)) - output_differs, reason = cmp_pcm( - out_file, - out_file_ref, - 2, # is always "BINAURAL" - 48000, # currently only 48 kHz tests - get_mld=get_mld, - mld_lim=mld_lim, - get_ssnr=get_ssnr, - get_odg=get_odg, - get_odg_bin=get_odg_bin, - ) + try: + ref, ref_fs = readfile(out_file_ref) + except FileNotFoundError: + pytest.fail( + f"Reference vector not found! Ensure they were created with the --create_ref argument.\n{out_file_ref}" + ) - # NOTE: split comparison not implemented for split rendering, always unpack values - reason = reason[0] - output_differs = output_differs[0] + cut, cut_fs = readfile(out_file) - props = parse_properties(reason, output_differs, props_to_record) - for k, v in props.items(): - record_property(k, v) + if not get_mld: + [diff_found, snr, gain_b, max_diff] = check_BE( + test_info, ref, ref_fs, cut, cut_fs + ) + if diff_found: + pytest.fail( + f"CuT not BE to REF! SNR : {snr:3.2f} dB, Gain CuT: {gain_b:1.3f}, Max Diff = {int(max_diff)}" + ) + else: + output_differs, reason = cmp_pcm( + out_file, + out_file_ref, + 2, # is always "BINAURAL" + ref_fs, + get_mld=get_mld, + mld_lim=mld_lim, + get_ssnr=get_ssnr, + get_odg=get_odg, + get_odg_bin=get_odg_bin, + ) - if output_differs: - pytest.fail(f"Output differs: ({reason})") + # NOTE: split comparison not implemented for split rendering, always unpack values + reason = reason[0] + output_differs = output_differs[0] + + props = parse_properties(reason, output_differs, props_to_record) + for k, v in props.items(): + record_property(k, v) + + if output_differs: + pytest.fail(f"Output differs: ({reason})") return out_file @@ -368,10 +384,7 @@ def run_external_split_rendering( ) # check for metadata files - if in_fmt.upper().startswith("ISM") and "SBA" in in_fmt.upper(): - # use name MD as ISM - in_meta_files = FORMAT_TO_METADATA_FILES[f"ISM{in_fmt[3]}"] - elif in_fmt.upper().startswith("ISM") or in_fmt.upper().startswith("MASA"): + if in_fmt.upper().startswith("ISM") or in_fmt.upper().startswith("MASA"): in_meta_files = FORMAT_TO_METADATA_FILES[in_fmt] else: in_meta_files = None @@ -432,26 +445,45 @@ def run_external_split_rendering( f"{out_file_ref.stem}_plc_{plc_error_pattern.stem}" ) - output_differs, reason = cmp_pcm( - out_file, - out_file_ref, - 2, # is always "BINAURAL", - 48000, # currently only 48 kHz tests - get_mld=get_mld, - mld_lim=mld_lim, - get_ssnr=get_ssnr, - get_odg=get_odg, - get_odg_bin=get_odg_bin, - ) - # NOTE: split comparison not implemented for split rendering, always unpack values - reason = reason[0] - output_differs = output_differs[0] + try: + ref, ref_fs = readfile(out_file_ref) + except FileNotFoundError: + pytest.fail( + f"Reference vector not found! Ensure they were created with the --create_ref argument.\n{out_file_ref}" + ) + + cut, cut_fs = readfile(out_file) + + if not get_mld: + [diff_found, snr, gain_b, max_diff] = check_BE( + test_info, ref, ref_fs, cut, cut_fs + ) + if diff_found: + pytest.fail( + f"CuT not BE to REF! SNR : {snr:3.2f} dB, Gain CuT: {gain_b:1.3f}, Max Diff = {int(max_diff)}" + ) + else: + # see constants.py + output_differs, reason = cmp_pcm( + out_file, + out_file_ref, + 2, # is always "BINAURAL", + ref_fs, + get_mld=get_mld, + mld_lim=mld_lim, + get_ssnr=get_ssnr, + get_odg=get_odg, + get_odg_bin=get_odg_bin, + ) + # NOTE: split comparison not implemented for split rendering, always unpack values + reason = reason[0] + output_differs = output_differs[0] - props = parse_properties(reason, output_differs, props_to_record) - for k, v in props.items(): - record_property(k, v) + props = parse_properties(reason, output_differs, props_to_record) + for k, v in props.items(): + record_property(k, v) - if output_differs: - pytest.fail(f"Output differs: ({reason})") + if output_differs: + pytest.fail(f"Output differs: ({reason})") return out_file diff --git a/tests/test_enc_passthrough.py b/tests/test_enc_passthrough.py index 83a3f519893b257399282ecd0a00a3c68f596087..a2e74589222d6980f1fd6123624add22b35e82b3 100644 --- a/tests/test_enc_passthrough.py +++ b/tests/test_enc_passthrough.py @@ -195,7 +195,6 @@ def test_enc( get_odg_bin, compare_to_input, compare_enc_dmx, - split_comparison, ): enc_opts, dec_opts, sim_opts, eid_opts = test_dict[test_tag] @@ -229,7 +228,6 @@ def test_enc( get_odg_bin, compare_to_input, compare_enc_dmx, - split_comparison, ) \ No newline at end of file